Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mikedacre

    (@mikedacre)

    I manged to figure out how to do this, so I have one more question:

    – Is there a way to get the excerpt for an Enhanced Category Page? Right now if you go to the Firmicutes search results, I have the category at the top, but I can’t figure out how to show an excerpt.

    Current code:

    $terms = get_terms( 'category', array(
        'name__like' => $s,
        'hide_empty' => true // Optional
    ) );
    if ( count($terms) > 0 ){
        echo '<h1 style="padding: 20px 0 0 20px;">Taxa</h1>';
        foreach ( $terms as $term ) {                                                                                                                                                                                   
            // echo $term;
            $child = $term->name;
            $url = esc_url( get_term_link( $term ) );
            echo '<article class="entry entryTypePostExcerpt">';
            echo '<div class="entryContainer">';
            echo '<div class="entryHeader">';
            echo "<h2 class='entryTitle'>".$child."</h2>";
            echo '</div>';
            echo '</div>';
            echo '</article>';
        }
    }
    
    Forum: Plugins
    In reply to: [WP Edit] Fullscreen
    Thread Starter mikedacre

    (@mikedacre)

    Back to the drawing board. For reasons I cannot figure out, Ctrl/Cmd-Alt-F just stopped working.

    Do you know how I can make TinyMCE actually full screen?

    Thread Starter mikedacre

    (@mikedacre)

    It turns out this is entirely the fault of editus not recognizing the shortcode and no fault of your plugin, so I am closing this here. If I find a solution from editus I will post it here for future reference.

    Forum: Plugins
    In reply to: [WP Edit] Fullscreen
    Thread Starter mikedacre

    (@mikedacre)

    Call off the army, it turns out that Ctrl-Alt-F still works.

    Sorry for the waste of a support request, and thanks for the great plugin.

Viewing 4 replies - 1 through 4 (of 4 total)