beamkiller
Forum Replies Created
-
Hi! Thanks.
I am attaching the Preset IDs, so it is available to others too if they search it for here.- default -> 1
- course -> 2
- simple -> 3
- minimal -> 4
- youtube optimized -> 5
Hi,
The problem with this is that the Free version does not allow creating Presets.
So this is not a solution for the Free version.So my question is that is there a way to enable LazyLoad optimized for the shortcode in the Free version other then Preset ID?
+1 for this! ??
Hi,
Thanks for the suggestion.
I have added it via CSS so it is update-proof.function add_custom_currency_css_to_admin() { ?> <style type="text/css"> div[id*="woocs_tab_fixed_"]{ display:block !important; } </style> <?php } add_action('admin_head', 'add_custom_currency_css_to_admin');
Forum: Plugins
In reply to: [Yoast SEO] Upgrading to PHP 8.1 breaks my site because of Yoast SEOHi,
Thanks for suggestion. There is no WPML.
But based on this input I managed to find the error.
There were wrong translations in Loco Translate where the variable string for PHP had spaces in it.
For example: %1$s
Was like this: % 1 $ s
Thanks.- This reply was modified 11 months, 3 weeks ago by beamkiller.
I would also like to see some solution for this.
For example block the logging all of the marketing emails which are sent out. But log everything regarding the system messages (WooCommerce Subs, etc.)Hi Bastien,
Glad it helped.
I hope you can solve the issue ??Thank you ??
Hi, I have created a custom feed with another export tool.
Maybe add this as a feature request to your backlog ??
Thanks.Same issue here 241KB autoloaded on every page load…
Forum: Plugins
In reply to: [WooCommerce] Issue with Woo REST APII think its a different kind of issue.
I have managed to solve the issue by disabling admin features with this snippet.
Now these 3 loads does not happen.
// Remove WooCommerce Marketing Hub & Analytics Menu from the sidebar - for WooCommerce v4.3+ add_filter( 'woocommerce_admin_features', function( $features ) { /** * Filter the list of features and get rid of the features not needed. * * array_values() are being used to ensure that the filtered array returned by array_filter() * does not preserve the keys of initial $features array. As key preservation is a default feature * of array_filter(). */ return array_values( array_filter( $features, function($feature) { return ! in_array( $feature, [ 'marketing', /* 'analytics', 'analytics-dashboard', 'analytics-dashboard/customizable', */ 'onboarding','activity-panels', 'shipping-label-banner', 'store-alerts', 'wcpay', 'homescreen' ] ); } ) ); } );
Thanks for the info ??
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Disable CoD fee for Local pickupSolved it with the hook found on Github.
function my_pay4pay_hide_local( $do_apply , $amount , $calculation_base , $current_payment_gateway ) { $current_shipping_method = WC()->session->get( 'chosen_shipping_methods' ); if ( $current_shipping_method[0] == 'local_pickup:11' ) return false; else return $do_apply; } add_filter( 'woocommerce_pay4pay_apply', 'my_pay4pay_hide_local' , 10 , 4 );
Same issue here. Icon type called, search bar displayed with the shortcode.
c. Shortcode Add the following shortcode anywhere on the page, post, custom post type or widget. [siq_searchbox] This shortcode can have the following options: type – Accepted values: “search-bar” or “icon”. “search-bar” will show regular text box for search. “icon” will show a clickable search icon for search. Clicking the icon will open a search-bar.
Forum: Plugins
In reply to: [Max Mega Menu] Expand all parent menus on mobile by defaultHi Tom,
Thanks that solved my issue.