• I’d like to build a child theme on top of Shopper Woocommerce Theme.

    Something is going wrong during the enqueue of the stylesheet. I see in the Codex that “you will have to make sure to maintain all of the Parent Theme dependencies,” and this theme does have multiple stylesheets. I’ve tried the code below, but it doesn’t seem to work.

    <?php
    add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
    function my_theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/css/arrows.svg' );
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/css/flickerplate.css' );
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/css/mobile.css' );
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/css/slicknav.css' );
    }
    ?>

    Any help would be great. Thanks!

Viewing 1 replies (of 1 total)
  • Dessign.net themes doesn’t use WordPress dependencies manager at all, at least not in all the themes I’ve seen from them. You should complaint to them, WordPress has nothing to do, as WordPress can not force to the developer to code in the right way, excepts for themes included in the www.ads-software.com themes directory (they are reviewed by Theme Review Team). Should they review also the products of companies listed in the commercial themes directory, whre Dessign.net is listed? I think so, but actually they don’t.

Viewing 1 replies (of 1 total)
  • The topic ‘Shopper Woocommerce theme’ is closed to new replies.