TheCartPress plugin – Make every item in store unique
TheCartPress plugin – Make every item in store unique
TheCartPress plugin – Make every item in store unique
E-commerce solution
If you’re looking to have a product catalog, with no option for purchase at this stage, and are looking to potentially have the option for visitors to purchase via the online store at a later date, I’d recommend using WooCommerce along with the Catalog Visibility Options extension. This enables you to disable the purchase functionality, … Read more
Modifying third-party themes should be avoided in the first place. Creating a child theme is the proper way to customize a third-party theme because it allows for the parent theme to be updated without worrying about having your customizations overwritten when updating. Being able to update is important for security and it’s nice to be … Read more
The googles suggested several ways to do this, either with PHP or jQuery. Here’s one article I found to get you started: http://tutorialzine.com/2016/06/quick-tip-detecting-your-location-with-javascript/ Plus there is this Stackoverflow answer that might help: https://stackoverflow.com/questions/40636671/how-to-setup-the-functionality-to-get-user-location-in-browser “Geolocation” is a good search term to use. You’ll need to customize you registration form to enable this, but perhaps these links … Read more
It sounds like what you need is WooCommerce. With WC you can create a product, set it as a ‘Variable Product’, and create individual variations with their own prices, SKUs etc. that customers will be able to choose from a dropdown in your store. As for importing data from a .CSV, there are plenty of … Read more
Use a single login, and tag each user as either a buyer or a seller using user meta e.g. lets use a user meta field called shireefs_login_tag To set the tag: update_user_meta( $user_id, ‘shireefs_login_tag’, ‘buyer’ ); To read the tag: get_user_meta( $user_id, ‘shireefs_login_tag’, true ); To redirect on login: function my_login_redirect( $redirect_to, $request, $user ) … Read more
Ok, problem solved be installing an older Woocommerce version (3.2.6). All the wrong categories are gone now and everything is back as it supposed to be.
Coupon Codes for product discount combined with conditional free shipping
I normally use the official WooCommerce Google Analytics plugin, it has been developed by WooCommerce, so that’s always nice. There is a free version and a paid version. Sometimes you get what you pay for, I think the paid version is worth it but I guess it depends on your needs. Here is a comparison … Read more