Christian Kormos
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] How to purge ls cache by wp-cron?I tried your code, it had some typo:
if (defined('LSCWP_V')) { do_action( 'litespeed_purge_all' ); }The code doesn’t work.
I would like to do the same effect like the attached function do, but with wp-cron.
https://freeimage.host/i/kep-2022-11-15-115336291.H9qVBONI sent the Mailer type clearly above with bold
+ so many another parameters.Status: Sent
Solution: All good, mail sent.
Delivery-URI: smtp:none:none://localhost:25
Type: Default
Mailer type: PostSMTPOur clients gave us the feedback constantly, the e-mail didn’t arrive them.
I can confirm that, by the e-mail test part of plugin it says send successfully but can’t find in my gmail account nor in the spam folder.It seems the plugin does not works with the basic mail() function.
So the problem still exists.
Unfortunately we are considering to try out another SMTP plugins, because this started to not working for us on multiple servers.
- This reply was modified 4 years, 1 month ago by Christian Kormos.
- This reply was modified 4 years, 1 month ago by Christian Kormos.
Thanks in advance for your efforts! โ
Hi @wpcodefactory,
I want similar approach like this plugin does for reset password but for e-mail ( user ) verification purpose.
Forum: Plugins
In reply to: [Contact Form 7] WC7 update from 5.1.4 to 5.4 : dom-events not fired anymoreHi Takayuki,
From 5.4 you’ve been added the following JS files to your plugin which breaks the sites where website’s owners use defer scripts etc.
I get this at developer console:
mammoth-editor.js?v=1.15.0:194 TypeError: Cannot read property ‘attributes’ of undefined
at Module.Ue (blocks.min.js:3)
at insertTextIntoEditor (mammoth-editor.js?v=1.15.0:177)
at mammoth-editor.js?v=1.15.0:92
at tryCatcher (mammoth-editor.js?v=1.15.0:5641)
at Promise._settlePromiseFromHandler (mammoth-editor.js?v=1.15.0:3660)
at Promise._settlePromise (mammoth-editor.js?v=1.15.0:3717)
at Promise._settlePromise0 (mammoth-editor.js?v=1.15.0:3762)
at Promise._settlePromises (mammoth-editor.js?v=1.15.0:3841)
at Async._drainQueue (mammoth-editor.js?v=1.15.0:616)
at Async._drainQueues (mammoth-editor.js?v=1.15.0:626)
at Async.drainQueues (mammoth-editor.js?v=1.15.0:500)If I remove Classic Editor plugin it works well with Gutenberg but not with the old type.
- This reply was modified 6 years ago by Christian Kormos.
Error while attempting to convert file: Cannot read property ‘attributes’ of undefined
Browser: Chrome
- This reply was modified 6 years ago by Christian Kormos.
Strange because nothing changed in code, but changed the server meantime.
Is there any PHP moduls or any extra thing which need to work properly?Forum: Plugins
In reply to: [ACF Content Analysis for Yoast SEO] Meta description and ACF fieldHi annelyse
I was in the same situation.
You just don’t need an extra plugin for this.
Yoast native filters are your friend. ๐https://yoast.com/wordpress/plugins/seo/api/
// Meta Description with ACF Content for Single Events
add_filter(‘wpseo_metadesc’, ‘show_event_description’, 10, 1);function show_event_description( $str ) { // e.g. only Single 'Event' page if ( is_singular( 'event' ) ) { $str = ''; $content = get_field('acf_content'); $str = sanitize_text_field( mb_substr($content, 0, 300, 'UTF-8') ); } return $str; }Cheers,
ChrisForum: Plugins
In reply to: [WooCommerce] Woocommerce orders are not visibleDo you mean at wp-admin or front-end Account page?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce orders are not visibleHi,
Your page show this message:
Il sito รจ in costruzione
Tornate a trovarci. Saremo online il prima possibile!Forum: Plugins
In reply to: [WooCommerce] “Shipping” string not translatingHi dponi00,
Maybe it’ll help you.
Put it in your theme’s functions.php
add_filter('gettext', 'translate_text'); add_filter('ngettext', 'translate_text'); function translate_text($translated) { $translated = str_ireplace('Shipping', 'What you want', $translated); return $translated; }If it doesn’t help, than try to find it with Loco Translate
https://hu.wordpress.org/plugins/loco-translate/Best,
Chris- This reply was modified 8 years ago by Christian Kormos.
- This reply was modified 8 years ago by Christian Kormos.
- This reply was modified 8 years ago by Christian Kormos.
- This reply was modified 8 years ago by Christian Kormos.
Forum: Plugins
In reply to: [WooCommerce] Custom elements width and Height (Variable Products)Dear acroft911,
These plugins will help in your case.
Gravity Forms
https://www.gravityforms.com/
+
WooCommerce – Gravity Forms Product Add-Ons
https://docs.woocommerce.com/document/woocommerce-gravity-forms-product-addons/Best,
Chris- This reply was modified 8 years ago by Christian Kormos.
- This reply was modified 8 years ago by Christian Kormos.
Forum: Plugins
In reply to: [WooCommerce Cart Stock Reducer] Caching the countdown time dataI spent a full day working on it this week, when I have additional free time I will work on it but I do not have infinite time I can spend on free projects.
I fully understand thank you so much!
Forum: Plugins
In reply to: [WooCommerce Cart Stock Reducer] Caching the countdown time dataDear James,
– Did you find any solution to improve the speed of your plugin (more ways)?
Unfortunately we have to disable soon coz 3-4 sec latency is big problem for users.
I hope you will release a better version soon.Thank you for your hard work!
Best whishes