Search
 
SCRIPT & CODE EXAMPLE
 

PHP

wp woocommerce change product tags to checbox

function my_woocommerce_make_tags_hierarchical( $args ) {
    $args['hierarchical'] = true;
    return $args;
};
add_filter( 'woocommerce_taxonomy_args_product_tag', 'my_woocommerce_make_tags_hierarchical' );
Comment

PREVIOUS NEXT
Code Example
Php :: laravel many to many relationship with pivot table 
Php :: handling deadlocks laravel 
Php :: wordpress code 
Php :: add variables to line in laravel notification 
Php :: backend/index.php when deploying 
Php :: wordpresss loop through object 
Php :: yii2 has many where 
Php :: PHP Superglobal - $_REQUEST 
Php :: laravel many to many 
Php :: woocommerce_default_catalog_orderby desc 
Php :: New in initializers - PHP 8.1 
Php :: jsondecodephparray 
Php :: php if condition 
Php :: Comment supprimer les onglets WooCommerce dans WordPress 
Php :: append data to json file php 
Php :: Replace default WP search and dropdown placeholder 
Php :: php print keys of array 
Php :: Laravel-permission update name 
Php :: order by array like sql php 
Php :: wp plugin handles 
Php :: prevent undefined offset php 
Php :: string replace in php 
Php :: encode string for csv 
Php :: php remove value from array if exists 
Php :: laravel download file from AWS s3 
Php :: How can I share limits across multiple fields gravity forms? 
Php :: eloquent search from child table column 
Php :: redaxo urlgenerator 
Php :: wordpress profile queries 
Php :: laravel seeder with relationship 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =