Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #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?

    #508895

    Hey 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,
    Rikard

    #510355

    Thanks. Sure. Credentials in private content.

    #510479

    New credentials in private content…

    #510934

    Hi!

    please try to deactivate all plugins, to check if one is causing this issue. Let us know about your result.

    Regards,
    Andy

    #511858

    Disabled all plugins, didn’t do anything.

    #512018

    Hey!

    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=edit

    Best regards,
    Ismael

    #514092

    That 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. : /

    #514211

    Hey!

    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,
    Ismael

    #514225

    Oh. 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.

    #514227

    I 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.

    #514909

    Hey!

    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!
    Ismael

    #516036

    Thanks, 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.

    #516111

    By 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.

    #516788

    Hey!

    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!
    Ismael

    #516998

    Uh, 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.

    #517487

    Hi!

    It’s a different filter, “avia_post_nav_entries”. Please try it then remove browser cache before testing the page.

    Cheers!
    Ismael

    #517578

    Thanks, 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.

    #518132

    Hey!

    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

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