cutu234
Forum Replies Created
-
Forum: Plugins
In reply to: [Participants Database] Replace database values stored as checkbox optionsHi Roland,
thank you very much. That is exactly what I need and even better than a search/replace.
Awesome plugin!
Thanks for the great support.Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Multilingual popupsI’ve just tried it. If I set the rule “is equal to” “de”, it works for the german version. However, if I set it to “is not equal to” “de” it is not shown at all. If I change it to “is equal to” “en” it shows on the english version. I can live with that, but don’t exactly understand the logic behind it.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Can I delelte the private preview page?Well, this is great. While I can safely remove from the page from the database, it is recreated when opening a popup in the dashboard. Could you please make this optional! It is really irritating to to have a “hidden” private page in the pages table.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Multilingual popupsOK, here’s the documentation:
https://wppopups.com/docs/how-to-translate-your-popup-wpml-polylang-etc/
Common, guys, could you make the screenshot readable? I had to open the image in a new tab. Now I can assume that it reads “es” for spanish. So, it might be “de” for german or “en” for english. Am I correct. Please, a tooltip on the settings page?
Ah, my bad. I posted in the wrong place. I’m very sorry. Just forget my stupid question. :-))
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Can I delelte the private preview page?Thank you very much.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Multilingual popupsYup, I’ve found that. But what syntax is used here? Is there a documentation? I haven’t found any.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Please improve performanceHi,
I’ve already removed MEC files from all pages but the events page. Check the Gmetrix comparison for my test installation. It is bare bone with only 3 maintenance plugins installed and a super fast and lightweight theme:
https://gtmetrix.com/compare/U1vTUAdR/QLxaDtrX
Load time is not crucial, since this test page does not contain very much content. However, you can clearly see how many files are loaded by MCE on each and every page. This is bad, bad practice.
You might put an advanced feature to disable CSS and JS in the premium version. I’m ok with that. But do it, please.
It should be a part of the WordPress guidelines that all plugins should contain an option for disabling CSS and JS.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Please improve performanceJust to show you HOW much impact this has:
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Please improve performanceFor those, who need a solution now. This code works and removes 18 (!) files.
function conditionally_load_plugin_js_css() { if ( !is_page(array(6478, 19426)) ) { wp_dequeue_style( 'mec-lity-style' ); wp_dequeue_style( 'mec-select2-style' ); wp_dequeue_style( 'mec-font-icons' ); wp_dequeue_style( 'mec-frontend-style' ); wp_dequeue_style( 'mec-tooltip-style' ); wp_dequeue_style( 'mec-tooltip-shadow-style' ); wp_dequeue_style( 'mec-featherlight-style' ); wp_dequeue_style( 'mec-google-fonts' ); wp_dequeue_style( 'mec-dynamic-styles' ); wp_dequeue_script( 'mec-owl-carousel-script' ); wp_dequeue_script( 'mec-colorbrightness-script' ); wp_dequeue_script( 'mec-lity-script' ); wp_dequeue_script( 'mec-events-script' ); wp_dequeue_script( 'mec-tooltip-script' ); wp_dequeue_script( 'mec-frontend-script' ); wp_dequeue_script( 'mec-select2-script' ); wp_dequeue_script( 'mec-featherlight-script' ); wp_dequeue_script( 'mec-typekit-script' ); } } add_action( 'wp_enqueue_scripts', 'conditionally_load_plugin_js_css' );
Replace the page IDs, of course.
- This reply was modified 4 years, 7 months ago by cutu234.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Please improve performanceAwesome!
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Please improve performanceThank you! This would be a huge progress and an excellent example for others. Most plugins throw their scripts and CSS files everywhere. You need ONE contact form, and get the ugly stuff on all 100+ pages. Have fun talking to your customers who see an F score for the front page.
I do understand that you need a lot of javascript. But please exlude it from pages where it is absolutely not needed.
I don’t need a fancy plugin settings page for that. Just give developers a short tutorial on how to do that via the child’s functions.php. That’s ok.
- This reply was modified 4 years, 7 months ago by cutu234.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Remove archive page and single events pagesAnybody?
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Please improve performanceSo, the support is not interested? Great!
- This reply was modified 4 years, 7 months ago by cutu234.
Forum: Reviews
In reply to: [Woocommerce Product Availability Scheduler] Doesn’t workAre you talking variable products? With simple products it works out-of-the-box. For variable products you have to change the options.php on line 10:
'class' => array( 'show_if_simple' ), );
to
'class' => array( 'show_if_ticket' ), );
This plugins seems to be a mixed bag, and support seem to be very poor. But it does the trick. Change the plugin core is, of course, a dirty workaround.
- This reply was modified 4 years, 7 months ago by cutu234.