stonez
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Customize customer processing email with CSS?Hi Kw56,
Thanks for the suggestion. However, this didn’t work on my site.
I have applied those CSS in “My Theme”-> “Custom CSS/JS”, but the email send out still showing bank transfer information.And then, I found this solution, and it worked on my site.
https://www.ads-software.com/support/topic/need-to-remove-bank-details-from-new-order-emailThank you!
Stonez.
Forum: Fixing WordPress
In reply to: Customize customer processing email with CSS?Hi t-p
Thank you!Stonez
Forum: Fixing WordPress
In reply to: Customize customer processing email with CSS?Sorry, I forgot to mention. It’s WooCommerce Plugin.
Here are all the plugins I have used in this particular site.WordPress Plugins Installed:
Theme: OceanWP v1.5.28 and use OceanWP-child theme
Ocean Extra v1.4.29
All in One WP Security v4.3.7.2
Contact Form 7 v5.0.4
Duplicator v1.2.48
UpdraftPlus Backup / Restore v1.15.3
User Role Editor v4.46
WP Mail SMTP v1.3.3
WordPress content import v0.6.4
WooCommerce v3.4.6
Woo Checkout Field Editor Pro 1.2.8
Loco Translate v2.1.5
Elementor v2.2.7
Woocommerce All Discounts – Dynamic pricing plugin V1.7Forum: Plugins
In reply to: [WooCommerce] String in tables still in English after updateTo translate “Shipping” in the final checkout step, use Loco Translate to edit “Woocommerce” language, find “Shipping [shipping package]” and change it to the text you want.
I’ve successfully changed this on my site.
Stonez
Forum: Plugins
In reply to: [WooCommerce] “Shipping” string not translatingThank you, this thread also fixed my issue!
Use Loco Translate and find:
translation for “Shipping [ shipping package ]”Successful, thanks!
Stonez
Forum: Plugins
In reply to: [Polylang] “Read Terms and Conditions” always in EnglishHi Unquiet320,
I just solved this problem.Go to admin->Plugin->Woocommerce->Setting->Account & Privacy.
The string are down there and you may just translate the string from there.Good luck!
Stonez
Forum: Plugins
In reply to: [Loco Translate] Error: 413 Request Entity Too Large loco translateHi Stevek28,
I added the following settings in .htaccess, but the same error message still appear.<IfModule mod_security.c>
<FilesMatch “admin-ajax.php$”>
SecFilterScanPOST Off
</FilesMatch>
</IfModule>Stonez
I’m having the same issue and I have setup the web server with following parameters:
upload_max_filesize = 100M
post_max_size = 105M
max_execution_time = 120
max_input_time = 1000
memory_limit = 200M
max_input_vars = 2000Further, I enabled the debug and in the log it showed:
PHP Notice: Array to string conversion in /home/stonez/web2/wp-includes/formatting.php on line 1045
Is there anything I missed to make “Request Entity too large” Error goes away?
Thanks for helping out!
Stonez
Hi Jeremiah,
Thanks! here is my setup environment and they are all up to date.PHP Version 7.1.19
WP: v4.9.8
Elementor: v2.1.6One thing I found it quite weird is that the Elementor worked great on my localhost environment, but when I use “Duplicator” to zip it up and re-create the site in my hosting (Dreamhost) the “Edit with Elementor” button disappeared.
Stonez
Hi all,
After all the possibilities I tried including disable all plugins, activated 2017 theme, restore database, and update all plugins, still no use.Since there is no solution available for this issue, I will just have to remove Elementor and start again these pages with the other Editors.
Stonez
Hi,
I went to the ‘Elementor’ setting to uncheck both ‘Pages’ and ‘Posts’ and save. After that I can see the original ‘Edit’ button. Then I went back to ‘Elementor’ setting to check both ‘Pages’ and ‘Posts’ and save.After that, I looked the pages I created with Elementor from the backend, still no ‘Edit with Elementor’ button appear.
Can someone help on this?
Thank you,
Stonez- This reply was modified 6 years, 7 months ago by stonez.
Hi Nicky1234,
Thanks your quick reply. I went in to the setting and checked both ‘Pages’ and ‘Posts’ are both checked.I used Elementor to create 4-5 pages and not sure when these “Edit with Elementor” were missing until yesterday.
Thank you,
StonezI have the same issue. Dashboard->Pages->All Pages->select the page I want to edit
Then I found out the page content was gone and there is no WordPress “EDIT” button, nor “Edit with Elementor” button.
I already upgrade to latest Elementor plugin v2.15, but still no edit button.
What could be wrong?WordPress 4.97
Elementor 2.15
OceanWP 1.5.10 (but I created OceanWP-child theme, but still no Edit button if I switch back to OceanWP theme)Stonez
Forum: Plugins
In reply to: [WooCommerce] How to add border on checkout table format?Hi Wbrubaker,
Thanks for your kind help! I have updated the table and boarder size and the example you’ve given above help me greatly in customize other parts of this website.
border size and font color reassigned
Best regards!
StonezForum: Plugins
In reply to: [WooCommerce] How to add border on checkout table format?Hi Thomas,
Thanks! I was able to have borders on the entire table including TH, TD, and all around; exactly what I wanted with the code below!.woocommerce #order_review table.shop_table { border: 1px solid; border-color: grey; text-align: right; } .woocommerce #order_review table.shop_table th{ border: 1px solid; border-color: grey; text-align: left; } .woocommerce #order_review table.shop_table td{ border: 1px solid; border-color: grey; text-align: right; }
My another questions is product name font color is in grey and product name attributes are in black. i would like to revser the colors. I tried the code below, but the product-name color stays in grey:
.woocommerce #order_review table.shop_table product name{ color: black; }
What’s the correct syntax to do that?
Thanks!
Stonez