Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #187562
    steven
    Participant

    Hello,

    https://thelexhemp.com/shop/

    I have trouble editing out “Archives: Products This is where you can add new products to your store” on the shop page.

    Also, the categories under shop page shows “Category: concentrates”- is it possible to delete “category” on the header?

    Thank you

    #187592
    Skandha
    Participant

    @xiangyuli: Hello there,
    I checked your site and it seems to be in maintenance mode. Let me know when your site is accessible.

    To edit the Archive Shop page sub title and to remove Category: from the category page you will need to create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization so that I can help you out.

    Kind Regards,
    Skandha

    #187732
    steven
    Participant

    @Skandha

    The site is now accessible. I am not familiar with creating a child theme.

    Thank you

    #190469
    steven
    Participant

    Hello any updates on this?

    #194901
    Skandha
    Participant

    @xiangyuli: Hello there,
    Firstly you will need to create a child theme. You can use our plugin Generate Child Theme to create a child theme. Install and Activate the plugin.
    Now,
    Go to => Dashboard => Generate Child Theme => Select Parent Theme as Catch Fullscreen Pro, fill the remaining fields and Click Generate. This will create and activate the child theme.

    Finally,
    Go to => Child Theme Folder => functions.php and add the following Code.

    function catch_fullscreen_header_description( $before = '', $after = '' ) {
    	if ( is_front_page() ) {
    		$header_media_text = get_theme_mod( 'catch_fullscreen_header_media_text' );
    
    		if ( $header_media_text ) {
    			echo $before . '<p>' . wp_kses_post( $header_media_text ) . '</p>' . $after;
    		}
    	} elseif ( is_singular() && ! is_page() ) {
    		echo $before . '<div class="entry-header"><div class="entry-meta">';
    			catch_fullscreen_posted_on();
    		echo '</div><!-- .entry-meta --></div>' . $after;
    	} elseif ( is_404() ) {
    		echo $before . '<p>' . esc_html__( 'Oops! That page can&rsquo;t be found', 'catch-fullscreen-pro' ) . '</p>' . $after;
    	} elseif( is_shop() ) {
    		echo $before . '<p>' . esc_html__( 'Hello', 'catch-fullscreen-pro' ) . '</p>' . $after;
    	} else {
    		the_archive_description( $before, $after );
    	}
    }

    Replace the text Hello with the text you want to show up as a tagline on your shop page.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Archives: Products This is where you can add new products to your store.’ is closed to new replies.