• Resolved Nikelaos

    (@nikelaos)


    It seems to me, @archetyped, that your plugin doesn’t interact with the “Advanced Excerpt”-Plugin by WPCube.

    Posts in the loop are shortend if there is a more-tag within, but not in use with the excerpt-Plugin.

    That’s not so good, cause Advanced Excerpt is really a fine tool…

    Can you do something to work Advanced Excerpt with your plugin?

    That would be really great!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Archetyped

    (@archetyped)

    Hi, Advanced Excerpt disables itself on singular post types. This includes pages, which is where section posts are displayed.

    As the page template is already being modified to display a section’s posts, using Advanced Excerpts the_advanced_excerpt() template tag in CNR’s loop is the recommended solution.

    Example:

    <?php
    if ( function_exists( 'the_advanced_excerpt' ) ) {
    	the_advanced_excerpt();
    } else {
    	the_excerpt();
    }
    ?>
    
    Thread Starter Nikelaos

    (@nikelaos)

    So, thank you again, @archetyped , for your very friendly and patient support!

    I tested this and it works now.

    Your plugin, let me say it again, is a very important extension to WordPress. Incidentally, it is important to be familiar with the template technique. I learned something about it again, thank you for that!

    Plugin Author Archetyped

    (@archetyped)

    Awesome, glad to hear the updated template code is working well for you ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin doesn’t work with Advanced Excerpt’ is closed to new replies.