-
AuthorPosts
-
September 24, 2015 at 9:47 pm #508707
They’ve simply “been there” in previous sites I’ve built with Enfold, but they aren’t showing up for this site I’m working on now.
How do I turn them on, or figure out why they aren’t showing up?
September 25, 2015 at 10:48 am #508895Hey JeeBar,
Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.
Best regards,
RikardSeptember 28, 2015 at 6:54 pm #510355Thanks. Sure. Credentials in private content.
September 29, 2015 at 12:42 am #510479New credentials in private content…
September 29, 2015 at 6:56 pm #510934Hi!
please try to deactivate all plugins, to check if one is causing this issue. Let us know about your result.
Regards,
AndySeptember 30, 2015 at 10:37 pm #511858Disabled all plugins, didn’t do anything.
October 1, 2015 at 9:26 am #512018Hey!
The post navigation doesn’t show up because you build the post content in the advance layout builder. You have to use the default editor. http://dev.solacesystems.com/wp-admin/post.php?post=14775&action=editBest regards,
IsmaelOctober 6, 2015 at 12:48 am #514092That actually isn’t the case, and frankly I don’t see why or how that should matter.
These posts, along with virtually (if not actually) all of the individual posts of my blog, are built with the default editor:
http://dev.solacesystems.com/user-group/ug-recap/recap-of-singapore-user-group-september-2015/
http://dev.solacesystems.com/blog/solace-vmr-customer-choice/If the fancy post navigation arrows built into the theme were to not work on pages built with the advanced editor, then you’d have it appearing on some posts and not on others which would not be logical/acceptable behavior. : /
October 6, 2015 at 9:19 am #514211Hey!
I’m sorry I got caught up in the other thread with almost the same issue. Yes, the post navigation should in fact work in the ALB. You have this code in the QuicK CSS field:
#top .avia-post-nav { display: none; }
Please remove it.
Best regards,
IsmaelOctober 6, 2015 at 9:29 am #514225Oh. Wow. Sorry. Oops. Totally don’t remember doing that. Thanks for the catch/fix.
Is there any way to have those post nav links only link to posts within the same category?
Right now they link across categories which is unacceptable for my site because I use “posts” for some things that aren’t really blog posts, like integration guides and syndication of questions from Stack Overflow.
October 6, 2015 at 9:31 am #514227I found a couple plugins that add similar edge-of-page links and they DO DO offer ability to link within categories, but hope the “built in” post nav system can do that so I don’t need to lean on yet another plugin.
October 7, 2015 at 5:31 am #514909Hey!
Please add this in the functions.php file:
add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1); function avia_same_category_filter($settings) { $settings['same_category'] = true; return $settings; }
Cheers!
IsmaelOctober 8, 2015 at 6:15 pm #516036Thanks, but that doesn’t quite seem to be working.
This post, for example, is in the User Group category, but the previous and next links being displayed are both to posts in different categories.
I’ve added login credentials in private content so you can log in and see for yourself.
October 8, 2015 at 11:32 pm #516111By the way, please let me know if you do anything to the site. I’m going to be pushing my staging site to live later this evening and want to pmake sure I don’t accidentally publish any “test stuff” you might do.
October 10, 2015 at 1:46 pm #516788Hey!
Try to use this instead:
add_filter('avia_post_nav_entries','avia_same_category_filter', 10, 1); function avia_same_category_filter($settings) { $settings['same_category'] = true; return $settings; }
Cheers!
IsmaelOctober 11, 2015 at 6:24 pm #516998Uh, isn’t that exactly the same code you provided before? I can’t see a single difference. Pasted it in anyway, in case I’m missing something,but it didn’t change anything.
October 12, 2015 at 4:25 pm #517487Hi!
It’s a different filter, “avia_post_nav_entries”. Please try it then remove browser cache before testing the page.
Cheers!
IsmaelOctober 12, 2015 at 6:41 pm #517578Thanks, I figured there was some tiny little difference I was missing.
It’s still not working though, links still go to the next post based on publish time, across any and all categories.
In fact, it seems to have introduced a new problem. The previous post button now always links to the current post. Load up this (or any) post and note the previous post link. Next post works fine, but as you click to each next post, the previous link is always to the same post you are on.
October 13, 2015 at 3:42 pm #518132Hey!
It’s not working because of the Simple Custom Post Order. I deactivated the plugin then check this post:
http://solacesystems2.staging.wpengine.com/blog/support-openmama-2-3-3/ (hosted on WPengine)
You can only open posts included in the “Blog” category.
http://solacesystems2.staging.wpengine.com/blog/vmr-software-now-available-for-download/
http://solacesystems2.staging.wpengine.com/blog/big-data-recreating-messaging-proliferation-problem/Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.