H Tags

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #148635

    silentmedia
    Participant

    Hello,
    I am starting to do some SEO on site and I have some issues with H Tags..

    – The cart icon in header has H3 tag with text “Shopping Cart” by default, I don’t want H tag on it.

    – Same problem for WPBakery ‘Separator with Text’ module. Its makes H4 Tags. I cant remove.

    #148676

    Artem Temos
    Keymaster

    Hi,

    Could you please send us a screenshot of the first H3 tag in the header?

    Separator with text file can be found and customized in /wp-content/plugins/js_composer/include/templates/shortcodes/vc_text_separator.php

    Regards

    #148690

    silentmedia
    Participant

    Hi Artem,

    Thanks for solution. For Shopping cart H3, please see attached screenshot.

    Attachments:
    You must be logged in to view attached files.
    #148694

    Artem Temos
    Keymaster

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    	function woodmart_cart_side_widget() {
    		if ( ! whb_is_side_cart() || ! woodmart_woocommerce_installed() ) return;
    		?>
    			<div class="cart-widget-side">
    				<div class="widget-heading">
    					<p class="widget-title"><?php esc_html_e( 'Shopping cart', 'woodmart' ); ?></p>
    					<a href="#" class="close-side-widget"><?php esc_html_e( 'close', 'woodmart' ); ?></a>
    				</div>
    				<?php the_widget( 'WC_Widget_Cart', 'title=' ); ?>
    			</div>
    		<?php
    	}
    #148697

    silentmedia
    Participant

    Hi,

    This breaks cart when you click in header cart link. Screen goes black faded. No side bar cart slide out.

    Not urgent but H3 tag saying ‘shopping cart’ is not good for seo?

    #148783

    Artem Temos
    Keymaster

    Please, provide us your admin and FTP access so we can check what is wrong with that code.

Viewing 6 posts - 1 through 6 (of 6 total)