przemyslawrosa
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] VAT calculation for foreig countries with Coc nmbrHi,
In the first place, you need to set your Tax Rates accordingly for countries. You do this in WooCommerce> settings> Tax.
If you have disabled tax support, you must enable it at WooCommerce> settings.
On the internet you will find a lot of guides on how to properly configure them. It would be nice if you also used a plug-in to verify the VAT number.
br,
Forum: Plugins
In reply to: [WooCommerce] Wrong shipping costHi,
In the first place the tax issues, perhaps here is some error. If that does not help, I suggest clearing the cache.
Forum: Plugins
In reply to: [WooCommerce] Order and languageFirstly, check that the translation files of the theme are all translated 100%. Probably there is the problem. You can use either a translation plugin or a dedicated desktop program
Forum: Plugins
In reply to: [WooCommerce] can’t translate updated cartThis button is supported by WooCommerce. It may not be translated to your language. You can check it using poedit or the Loco Translate plugin
Forum: Plugins
In reply to: [WooCommerce] How to remove breadcrumbs from the product pages on WoocommerceHi,
check if this can help you:
https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/br,
Forum: Plugins
In reply to: [WooCommerce] Internal server error on checkout pageHi,
Would be worth getting in touch with your hosting provider for PHP error logs; Internal Server Errors can mean just about anything.
Also, you can check is your checout page cached by some plugin:
https://docs.woocommerce.com/document/configuring-caching-plugins/br,
Forum: Plugins
In reply to: [WooCommerce] Products able to be ordered when product is set to hiddenHi,
Have you tried changing inventory status of these products on out of stock?
br,
Forum: Plugins
In reply to: [WooCommerce] Shipping in cart pagehi,
check your shipping location settings. Probably there is an error setting that causes no dispatch methods on the checkout page
BR,
Forum: Plugins
In reply to: [WooCommerce] Shipping conditionsHi,
you can try to set this scenario with Flexible Shipping plugin. In pro version you can stop or cancel shipping method so only one (depends of cart value) would be displayed in checkout.
BR,
PrzemekForum: Everything else WordPress
In reply to: poedit doesn’t show all sentences in my theme.It would be safer to you, to not change the source files. You can try Loco Translate plugin to translate.
br
Forum: Fixing WordPress
In reply to: Hide Front Page NameHi Beriggio,
you can edit the title by some SEO plugin. Eg Yoast SEO.
br,
Forum: Plugins
In reply to: [WooCommerce] change text cart iconHi,
you can try to add this to functions.php (backup before). This will change View Cart to View Shopping Cart:
function my_text_strings( $translated_text, $text, $domain ) {
switch ( strtolower( $translated_text ) ) {
case ‘View Cart’ :
$translated_text = __( ‘View Shopping Cart’, ‘woocommerce’ );
break;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘my_text_strings’, 20, 3 );Hi Konna,
I’m very happy that our plug-in meets most of your expectations and at the same time I’m really sorry for the misunderstanding you’ve had.
Definitely, information that for the COD configuration an extra plugin is needed should be on the plugin page – not just in the docs as it is at the moment.
I will make sure to complete this information.
BR,
Przemyslaw