| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/catalog.php.tar |
xbodynamge/lebauwcentre/wp-content/themes/customify/inc/compatibility/woocommerce/config/catalog.php0000644 00000001257 15114451765 0031206 0 ustar 00 home <?php
class Customify_WC_Products {
function __construct() {
add_filter( 'customify/customizer/config', array( $this, 'config' ), 100 );
}
function config( $configs ) {
$section = 'woocommerce_product_catalog';
$configs[] = array(
'name' => 'woocommerce_catalog_tablet_columns',
'type' => 'text',
'section' => $section,
'label' => __( 'Products per row on tablet', 'customify' ),
);
$configs[] = array(
'name' => 'woocommerce_catalog_mobile_columns',
'type' => 'text',
'section' => $section,
'default' => 1,
'label' => __( 'Products per row on mobile', 'customify' ),
);
return $configs;
}
}
new Customify_WC_Products();