thomascharbit
Forum Replies Created
-
Forum: Plugins
In reply to: [Shipping Method Description for WooCommerce] Add a class to SMD “root” divHi,
thanks for the report this is a good idea, I added the shipping_method_description class to the div tag.
Also you can use the
smdfw_description_output_html
filter if you need to tweak the html output yourself.Thanks!
Hi,
I never used the Tree table rate shipping plugin but i can have a look to see if we can support it easily.
I see this is a paid plugin though, do you mind dropping me an email at [email protected] with a copy of the plugin?
Thanks!
Forum: Plugins
In reply to: [Shipping Method Description for WooCommerce] WPML issueHi,
Thanks for your support and the kind words.
I fixed a bug when applying the WPML translations, can you download and try the new released version 1.2.2?
Have a nice day!
Hi,
this is fixed in version 1.2.1
Can you give it a try?thanks!
hi,
I can confirm the issue and will fix it ASAP.
Thanks for reporting!
Hi,
I think it’s best to keep this kind of frontend customization in your theme, but
yes, sure, it would be easy to do this in CSS:.shipping_method + label + div { display: none; } .shipping_method:checked + label + div { display: block; }
Something like this…
Have a try!
Forum: Plugins
In reply to: [Shipping Method Description for WooCommerce] Supported html-tags?Hi macyven!
The whitelisted HTML tags are the same WordPress uses for post content.
Basically all HTML tags needed for text formatting are allowed, but others that might alter the design and functionality of the whole website are forbidden for security reason.
If you need to allow extra tags and are aware of the potential security implications, i would suggest to do it at the WordPress level, using the related filter.
Hope that helps!
Hi,
Can you tell me why it is not compatible? What issue are you experiencing?
thanks!
Nice!
Everything looks fine on your screenshot so i will mark this as resolved.Thanks for the kind words.
Hi Stew,
Thank you for your feedback, this is indeed a bug.
I fixed it in the latest release (1.2.0).But it is kind of weird that you stumbled upon this case, it means the plugin was not able to insert its description field in the edit form.
Can you send a screenshot of the shipping method edit form using the 1.2.0 version?
thanks,
Hi,
Thrilled to see people actually using the plugin ??
I released 1.2.0 with HTML tags support.
Can you give it a try?Thanks
- This reply was modified 3 years, 3 months ago by thomascharbit.
Hi Kozyrev,
I apologize for my late reply, somehow i didn’t get any notification for your support thread.
I am afraid it is not possible to avoid the HTML escaping right now, the description string is made available as a shipping method metadata which are cleaned from any HTML content using the wc_clean function.
I do understand the need for HTML content in the description, I will see if i can find a better way to pass the data to the shipping method.
Thank you for your feedback.
Forum: Plugins
In reply to: [Gravity Forms Zero Spam] Entries are still going to spam (1.1.1)Hi,
I had a similar issue and found that the POST value was html encoded, preventing comparison with the key stored in options table.
Applyinghtml_entity_decode()
to the POST variable fixed it.if ( html_entity_decode($_POST['gf_zero_spam_key']) !== $this->get_key() ) { return true; }