• I could notice in your demo, the featured image is below the title:

    But I use the same theme, the image is on top of the title:

    How can I do in order to put the featured image below the title like in the demo? Any configurations or plugins needed?

    I am using gp premium.

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you’re using the premium version, you need to seek support at the author’s own support forum: https://generatepress.com/support/ After all, that’s part of what you paid for.

    Theme Author Tom

    (@edge22)

    On the demo you’re seeing, www.ads-software.com doesn’t add a featured image, it’s just an image inside the content.

    Our premium version allows you to move the featured image around inside the Customizer.

    Without the premium version, this should do it:

    add_action( 'after_setup_theme','tu_move_single_page_header' );
    function tu_move_single_page_header()
    {
        remove_action('generate_before_content','generate_featured_page_header_inside_single', 10);
        add_action('generate_after_entry_header','generate_featured_page_header_inside_single', 10);
    }

    Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

    Hope this helps ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured image trick’ is closed to new replies.