• After placing the order,”Order received” is H1 title & i want to remove it including the big white gap. I want to remove full portion which is inside red box. So how to Remove H1 “Order received” Note ?
    How to remove the white big gap?

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

Viewing 1 replies (of 1 total)
  • Using a child theme you can add:

    add_action( 'init', 'child_init' );
    function child_init() {
    remove_action( 'ascend_woo_thank_you_start', 'ascend_add_woo_endpoint_title' );
    }

    To the functions php file.

    The theme outputs an h2 tag there. If you are seeing h1 perhaps check to make sure you are up to date and that no plugin is editing the output.

    Ben

Viewing 1 replies (of 1 total)
  • The topic ‘Remove H1 “Order received” Note’ is closed to new replies.