Tom
Forum Replies Created
-
Hello Ewout,
Here are the screenshots
Thanks in advance!
Bet regards,
TomHello Ewout,
When I use the css (also with !important) it doesn’t work.
I already found a snippet for hidding SKU. How can I make this work for weight as well?add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles' ); function wpo_wcpdf_custom_styles () { ?> dt.sku, dd.sku{ display:none; } <?php }
Forum: Plugins
In reply to: [Code Snippets] Possible to execute filter for all products except a few?Not much help? Your plugin makes the implement very easy! ??
Forum: Plugins
In reply to: [Code Snippets] Possible to execute filter for all products except a few?The maker of WooCommerce Bundle Products came up with the solution. Thanks anyway!!
add_filter( 'woocommerce_bundled_item_is_optional_checked', 'wc_pb_is_optional_item_checked', 10, 2 ); function wc_pb_is_optional_item_checked( $checked, $bundled_item ) { global $product; $bundle_id = $product->get_id(); if ( ! isset( $_GET[ 'update-bundle' ] ) ) { if ( $bundle_id === HERE_ID_OF_PAGE|| $bundle_id === HERE_ID_OF_PAGE) { $checked = false; } else { $checked = true; } } return $checked; }
Forum: Plugins
In reply to: [WP Fastest Cache] Preload cacheOke, thanks.
But is there a way to let some crawler crawl the website first? I rather have this crawler building up the page in cache for the first time then for instance Google or a customer.
Also when I have clear the cache I can do it by night and let this crawler crawl the whole website before the morning.Forum: Plugins
In reply to: [Code Snippets] Possible to execute filter for all products except a few?Too bad, that didn’t work
Forum: Plugins
In reply to: [Code Snippets] Possible to execute filter for all products except a few?Thank you very much for this! I will try it!
Forum: Plugins
In reply to: [MyParcel] Bezorgopties worden niet getoond in checkoutGoedemiddag,
Ik had op updaten gedrukt en ben snel weer teruggerold.
De vakjes van de keuzes zijn wel te zien op mobiel, maar de opties zelf niet. Niet mee te werken.- This reply was modified 6 years, 1 month ago by Tom.
Forum: Plugins
In reply to: [Contact Form 7] reCATCHA V3I true that. I use this plugin on about 50+ sites. Have to switch because of GPRS if no changes are made.
v3 is causing a lot of spam too.Forum: Plugins
In reply to: [LiteSpeed Cache] Contact Form 7 ReCAPTCHA issueSame issue here
- This reply was modified 6 years, 2 months ago by Tom.
Hello Ingo311,
Did you use a clean backup to clean or did you clean the install by deleting files and edit some? Maybe a backupdoor still remained after cleaning?
Forum: Plugins
In reply to: [Cookie Information | Free GDPR Consent Solution] Reason for Closure?Yes they can do a forced update. They did it with Yoast some time ago.
https://yoast.com/wordpress-seo-security-release/ See the paragraph “Forced automatic update” on this post.
- This reply was modified 6 years, 3 months ago by Tom.
possible closure
Today on four websites I maintain an admin(!) account was created. I’m posting this just to make people aware that this is possible.
Luckily we were able to delete these by return and updated the plugin.
But an forced update by www.ads-software.com would be a very good idea in case of this vulneralbility with 100.000+ active installs.
I’m signed up for serveral mailinglists but nothing about this leak.- This reply was modified 6 years, 3 months ago by Tom.
Forum: Plugins
In reply to: [Cookie Information | Free GDPR Consent Solution] Reason for Closure?possible closure
Today on four websites I maintain an admin(!) account was created. I’m posting this just to make people aware that this is possible.
Luckily we were able to delete these by return and updated the plugin.
But an forced update by www.ads-software.com would be a very good idea in case of this vulneralbility with 100.000+ active installs.
I’m signed up for serveral mailinglists but nothing about this leak.Forum: Plugins
In reply to: [WooCommerce] String in tables still in English after updateThis is caused by a language file (old file) in /languages/plugins
Merge this file with the new file and upload it in the same directory and it is ok.