ozzymuppet
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg Gallery Blocks Lightbox] Plugin stoped working in WP ver. 6.7Thanks. Have emailed you.
Forum: Plugins
In reply to: [Gutenberg Gallery Blocks Lightbox] Plugin stoped working in WP ver. 6.7Hello. Are you still fixing this? It seems we must manually activate the lightbox for every image now, which is not physically possible on my (large) site. Are you able to update it so it defaults? Thank you Sir for a great and non-bloated plugin. I just tried a few others and ran screaming away!
Forum: Plugins
In reply to: [Easy Watermark] Compatible with Lightspeed Cache?UPDATE: You know what… I’ve noticed that products (with images) I added yesterday have both the watermark AND are converted to webp.
So I guess Easy Watermark must be compatible with Lightspeed (or vice versa).
So… good news everybody ??
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Exclude common words?Hello,
I’m not sure how that suggested example would work in my scenario?
Let me explain the situation better. Say we’re on product page with title “1988 Tyco Mini Hopper 2”, and we want YAARP to display more products like it. For example there could be a successor product called “1989 Tyco Mini Hopper 3” which is the obvious match. However the plugin does not show that because it first matches dozens of other products that begin with “1988 Tyco” as those are common to dozens of products.
Is your suggestion to add a category for every year (eg. 1977 – 2010), and tags with the name of the product?
Thanks, appreciate your help with this ??
SimonForum: Plugins
In reply to: [WooCommerce] Woocommerce causing huge CPU usage spike??This is crazy. I’m on the top-tier shared plan at Siteground (GoGeek) and it used up my a whole days CPU/Executions in about 2 hours. I managed to stop it before my site was taken offline.
- This reply was modified 6 years, 9 months ago by ozzymuppet.
Edit: Also noticed on my main site (non-staging) the editor stops working unless I change to alternate-load mode in settings. Geeze… they really need to test this stuff, so frustrating.
I’ve noticed this stops working again once you upgrade to the latest versions of Elementor*. Very very frustrating.
Temporary solution:
– Downgrade to Elementor 1.8.11
– Downgrade to Elementor Pro 1.10.1If you use pro, you need to downgrade both. I’m not sure if it works with a more recent version that those above, I just went back to December releases (about 4 behind) to be sure…
Forum: Reviews
In reply to: [WooCommerce] If you are a programmer welcome to hell.Yep, I can’t understand any of the (very few) bad reviews here except to think maybe its the competition? Or just someone who had a bad experience for unrelated reasons?
The code layout in this is very very clean. Certainly you need to learn the process flow, as it seems unusual (I’m only an amateur php developer), but its extremely carefully laid out.
- This reply was modified 7 years, 1 month ago by ozzymuppet.
@macksix THANK YOU! Agreed, life saver.
I’m surprised this isn’t in the Wordfence documentation, seems to be common.
Perfect – thank you. I’ll upgrade as soon as it comes through.
Forum: Plugins
In reply to: [AnyWhere Elementor] anywhere elemntor search form and results pageYou have to create your own search form using WP_Query and set it to look at only your custom post type. Fairly simple with a little research.
https://code.tutsplus.com/tutorials/wp_query-arguments-posts-pages-and-post-types–cms-23164
Rating added ??
strip_tags() ! That will come in very handy, thanks man.
Update for anyone else looking for similar raw unformatted value…
This file: alg-switcher-functions.phpReplace: “return wc_price( alg_get_product_price_by_currency( $atts[‘price’], $atts[‘currency’] ), array( ‘currency’ => $atts[‘currency’] ) );”
with: “return alg_get_product_price_by_currency_global( $atts[‘price’], $atts[‘currency’] );”
Took me a while to understand why there was no mention of classes/css in your code… then I realised what wc_price was. Clever.
LOVE this plugin. It’s easily the best currency plugin for Woocommerce – I’ve tried them all, some much more expensive and nowhere near as good. The code is very clean, some very smart and useful automated features, but still a very light and fast package. You’ve done a great job with this.
Ok, tested it out. Like a few other plugins I’ve seen, it tries to be helpful by outputting a nice HTML output instead of just a raw number, which is probably suitable for most users, but I’m looking for raw output.
So currently when I do this:
echo alg_convert_price( array( ‘price’ => 1.99 ) );Instead of outputting just 1.99 (or whatever), it outputs:
<span class=”woocommerce-Price-amount amount”><span class=”woocommerce-Price-currencySymbol”>$</span>1.99</span>Which causes problems when I’m feeding the output into other functions.
If you could maybe add a version of the same which just outputs the raw converted value that would be perfect! For now I’ll just have to butcher the code a little to get what I want, but an official function would be better hehe ??
- This reply was modified 7 years, 3 months ago by ozzymuppet.
- This reply was modified 7 years, 3 months ago by ozzymuppet.
Oh my gosh, that’s awesome!!! I just checked back here hoping maybe you’d added this now, and you have. Excellent! I’ll try it out ASAP and let you know the result.