• I see that a lot of people have asked about this but have received no answers, so I’m not very hopeful. I would like to move the summary box. I get that the summary box needs to show on the page, but it interrupts the flow of the page. It would work better if I could move it somewhere else. Ultimately, this problem will lead me to using a different plugin, so I would rather fix it before that happens. Please help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Open the function.php

    see the

    
    if ( class_exists( 'FLBuilderLoader' ) ) 
    {
    	add_filter('fl_builder_after_render_content','display_rich_snippet');
    }
    else{
           add_filter('the_content','display_rich_snippet'); 
    }

    comment add_filter('the_content','display_rich_snippet');
    and place it add_shortcode( 'display_rich_snippet_nk', 'display_rich_snippet' );

    now it will not automatically visible on any page.
    now to show this box you can use

    <?php echo do_shortcode( '[display_rich_snippet_nk]' ); ?>

    enjoy. and customize css as per your requirement.

    Cheers,
    Naresh

    Won’t that get overwritten when the plugin is updated?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Moving Summary Box’ is closed to new replies.