Viewing 11 replies - 1 through 11 (of 11 total)
  • I noticed this too.. it had been working fine. Did you find any way to work around this?

    thanks!

    Thread Starter Kenneth Feldman

    (@kenneth-feldman)

    No I haven’t.

    Would be nice to hear from the developers on this, especially since we’ve paid for a premium plugin.

    Anyone from the Ambrosite team available to look into this? Or comment?

    Thanks in advance for your attention to this matter.

    *** EDIT:*** Sorry — was confused in my own response: This AMBROSITE plugin is free. I had forgotten that my issue was with the interaction of this plugin with another; the Advanced Post Types Order plugin. It was THAT plugin which was a premium version of the free version.

    especially since we’ve paid for a premium plugin.

    In that case, you should be contacting them directly – as these forums are only for support of free versions.

    http://codex.wordpress.org/Forum_Welcome#Commercial_Products

    Thread Starter Kenneth Feldman

    (@kenneth-feldman)

    Great, will do. Thanks.

    Thanks ! will send them a question.. if I find anything I will post it here. The ‘Next/Previous Post Link Plus’ was free.

    Thread Starter Kenneth Feldman

    (@kenneth-feldman)

    Sorry — was confused in my own response: This AMBROSITE plugin is free. But I had forgotten that my issue was with the interaction of this plugin with another; the Advanced Post Types Order plugin. It was THAT plugin which was a premium version of the free version.

    Over and out.

    BTW this is the way I was using it in a leadership section~

    <?php next_post_link_plus( array('in_same_cat' => true, 'link' => 'Next Leader' ) ); ?>

    this is the Loop I used on the initial display of the posts:

    <?php query_posts( array( 'post_type' => 'leadership' ) );?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <div class="leaders-block">
    <strong><?php the_title(); ?></strong><br/>
    <?php echo get_post_meta($post->ID, 'ecpt_title', true); ?><br />
    <a href="<?php the_permalink(); ?>">Read More</a><br /></div>
    <?php endwhile; ?>
    <?php endif; ?>
    <?php wp_reset_query(); ?>

    I am trying to make some sense of this post : http://www.nsp-code.com/advanced-post-types-order-api/next-post-link/

    something that is hang to add to your array to make it so you
    don’t hit ‘the end’ of the posts is

    ‘loop’ => true,

    Hey Kenneth
    I emailed the developer of ‘next-previous-post-link-plus-for-wordpress’ and at the very moment he returned my email. I figured it out too!

    Very simply use: <?php next_post_link_plus( array('order_by' => 'menu_order', 'loop' => true, 'link' => 'Next Leader' ) ); ?>

    the ‘order_by’ => ‘menu_order’ is the critical element!! ‘Next Leader’ was just my Post Type in that section

    Hope this helps you too 😉

    Thread Starter Kenneth Feldman

    (@kenneth-feldman)

    Right — but my problem is that even with the ORDER_BY=MENU ORDER in place, the posts don’t advance by menu order when the ADVANCED Post Types Order plugin is used to rearrange the default chronological post oder.

    There was no problem when using only the REGULAR Post Types Order plugin — this Next/Previous Post Link Plus plugin worked as intended in that case.

    Again, the issue only arose when the REGULAR Post Types Order plugin was upgraded to the ADVANCED REGULAR Post Types Order plugin.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Advanced Post Types Order’ is closed to new replies.