Make tag show as dropdown in woocommerce

前端 未结 2 1266
囚心锁ツ
囚心锁ツ 2021-01-27 06:58

Hi this is the code to the wordpress shown tags:


                    

        
2条回答
  •  感情败类
    2021-01-27 08:02

    Paste this code to functions.php end echo anywhere you want. You can also make shortcode with: add_shortcode( 'NAME TO DISPLAY', 'displayLocationDropdown' )'. Please also look at comments.

    ';
        $html .= '';
        $html .= '';
    
        echo $html;
    }
    
    add_action('woocommerce_before_shop_loop', 'displayLocationDropdown', 40);
    
    add_action('wp_head', 'addDisplayLocationScript');
    function addDisplayLocationScript() {
        $script = '';
        $script .= '';
    
        echo $script;
    }
    

提交回复
热议问题