Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1104163

    I can see next/ previous buttons on the blog post but on single portfolio entry I can see those buttons,
    Also is there a way to keep these buttons all the time at the bottom of every portfolio and blog post page? same styling but as buttons like this,

    https://www.dropbox.com/s/rvkrjxhyke4turh/portfolio-buttons.jpg?dl=0
    Thanks

    #1104945

    Hey s_taimoor,

    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Basilis

    #1106121

    okay dear no problem but then at least there should be a way to keep deactivate the transitions of these buttons and keep them open on screen all the time.
    Also is there a reason why these buttons are not showing on portfolio pages?

    #1107341

    Hi,

    The navigation will not display when there is a full width element in the page. You have to use this filter to re-enable it.

    add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings){
    	$settings['is_fullwidth'] = false;
    	return $settings;
    }

    Add it in the functions.php file. If you want to display posts from the same category, use this instead.

    add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings){
    	$settings['same_category'] = true;
    	$settings['is_fullwidth'] = false;
    	return $settings;
    }
    

    Best regards,
    Ismael

    #1108320

    Thank you so much. Its working perfectly fine.
    Only one thing that is left and I asked earlier as well. Right now to be able to access next portfolio entry, i will need to rollover my mouse then I see on hover right. I want this to display as open all the time without hovering on it. So next and the previous button should always stay open.

    Thank you so much once again..

    #1108961

    Hi,

    Thanks for the update.

    Use this css code to have the navigation display on load, without hovering.

    .avia-post-nav .entry-info-wrap {
        width: auto;
    }

    Best regards,
    Ismael

    #1109406

    done
    thank you so much… :)

    #1109463

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.