chantage
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Admin Search Slowon wpengine.com
no i am not using.1 week ago all was fine
i did not add new pluginForum: Plugins
In reply to: [WooCommerce] Admin Search SlowHi, almost 1500 …
Forum: Plugins
In reply to: [WooCommerce] Free Shiping Shows 2 SelectionRiaan,
Thank you for your kind answer 🙂I mean it beacuse of this note “Legacy shipping methods (Flat Rate, International Flat Rate, Local Pickup and Delivery, and Free Shipping) are deprecated but will continue to work as normal for now. They will be removed in future versions of WooCommerce. We recommend disabling these and setting up new rates within shipping zones as soon as possible.”
But now i understand settings are not in another place.
Now it looks ok.
Thank you for answersForum: Plugins
In reply to: [WooCommerce] Free Shiping Shows 2 SelectionWhy will you remove freeshiping in next versions ?
I want want to add fee about the citys.I want to add fee about profit
if customer buys more then 100 TL then shiping free, else it will extra 8 TL
what can’t i do it in 2.60 ?
Forum: Plugins
In reply to: [WooCommerce] Free Shiping Shows 2 SelectionDo you want me to pay $79.00 for this .. forget.
Forum: Plugins
In reply to: [WooCommerce] Free Shiping Shows 2 SelectionNo error but it is not working.
After i add the code and try to buy a product which free shiping.I see 2 option, 8 TL Cargo fee and Free shiping.
I dont want user select it.
id it is more them 100 it is freeForum: Plugins
In reply to: [WooCommerce] Free Shiping Shows 2 Selectionfunctions.php
But it is not worked on me, is it worked for you ?
Forum: Plugins
In reply to: [WooCommerce] Free Shiping Shows 2 SelectionHello,
Thank you but this is not helped me.
after i add this code i still see 2 selection about cargo fee
<?php
/**
* Hide shipping rates when free shipping is available.
* Updated to support WooCommerce 2.6 Shipping Zones.
*
* @param array $rates Array of rates found for the package.
* @return array
*/
function my_hide_shipping_when_free_is_available( $rates ) {
$free = array();foreach ( $rates as $rate_id => $rate ) {
if ( ‘free_shipping’ === $rate->method_id ) {
$free[ $rate_id ] = $rate;
break;
}
}return ! empty( $free ) ? $free : $rates;
}add_filter( ‘woocommerce_package_rates’, ‘my_hide_shipping_when_free_is_available’, 100 );
My customers website is http://www.adresmedikal.com
careful this is +18 adult stuff selling website.OK, try to find my admin page …
Forum: Plugins
In reply to: [WooCommerce] how add age verification in perticular productForum: Plugins
In reply to: [WooCommerce] Product Can't can't findThank you.
I check it looks normal but, now i can see my product.
thank you anywayForum: Plugins
In reply to: [WooCommerce] Mobil View Turn 2 to 4This links file is work.
Thank you
It is solved 🙂Forum: Plugins
In reply to: [WooCommerce] Mobil View Turn 2 to 4Thank you Mike,
I did it but it is not fixed my problem. 🙁
Thank you anyway
Forum: Plugins
In reply to: [WooCommerce] Mobil View Turn 2 to 4I wrote this code on woocommerce-smallscreen.scss
But it is not fixed.Can i do more ?
Forum: Plugins
In reply to: [WooCommerce] Mobil View Turn 2 to 4Thank you.
Should i need to overwhite a css ?
Or should i copy this css into woocommerce folder ?May you guild me please