ciechom
Forum Replies Created
-
@manegr would be great to hear from you if there is a chance for selective js exclusion from optimization. I’m almost at the end of pro account of different booster kind of plugin and would love to switch to 10web booster but without your clear answer it is difficult to decide.
thank you
great thank you ?? it means that I could cancel my APO subscription ??
But does it also mena that Cloudflare plugin is not needed anymore ? One of the thinks what this plugin does is purging CF cache when something is changed on my site. Will your plugin do the same ?
PS:
thank you for the link to premium support … I’m still on free account here as haven’t yet come to the point where Ilm convinced and ready for switching to pro ??Hi @manegr
Thank you for your response. I understand the reason why it works as it works, but is there any option to exclude some specific scripts which we would like to load anyway ? I mean, there are some scripts which can be deferred but some are too visible/important to be ignored and not loaded immediately.
I found this: https://10web.io/blog/whats-new-10web-speed-optimizer-ai-builder-form-maker-widget/
there is info “Exclude Plugin JS Files from Defer” even with a screenshot but I first of all I’m not sure if “speed optimizer” and “booster” are the same plugin, secondly I do not see this option in my dashboard ??
PS:
exclusions does not have to be made via GUI ?? maybe some hooks or something exist and would allow me to tweak what to optimize and what not ? ??After conducting further tests, I have found that all elements load correctly when I switch the booster to “balanced” mode. However, the issue persists in “strong” and “extreme” modes. I am wondering if there is a way to exclude some JavaScript from the delay so that the elements can load properly. Is there a specific place where I can make these exclusions?
Forum: Plugins
In reply to: [LiteSpeed Cache] Not updating the site after changes in the database@qtwrk is there a way to start crawler manually via some “do_action” similar to:
do_action( 'litespeed_purge_all' );
I would like to create a small script which will firstly purge entire cache (solution you provided above) and just after to start crawler to rebuild key pages from my sitemap.
Forum: Plugins
In reply to: [YITH WooCommerce Badge Management] listing products with specific badgeis there any other version where this is possible ? ?? premium maybe ?
Forum: Plugins
In reply to: [WebP Express] Don’t create some webp files upon request@manfromn did you solve this issue ? I have the same and don’t know what to do ??
btw … in the code I found this:
if ( ! function_exists( 'yit_get_excluded_categories' ) ) { * Retrieve the excluded categories, set on Theme Options
so for sure there must be some possibilities to achieve what i need ??
but simply I do not know how to ??any help appreciated.
Forum: Plugins
In reply to: [WPC Frequently Bought Together for WooCommerce] Support for WP All Importcan you please share how you solved this ? i have the same scenario and do not know how to make WPAI work together with this plugin
hi
I have made more tests and seems that it is not a fault of Cooked itself but customized addition to it. This is a code of my custom plugin (each time I enable it, WF gets disconnected from WF central)<?php /* Plugin Name: Cooked Customizations */ add_filter( 'gettext', 'cooked_custom_text_changes', 20, 3 ); function cooked_custom_text_changes( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Find a recipe...' : $translated_text = 'Search for a recipe...'; break; } return $translated_text; } add_filter( 'cooked_measurements', 'custom_cooked_measurements', 10, 1 ); function custom_cooked_measurements( $measurements ){ // Remove "Grams" and "Cups" if ( isset($measurements['oz']) ): unset( $measurements['oz'] ); endif; if ( isset($measurements['cup']) ): unset( $measurements['cup'] ); endif; if ( isset($measurements['floz']) ): unset( $measurements['floz'] ); endif; if ( isset($measurements['tbsp']) ): unset( $measurements['tbsp'] ); endif; if ( isset($measurements['lb']) ): unset( $measurements['lb'] ); endif; if ( isset($measurements['dash']) ): unset( $measurements['dash'] ); endif; if ( isset($measurements['gal']) ): unset( $measurements['gal'] ); endif; if ( isset($measurements['pt']) ): unset( $measurements['pt'] ); endif; if ( isset($measurements['qt']) ): unset( $measurements['qt'] ); endif; if ( isset($measurements['tsp']) ): unset( $measurements['tsp'] ); endif; // Add "szt" $measurements['szt'] = array( 'singular_abbr' => esc_html__( 'szt.', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( 'szt.', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('sztuka','cooked'), // Singular 'plural' => esc_html__('sztuki','cooked'), // Plural ); // Add "?y?eczka" $measurements['lyzeczka'] = array( 'singular_abbr' => esc_html__( 'm.?y?.', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( 'm.?y?.', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('?y?eczka','cooked'), // Singular 'plural' => esc_html__('?y?eczki','cooked'), // Plural ); // Add "?y?eka" $measurements['lyzka'] = array( 'singular_abbr' => esc_html__( '?y?.', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( '?y?.', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('?y?ka','cooked'), // Singular 'plural' => esc_html__('?y?ki','cooked'), // Plural ); // Add "p?tko" $measurements['petko'] = array( 'singular_abbr' => esc_html__( 'p?tko', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( 'p?tka', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('p?tko','cooked'), // Singular 'plural' => esc_html__('p?tka','cooked'), // Plural ); // Add "dkg" $measurements['dkg'] = array( 'singular_abbr' => esc_html__( 'dkg', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( 'dkg', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('dkg','cooked'), // Singular 'plural' => esc_html__('dkg','cooked'), // Plural ); // Add "szklanka" $measurements['szklanka'] = array( 'singular_abbr' => esc_html__( 'szkl.', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( 'szkl.', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('szklanka','cooked'), // Singular 'plural' => esc_html__('szklanek','cooked'), // Plural ); // Add "puszka" $measurements['puszka'] = array( 'singular_abbr' => esc_html__( 'puszk.', 'cooked' ), // Abbreviated (Singular) 'plural_abbr' => esc_html__( 'puszk.', 'cooked' ), // Abbreviated (Plural) 'singular' => esc_html__('puszka','cooked'), // Singular 'plural' => esc_html__('puszek','cooked'), // Plural ); // Return customized array return $measurements; }
- This reply was modified 4 years, 8 months ago by ciechom.