-
AuthorPosts
-
April 16, 2018 at 4:29 am #942402
If I recall correctly, there was a way to do that without touching code. A setting in the theme that I can’t find now.
Not even by Googling it.How do I disable the post navigation?
This CSS doesn’t work – #top .avia-post-nav { display: none; }
- This topic was modified 6 years, 7 months ago by yifatcohen.
April 16, 2018 at 7:27 am #942446Hey yifatcohen,
Can you give us a link on the page of your site where we can see it? there are lots of elements, like sliders in the Enfold theme that shows the post navigation, we just need to know which specific element it is. :)
Best regards,
NikkoApril 17, 2018 at 6:10 pm #943190Sure.
You’ll need to be logged in with the credentials I sent you in the other post.
April 17, 2018 at 6:56 pm #943211Hi,
Add this to quick css:
.avia-post-nav{ display:none!important; }
Best regards,
Jordan ShannonApril 17, 2018 at 7:59 pm #943237April 17, 2018 at 8:02 pm #943238Hi,
Please provide a link to the page in the screenshot.
Best regards,
Jordan ShannonApril 17, 2018 at 8:22 pm #943241It’s the same one from the comment above – https://viralconnectivity.com/courses/live-beyond-facebook/lessons/your-super-gear/
Like I said, you’ll need to be logged in.
April 17, 2018 at 9:40 pm #943257Hi,
Do you have any other custom css outside of the quick css area? Currently nothing seems to be running at all from there.
Best regards,
Jordan ShannonApril 17, 2018 at 10:36 pm #943283Not that I know of. Did you see anything while you were logged in?
(feel free to roam around)
April 17, 2018 at 10:46 pm #943285Hi,
Can you try adding this directly to the custom.css file:
.avia-post-nav{ display:none!important; }
Best regards,
Jordan ShannonApril 17, 2018 at 11:45 pm #943304Yes, that worked.
But – wouldn’t it be overwritten with the theme update?
Can you guys add it to the theme functions and make it an option since so many people are asking about it?
April 18, 2018 at 1:12 pm #943575Hi,
Are you referring to the CSS posted by Jordan? If so then no, it won’t be overwritten on updates if you keep it in a child theme or in Quick CSS.
Best regards,
RikardSeptember 10, 2018 at 5:40 pm #1007975As I only saw the hacky CSS solution, I thought it would be valuable to share the solution to *really* disable those links and not only hide them.
Just put this code in a custom Plugin (don’t hurt to create those one php file) or the functions.php of your child theme:if (!function_exists('custom_disable_avia_post_nav')) { add_filter('avia_post_nav_entries', 'custom_disable_avia_post_nav', 10, 2); function custom_disable_avia_post_nav( $entries, $settings ) { return array(); } }
September 10, 2018 at 6:55 pm #1008012February 9, 2019 at 4:51 pm #1064952Thanks to the above poster. PLease add an option in settings to disable this properly and not hide.
February 10, 2019 at 3:31 pm #1065134February 10, 2019 at 10:26 pm #1065220I dont use the blog, there is no such option for non blog posts. The theme is bloated with stuff that should be disabled by default if mobile first approach is to be taken seriously.
February 11, 2019 at 7:37 am #1065327 -
AuthorPosts
- You must be logged in to reply to this topic.