Xkeeper
Forum Replies Created
-
I think I have solved it.
Have set default quantity on single product to 1
Force initial quantity on single product page – Default quantity
Force minimum quantity – EnableHi Tobias,
Thanks for quick response.
We don’t have any special user management in place.I’m thinking because export started to work, is there any action I can try and call directly for add or import function ?
This worked for export … wp-admin/admin.php?page=tablepress_export&table_id=1
Thank you
Forum: Fixing WordPress
In reply to: Archive widget shows non existent postsSo I managed to find the cause, it was an Events calendar plugin with some demo data events in it.
thanks for pointing me the direction to check all other plugins.
Forum: Fixing WordPress
In reply to: Archive widget shows non existent postsHow could i find this in the database. I’m considering to deleting all references manually
Forum: Fixing WordPress
In reply to: Archive widget shows non existent postsHi James
yes we use W3 Total Cache, I tried to empty cache and even to disable the plugin but no change.
Forum: Plugins
In reply to: [Contact Form 7] Cant fill form message body on mobile ok on PCI found the cause of my problems.
Send button css content size was being incorrectly computed and it was covering the text field.
The solution was to move the Send button to separate row.Here is my original code
<div class="row"> <div class="col-sm-6"> [text* your-name placeholder "Name"] </div> <div class="col-sm-6"> [email* your-email placeholder "Email"] </div> <div class="col-sm-12"> [text your-subject placeholder "Subject"] </div> <div class="col-sm-12"> [textarea your-message placeholder "Content"] </div> <div class="col-sm-6"> [submit "Send"] </div> </div>
And here is code that works
<div class="row"> <div class="col-sm-6"> [text* your-name placeholder "Name"] </div> <div class="col-sm-6"> [email* your-email placeholder "Email"] </div> <div class="col-sm-12"> [text your-subject placeholder "Subject"] </div> <div class="col-sm-12"> [textarea your-message placeholder "Content"] </div> </div> <div class="row"> <div class="col-sm-6"> [submit "Send"] </div> </div>
- This reply was modified 5 years, 2 months ago by Xkeeper.
Hello,
Sadly it does not solve the issue for me.. still getting rounded prices after creating order.
Since for me the issue seems to be combination of page translation and this plugin, I found a workaround that works for me – I use “Admin in English” plugin, this makes the order confirmation email in English but all prices are correct..
cheers
Forum: Plugins
In reply to: [WooCommerce] Decimal Part of prices is not showingHi Shondhis,
I managed to narrow the cause down to one 3rd party module for Shipping cost calculation based on Post Code and WordPress Admin Page translation to local language.
If I disable either one the error disappears.
Its just a workaround but maybe it will help you as well..
Forum: Plugins
In reply to: [WooCommerce] Decimal Part of prices is not showingHello aditya.tayal
did you find a solution to this ?
I’m having same issue as you..
Thank you
Best Regards
MarekForum: Plugins
In reply to: [WooCommerce] Prices are rounded in e-mail & order in adminHello davidj0n
did you find a solution to this ?
I have same issue. To me it seems to be caused by a thirdparty plugin “Postcode Shipping Rates”
When I disable the plugin it works fine, but I need both correct prices and postcode based rates..Thank you
Best Regards
Marekjust an update, I found that someone had same problem in past but their solution did not help me.
It seems that there is some issue with decimal separator..
I’m using the default . “dot” as decimal separator.could it be that the plugin somehow changes it during checkout ?
here are some links to related issue:
https://www.ads-software.com/support/topic/problems-with-prices?replies=32 https://github.com/woothemes/woocommerce/issues/3587
Update:
It seems to be somehow a combination of the plugin and page translation.
When I disable either one, prices are shown correctly..