D Smith a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Fatal Error After UpdateHi there!
To first answer your question, you can get older versions of WooCommerce at https://github.com/woocommerce/woocommerce/releases
…but at the risk of overstepping, that error has to do with your theme, and makes me wonder if the issue is really WooCommerce-related. Did you also update your theme recently? Is it possible you had custom code in your functions.php that got overwritten?
It’s your website, so of course you are free to do whatever you’d like, include running any version of open-source software you choose, but I would caution that using out-of-date e-commerce software (like older versions of WooCommerce) can present security risks.
Forum: Plugins
In reply to: [WooCommerce] Shop via Woocommerce from another websiteYou can interact with WooCommerce with non-WordPress software using the REST API– but bear in mind this is fairly complex to implement. SkyVerge has a solid introduction to the REST API here.
Forum: Plugins
In reply to: [WooCommerce] Can I use WooCommerce 2.4.10 Restful API without https://Yes! Although it’s not easy.
There is information here.
Forum: Plugins
In reply to: [WooCommerce] Update Cart button disabled by defaultHmm!
Does adding the below code to your functions.php “fix” this?
function remove_disable_updatecart() { ?> <script type='text/javascript'> jQuery(document).ready(function() { jQuery( '.shop_table.cart' ).closest( 'form' ).find( 'input[name="update_cart"]' ).removeProp( 'disabled'); }); </script> <?php } add_action( 'wp_footer', 'remove_disable_updatecart', 99 ); ?>- This reply was modified 9 years, 7 months ago by D Smith a11n.
- This reply was modified 9 years, 7 months ago by D Smith a11n.
Forum: Plugins
In reply to: [WooCommerce] Matrix Price Table using WooCommerceThis is a fairly complex problem. If set values are not saving in your WordPress database, I wonder whether it might not be a MySQL issue? It’s probably worth asking your host about.
In any case, enabling WP_DEBUG in wp-config.php would be a good start to see why exactly this isn’t happening!
Forum: Plugins
In reply to: [WooCommerce] Product Variants ASAP Plz!!Hi there!
This is certainly possible! It will take some doing, though.
You can do it via some custom code (note the example there uses radio buttons rather than checkboxes)… or via a plugin such as this one. The specific formatting of the display in your example– the absence of individual thumbnails, for instance– is something you’d address at the theme level.
Forum: Plugins
In reply to: [WooCommerce] Free Shipping QuestionsHi Ted!
To hide other options when free shipping is available, I recommend this popular snippet.
I do wonder, though, seeing how odd the above looks, whether you might not have some kind of code conflict going on. If you disable all other plugins, do the checkout shipping options display more clearly?
Forum: Plugins
In reply to: [WooCommerce] Cart Count outside WoocommerceHi Jamie!
It’s possible, but not easy– the cart is stored in a browser session. The WooCommerce API is one way to do it. It’s slightly easier to just include wp-load.php in whichever file you want to have access to that info.
Forum: Plugins
In reply to: [WooCommerce] Missing Product Categories on a multisiteHi there!
To be clear, when you add new categories manually, do they not save? That is, can you create categories at all?
Forum: Plugins
In reply to: [WooCommerce] How much time approximately to install and add items to shop?Hi there!
It will depend on a lot of factors. Getting WooCommerce itself set up is not hard– the complexity comes in when you start to set up payment and shipping options. Depending how good you are at reading documentation, what forms of payment you’re looking to accept, and how many different ways you’re looking to ship products to how many places, I would set aside a couple of hours.
Adding and editing individual products is relatively fast, if you have all the information about the product (price, description, images) on-hand. To expedite the process I’d recommend importing the “dummy data” WooCommerce provides, which gives you a store’s worth of items which you can then edit (and delete) down, rather than creating each from scratch.
If your products are downloadable “virtual” (e.g. e-books rather than paperbacks) that will shave some time off setup. If you have something very straight-forward in mind– selling 10 different items that have the same shipping rate anywhere in the USA– setting up won’t take you long at all.
Forum: Plugins
In reply to: [WooCommerce] Problem with e mail when change statusHi there!
Glad to hear WooCommerce is working for you.
Have you checked out the Emails tab in WooCommerce Settings? That should give you options about who gets which e-mail and how they’re configured.
Forum: Plugins
In reply to: [WooCommerce] Remove right sidebar on checkout/order-received pageHello!
The marvelous Nicola Mustone has a comprehensive guide to creating a custom WooCommerce “Order Recieved/Thank You” page.
Hope this is what you’re looking for!
Forum: Plugins
In reply to: [WooCommerce] Remove shipping labels from checkout and emailsHello!
Is this snippet here what you’re looking for? It purports to remove the labels from shipping options… though I haven’t tried it myself.
Forum: Plugins
In reply to: [WooCommerce] Potencial BUG in COUPON SECTION of the last woocommerce versionHey Angelo!
Right now it works as intended, removing the discount entirely if the coupon cannot be applied to an “on sale product”.
However, the solution that you mentioned makes a lot of sense. If you go here: https://github.com/woothemes/woocommerce/issues – you can post this issue and communicate directly with the WooCommerce developers. It’s very possible that they will implement this change.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Stock not Reducing When using PayPal Standard ChckoutHey there!
I would recommend checking your Inventory Settings— specifically Hold Stock (Minutes). If you set that number to zero, do you see inventory going down with sales?