Luke Cavanagh
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WordPress / WooCommerce robust enough?There is a plugin just for selling photographs using WooCommerce.
https://www.woothemes.com/products/woocommerce-photography/
Have one live site with just under 40k products and getting very close with another site with just under 110k products.
Not sure about the 20-50 million range for products.
High traffic sites for example Wired.com and TechCrunch use WordPress.
https://www.wired.com/2015/03/wired-dot-com-from-the-devs/
Cheers
LukeForum: Plugins
In reply to: [WooCommerce Recommendations by Graphflow] PHP Fatal ErrorOr as it now stands if this works with WooCommerce 2.3.5.
Cheers
LukeForum: Plugins
In reply to: [WP Store Locator] Pins don't display popup Info, More Info broken as wellThanks it works fine now!
Forum: Plugins
In reply to: [WP Store Locator] Pins don't display popup Info, More Info broken as wellSo does the plugin run on its own then correctly with the markers using the default theme?
It seems like it might be changes made on Google’s side. Since it has been working fine.
https://developers.google.com/maps/documentation/javascript/tutorial
Cheers
LukeForum: Plugins
In reply to: [WP Store Locator] Pins don't display popup Info, More Info broken as wellI have the exact same issue. If you can find the solution that would be great, I do not have Jetpack running on the site.
Cheers
LukeForum: Plugins
In reply to: [WP Store Locator] Marker not expandingI have the same issue of this dev site. When will the pro version of the plugin be released, I really like this store locator plugin.
https://test.standardplumbing.com/stores/
Cheers
LukeForum: Plugins
In reply to: [WooCommerce Recommendations by Graphflow] PHP Fatal ErrorI really want to use this plugin. Hopefully the updated version is out soon, not sure if any any other updates would need to be done so that this plugin works with WooCommerce 2.3.1 correctly.
Cheers
LukeForum: Plugins
In reply to: [WP Store Locator] Marker not expandingNothing has changed on the live site. Very odd.
Cheers
LukeHi Michael,
I just send an email over.
Cheers
LukeNeed to nuke 27,000 products, the plugin seems to be taking for ever to run to nuke them. Used this plugin before on a smaller dev store, but that was only on 2,500 products. Any ideas?
Or would the best method be running a MySQL command to remove the products?
https://www.kc-webdesign.co.uk/e_commerce/woocommerce-how-to-delete-all-products/
Cheers
LukeThanks for the feedback.
Cheers
LukeHi Nick,
Thanks for letting me know that the new version will be releases soon.
I will give the plugin another go.
Cheers
LukeForum: Reviews
In reply to: [WooCommerce] Amazing e-commerce Solution for WordPressHi Martin,
Probably better to have posted this to the support section.
https://www.ads-software.com/support/plugin/woocommerce
I am guessing having two different product categories, one for colour photographs and the other for black and white photographs then go through and set the products to the correct product categories.
Also this new plugin may be of interest
https://www.woothemes.com/products/woocommerce-photography/You will find a bit more information here
https://docs.woothemes.com/document/managing-product-taxonomies/Cheers
LukeForum: Themes and Templates
In reply to: [Storefront] Add Logo without JetpackThank you, this works really well.
Cheers
Lukeadd_action( 'init', 'custom_remove_footer_credit', 10 ); function custom_remove_footer_credit () { remove_action( 'storefront_footer', 'storefront_credit', 20 ); add_action( 'storefront_footer', 'custom_storefront_credit', 20 ); } function custom_storefront_credit() { ?> <div class="site-info"> © <?php esc_attr_e('Copyright ?', 'preference'); ?><?php _e(date('Y')); ?> <a href="https://www.websiteurl.com/" title="Website Name">Website Name</a> </div><!-- .site-info --> <?php }