guyhaines
Forum Replies Created
-
That is correct but they’re asking me to provide a premium key which i don’t have since this feature is part of the free version…
I am a novice at SQL queries or I’d build that query myself. I figured it would be a easy thing for you to supply me with.
Also, i think having this option as a default like other configurations on the settings page is advisable for future releases so one does not need to run a query and can just check a box or select from a drop down.
Thank you
Forum: Reviews
In reply to: [Gutenberg] WordPress Gives Zero Fs@walton and @juliamc good points, additionally the ever increasing installation count of Disable Gutenberg
Forum: Plugins
In reply to: [WooCommerce] No Option to Crop Main Product Imageadd_filter( 'woocommerce_get_image_size_single', 'hc_set_product_img_size' ); add_filter( 'woocommerce_get_image_size_shop_single', 'hc_set_product_img_size' ); add_filter( 'woocommerce_get_image_size_woocommerce_single', 'hc_set_product_img_size' ); function hc_set_product_img_size() { $size = array( 'width' => 600, 'height' => 600, 'crop' => 1, ); return $size; }this should do the trick
- This reply was modified 8 years, 3 months ago by guyhaines.
@syzygist sorry for hijacking your thread. For the record I love WordFence. However this issue has been long standing and is not new to this version of Yoast.
Common repo comparison anomalies also include WP-Core files, various caching plugins, and much more. Maybe that is indicative of those respective plugins, but it has been years of issues.
If you have a lot of sites that clients have access to and you promote WordFence as a value to keep their sites free of malware, problems, etc – then they blow up your email/phone it starts to wear on you… 🙂 That is all.
Have a nice day!
- This reply was modified 8 years, 4 months ago by guyhaines.
@mountainguy2 ain’t that the truth! I use GOTMLS for repo comparisons
Yep this is affecting all my sites. I have seen some reports of fatal errors with trying to repair them via WordFence. I am ignoring them for now, but it should probably be patched.
Forum: Plugins
In reply to: [WooCommerce] No Option to Crop Main Product ImageRight on. I just used the code I mentioned before, but omitted a couple lines.
add_action( 'after_setup_theme', 'image_setup' ); function image_setup() { add_theme_support( 'wc-product-gallery-lightbox' ); }The issue was with the slider option since it moves the images around. The overall layout is still kind of an eyesore to me.
Forum: Plugins
In reply to: [WooCommerce] No Option to Crop Main Product ImageSame issue. Would love to see this addressed as well as better Product Gallery handling out of the box. I have to always add this to my functions.php
add_action( 'after_setup_theme', 'image_setup' ); function image_setup() { add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); }Thanks for the quick reply, what about paid/free both registered?
Forum: Plugins
In reply to: [WP Store Locator] Search barTotally makes sense, I have done all of that and it creates a url http://mydomain.com/locations/?zip=60654
Which does nothing but go to the locations page (no zip is actually queried)…
So my only question is: what needs to be done so a URL can actually query a zip? What does that URL look like?
Forum: Plugins
In reply to: [WP Store Locator] Search barHey Tijmen,
I looked those those other threads and this one brought me most of the way, but my big question is what is the URL that allows to query a zip code?
http://mydomain.com/locations/?zip=60654 is what is currently passing now. http://mydomain.com/locations/ is where I have included the [wpsl] shortcode.
What am I missing to get this up and running?
Thank you kindly.
Forum: Plugins
In reply to: [Pretty Pinterest Pins] Masonry layouthey thanks. I should have held my thought, I know how to patch 🙂 I just got some HUNK’s initially.. off to more coffee its still early for me!
Forum: Plugins
In reply to: [Pretty Pinterest Pins] Masonry layoutCan you please provide documentation on how to apply this?