sowhatconcept
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Gallery Grid] Media Queries Columnsit’s ok sorry..i adjust the min height size…thanks
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Plugin on homepageHello Ok i find with [prdctfltr_sc_products] but the masonry doesn’t work on homepage ??
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] tab ActiveBut you have to have development knowledge to write on the functions.files.
For precision, i’m not the plugin author, you can ask directly to them.best regards,
Yohan
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] tab ActiveOther solution would be give different priority to your tabs with:
add_filter( 'woocommerce_product_tabs', 'sb_woo_move_description_tab', 98);
function sb_woo_move_description_tab($tabs) {$tabs['videos']['priority'] = 5;
$tabs['faq'']['priority'] = 10;
$tabs['reviews'']['priority'] = 20;
$tabs['additional_information']['priority'] = 30;return $tabs;
}Best regards
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] tab ActiveHello Nuenergy,
Try to remove the “additional tab doing
// Remove Additional Information Tab Woocommerceadd_filter( 'woocommerce_product_tabs', 'remove_info_tab', 98);
function remove_info_tab($tabs) {unset($tabs['additional_information']);
return $tabs;
}Your tab for additional information WooCommerce remains present and is therefore a priority for WooCommerce it is she who opens and is .active although we do not see it.
to put in your functions.php file
It is like that all over your site? Otherwise put a condition also page .beautiful day,
YohanForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] tab ActiveHello,
Can we have an url ?
To me it was on my function.php theme files. See the order priority of your tabs..regards,
Yohan
Forum: Plugins
In reply to: [Change WooCommerce Add To Cart Button Text] Cant' get it to work with WPMLHello !
I have the same problem and it still doesn’t work. i can’t see the string of the cart, just the text (wctext) “read more”…