Tagged: Next / Previous Buttons
-
AuthorPosts
-
May 25, 2019 at 1:48 pm #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
ThanksMay 28, 2019 at 7:33 pm #1104945Hey 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,
BasilisJune 1, 2019 at 4:33 pm #1106121okay 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?June 5, 2019 at 4:51 am #1107341Hi,
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,
IsmaelJune 7, 2019 at 10:42 pm #1108320Thank 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..
June 11, 2019 at 3:23 am #1108961Hi,
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,
IsmaelJune 12, 2019 at 8:19 am #1109406done
thank you so much… :)June 12, 2019 at 12:34 pm #1109463 -
AuthorPosts
- You must be logged in to reply to this topic.