• Resolved brendand0

    (@brendand0)


    Hi,

    I would like to know how to modify the tag of the filter widgets I added to my Sidebar Shop (here is a screenshot to be clearer https://ibb.co/QjbntVR). You can also look by yourself at this URL https://www.jaimemesdents.fr/boutique/ by clicking on the “FILTER” button on the top left.

    The objective is purely SEO.

    I already managed to modify them in my Footer via this code in the functions.php of my child theme:

    function jmd_change_some_widgets(){
    	unregister_sidebar( 'footer-widget-area' );
    
        register_sidebar(array(
        	'name' => esc_html__( 'Footer Widget Area', 'shopkeeper' ),
    		'id' => 'footer-widget-area',
        	'before_widget' => '<div class="' . $footer_area_widgets_columns . ' columns"><aside id="%1$s" class="widget %2$s">',
        	'after_widget' => '</aside></div>',
        	'before_title' => '<p class="widget-title subheading heading-size-3">',
        	'after_title' => '</p>',
        ));
    }
    add_action( 'widgets_init', 'jmd_change_some_filters', 11 );

    But I can’t find what I need to modify them in the sidebar of my shop.

    Thanks for your help, see you soon!

    Brendan

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

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change the tag in the sidebar shop’ is closed to new replies.