Mutart
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Product Labels for WooCommerce] Conditions don’t workAlso if i buy PRO version?
Forum: Plugins
In reply to: [Advanced Product Labels for WooCommerce] Conditions don’t workBiolife
Forum: Plugins
In reply to: [Advanced Product Labels for WooCommerce] Conditions don’t workHi,
i try all but no one works…
Forum: Plugins
In reply to: [Advanced Product Labels for WooCommerce] Conditions don’t workHi,
product front-end: https://paste.pics/99I8K
Conditions settings product: https://paste.pics/99I9F
Conditions settings category: https://paste.pics/99IA3 (link category: https://eughenes.it/categoria-prodotto/body-care/cosmesi-donna/cura-capelli-donna/henne/)I also try to delete the OR condition, add AND o only one condition
Thank you
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] Button "Previous" don't work1) When i press the previous button, it do nothing. But i solved it add a manual button that i do in html like the continue button. So the problem is solving with an other way.
2)Yes, when i click the send button without the CF7multi-step i see the success message. Now i don’t see it…
Forum: Plugins
In reply to: [WooCommerce] Filter shipping costI put this code:
add_filter( ‘woocommerce_shipping_flat_rate_is_available’, ‘custom_condtional_flat_rate’ );function custom_condtional_flat_rate( $available ) {
$cart = WC()->cart->get_cart();foreach ( $cart as $item ) {
$_product = $item[‘data’];if ( $_product->id !== 2151 ) {
$available = false;
}
}return $available;
}and it works well!
Thanks very much! =D
Forum: Plugins
In reply to: [WooCommerce] Filter shipping costI change it but nothing… it doesn’t work…
add_filter( ‘woocommerce_shipping_local_pickup_is_available’, ‘custom_condtional_local_pickup’ );
function custom_condtional_local_pickup( $available ) {
$cart = WC()->cart->get_cart();foreach ( $cart as $item ) {
$_product = $item[‘data’];if ( $_product->id !== ‘2071’ ) {
$available = false;
}
}return $available;
}Forum: Plugins
In reply to: [WooCommerce] Filter shipping costlocal_pickup!
It’s local_pickup!
Ritiro in sede is local_pickup
Forum: Plugins
In reply to: [WooCommerce] Filter shipping costNo, i’m sorry that you don’t understand.
Ritiro in sede is the first option of WooCommerce Setting on Shipping flag, between Shipping option and Unic Rate. It is’n Free Shipping. (you can see here: https://shop.birdysbakery.com/wordpress/ritiro-in-sede.png)
So… all products have Ritiro in sede and only 1 has Ritiro in sede and Flat Rate of $5.
I hope you understand my bad english.
Thanks a lot for your patience.
Forum: Plugins
In reply to: [WooCommerce] Filter shipping costNo, Ritiro in sede is get the product where it is made, that is that i go to the shop to get the product.
All product has the Ritiro in sede and only 1 of these has both Ritiro in sede and Flat Rate of $5
Forum: Plugins
In reply to: [WooCommerce] Filter shipping costI’m sorry if you don’t understand but my english is very bad….
I have 5 products:
Every product has one option of shipping (Ritiro in sede)
Only 1 product has tow options of shipping (Ritiro in sede and Flat Rate of $5)
How can i set it?
Forum: Plugins
In reply to: [WooCommerce] Filter shipping costHi,
the first: showing a shipping option per product
Forum: Plugins
In reply to: [Contact Form 7] Required Select fieldHi,
Thanks for the answer.
If i don’t use include_blank option, is the field not required?
I try to use include_blank in a select* and the field now is required. Before, i don’t use include_blank in a select* and the field wasn’t required… why? I use the * [select* ……] but the filed isn’t required.
I don’t know why
Please help me…
Forum: Plugins
In reply to: [Contact Form 7] Date emailCan you help me?
Forum: Plugins
In reply to: [Contact Form 7] Date emailI’m sorry but i don’t understand…
My code is:
[date Datapartenza “D, d M y”]
How can i made it correctly?
Thanks a lot