seforoth
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] Opening Hours after update no longer displayed@tijmen Smit
The link above is dead: https://gist.github.com/tijmensmit/eb6adab62fd96ac474b7Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Is this plugin definitely abandoned?Plugin is not abandoned. It just suffers because of poor testing. You can view activity from their Github location as well: https://github.com/woocommerce/woocommerce-google-analytics-integration
Last update was 5 days ago.
Forum: Plugins
In reply to: [WooCommerce] Select2 ajax error solutionI recommend creating a migration using the following plugin: https://en-au.ww.wp.xz.cn/plugins/all-in-one-wp-migration/
Then setup a staging area and import the migration to it. You can then deactivate/delete WC v3 on your live version without any worries what-so-ever. Once you’ve downgraded to the previous WC version, you’ll be able to see what’ll happen to the orders. I seriously doubt you will lose anything, as I haven’t noticed much of a difference, but in any case you’ll have the migration to return back to your original state if anything were to go wrong.
Forum: Plugins
In reply to: [Jellyfish Counter Widget] Counter is going passed the end numberCan confirm the same issue
[jellyfish_counter end=11]
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Filter by category??Without being able to sort by categories makes this plugin rather extremely limited.
Is there an ETD on when this is going to be available?
Forum: Plugins
In reply to: [Custom Post Type UI] Custom post types not seen by get_post_typesSweet, thank you very much for that.
Hardly worth the change for the single plugin, but sadly I hadn’t come across the thread you linked to while I was searching for an answer 🙁
Forum: Plugins
In reply to: [WP Store Locator] Bulk Update for Lat LongHi Tijmen,
Thank you very much on the info!
However, I couldn’t wait so I jerry-rigged something yesterday 😉 Here is the code if anyone else is interested.
<?php if ( isset( $_POST['update_all_entries'] ) ) { global $wpdb; $stores = $wpdb->get_results( "SELECT * FROM $wpdb->wpsl_stores" ); foreach ( $stores as $store ) { $address = urlencode($store->address.','.$store->address2.','.$store->city.','.$store->state.','.$store->zip.','.$store->country); $url = "http://maps.google.com/maps/api/geocode/json?sensor=false&address={$address}"; $data = file_get_contents( $url ); $data = json_decode( $data ); $lat = $data->results[0]->geometry->location->lat; $lng = $data->results[0]->geometry->location->lng; $result = $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->wpsl_stores SET lat = %f, lng = %f WHERE wpsl_id = %d", $lat, $lng, $store->wpsl_id ) ); sleep(2); } } ?> <form method="post" action="http://homyped.dev/wp-admin/admin.php?page=wpsl_settings" accept-charset="utf-8"> <input type="submit" id="update-all-entries" name="update_all_entries" value="UPDATE ALL ENTIRES"> </form>I’ve added this code to the map-settings.php as it made the most sense to have it there.
Kind Regards,
Sef
Forum: Plugins
In reply to: [WooCommerce] get_terms for 'pa_' attribute returning nothingBecause you didn’t have any products assigned to any of the attributes at the time
Forum: Plugins
In reply to: [WP eCommerce] Multiple domains share same inventoryYou’re the best man! 🙂
Forum: Plugins
In reply to: [WP eCommerce] Multiple domains share same inventoryI’ve got a brilliant idea for you guys!
How about listing out all the roadmap features and let people fund these for you so they become available quicker as you would then have money to throw at it? You could also make features available free to those who had funded a certain minimum amount as a return on their investment so to speak 🙂
How much money would you require to get this fully developed? My client might be interested in funding it as he is in need of such a feature. He operates a lot of online stores and is after something that lets him centralize all the inventory management.
Forum: Plugins
In reply to: [WP eCommerce] Multiple domains share same inventoryThank you very much for the really quick reply 🙂
Is there a rough date when this may be available?
Forum: Plugins
In reply to: [WooCommerce] Multiple domains share same inventory of productsAnyone?
Forum: Plugins
In reply to: [WooCommerce] Action hook on removing product from cartHi Lukasz,
I’m facing the same issue and was wondering if you managed to find an answer?
Thank you very much.
Unfortunately, hasn’t worked for me. I even tried clearing cookies and everything and it still didn’t work. So I went back to v1.0 again as it’s the only one that works for me.
I’m having the same issue as well and I’m seeing the same error as xikky is on webheadllc’s demo page.
I’ve tested all the versions for this plugin and the only one that actually works is v1.0. So my guess is something must have gone wrong after that.