• Resolved hairyp

    (@hairyp)


    i have two different generate presses. one i use a plugin Easy Query which puts posts or pages on the main page, just a pic and the title. the pic is the featured image in the post

    the other one i use a pic i upload in the posts content for an image in the post. i want to change this wordpress so i have the front page like the other with Easy Query. but if i add a featured image it puts the pic on top of the post. how can i take it out, i looked in the templates

    https://images2.imagebam.com/a3/f8/7d/bf508a790389023.png

    i have a paid theme for one, i didnt pay for it came with a site i bought, can i still get support

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Tom

    (@edge22)

    If you have premium, you can disable it in Customize > Layout > Blog. We can’t offer support for premium features in this forum due to forum rules.

    Only the license holder can get support on https://generatepress.com, as they’re the ones who created the support account.

    If you need help removing it without using GP Premium, let me know. There’s a function I can write up ??

    Thread Starter hairyp

    (@hairyp)

    this blog doesnt have the premium tho

    Theme Author Tom

    (@edge22)

    In that case, you can use this PHP:

    add_action( 'after_setup_theme', 'tu_remove_page_featured_image' );
    function tu_remove_page_featured_image() {
        remove_action( 'generate_after_header', 'generate_featured_page_header', 10 );
    }

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    Let me know ??

    Thread Starter hairyp

    (@hairyp)

    i tried adding that but it didnt work

    i did get this to take it out, but it also took the image widget out to which i use in every post

    .attachment-full size-full {
          didplay" none;
    }
    Theme Author Tom

    (@edge22)

    Try this instead:

    .page-header-image {
        display: none;
    }
    Thread Starter hairyp

    (@hairyp)

    thanks

    Theme Author Tom

    (@edge22)

    You’re welcome ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove Featured Pic On Page’ is closed to new replies.