Zworthkey
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] cart itemsHi,
This is happening because you didn’t add the product through ajax. Once a product instance is created then it won’t affect if you delete it on the page. You have to make that happen by choosing a product from the cart if the cart gets updated content gets updated too.
Well to overcome that you can put reload hook on the product deletion.
Hope this help
Forum: Plugins
In reply to: [WooCommerce] Format decimals of get_price_htmlhello
If you just wanna do that you can do it by woocommerce settings. Just go to admin dashboard->woocomerce->setting->Genrak tab look for currency option and set Number of decimals.
thanks and regards
Forum: Fixing WordPress
In reply to: Help to Optimize WordPress Website’s SpeedHey jacksonleech
To Decrease Load Time On your Website, You have to optimize your site and for that, You must have to compress your Product images and Uninstall or remove unwanted plugins
Note – Load time also depends on the server so check your server speeds also
You can use some free tools to Analyse your site Like
GTmertrix
Or you can use Semrush to audit your site
Hope this will help youin astra theme set mobile view priorities and then changes on mobile view setting on menu and logo
make sure all menu content are bind in the form of hamberger menu and set pixel according to mobile viewForum: Fixing WordPress
In reply to: Plugin Compatibilityyes www.ads-software.com will be compatible with woocommerce 5.5.2 and woocommerce stripe gateway 5.3.0
Forum: Fixing WordPress
In reply to: is this NORMAL when I did disable auto update in config file ?so you can easily mananged your work i think this plugin will help you
thanks & regards
Forum: Fixing WordPress
In reply to: is this NORMAL when I did disable auto update in config file ?bro you don need to disable wp-update instead of this you can download wp-rollback plugin and set the version of wp according to your compatibility
Forum: Plugins
In reply to: [WooCommerce] ERROR WITH WooCommerce Google Analytics Pro.Try, to update woocommerce to the newest version. If the error persists please post the error on https://www.ads-software.com/support/plugin/woocommerce/ They will be best to resolve that.
Forum: Plugins
In reply to: [WooCommerce] how to disable the gridview in product page?Hi,
did you try additional css on the product block. I’m sure it will work
Hi,
I visited your page and saw that each product image and the title is coming in a different section. There has been a malfunction on your side Because that is not a basic function of woocommerce shortcode.
There is no direct way to improve that with code.
Thank You
Forum: Fixing WordPress
In reply to: Plugin For Text ReplacementHi,
I don’t think there’s any plugin to full fill your requirements.But your approach and task are pretty simple and net. You have to customize that from a developer
Thank you
Forum: Plugins
In reply to: [WooCommerce] Create user using the API doesn’t send choose password emailhello,
Please try to go to the settings tab or just updated the option values of woocommerce_registration_generate_password with value yes.?
‘yes’ === get_option( ‘woocommerce_registration_generate_password’ )
to update it
update_option( ‘woocommerce_registration_generate_password’ ,’yes’ );
try this if not work lemme know I’ll try to debug with other more possibilities too.
Thanks And Regards
Forum: Plugins
In reply to: [WooCommerce] Add Percentage as Fee for order over $5khey you can use this peice of code
function zwk_add_fee_line( $cart ) {
if($cart->cart_contents_total> 5000){
$fee = $cart->subtotal * 0.03;
$cart->add_fee( __( ‘A small fee’, ‘yourtext-domain’ ) , +$fee );
}}
add_action( ‘woocommerce_cart_calculate_fees’, ‘zwk_add_fee_line’ );thanks and regards
Forum: Plugins
In reply to: [WooCommerce] Apply free shipping automatically if order is above X amountYou can check cart page hooks and set custom code on price if it is grater than 10$ select free shipping automatically.
Forum: Plugins
In reply to: [WooCommerce] Cannot add shipping insurance with WooCommerce Shipping.hii @neotitanllc i observe that you facing the problem related to shipping insurance of item you can follow the blog link which i will provide you
thank you!https://flexibleshipping.com/shipping-insurance-in-woocommerce/