Mewz
Forum Replies Created
-
You can link attribute stock to simple products too. Just create attributes for Milk and Sugar, add stock to them, and assign them to your products under the Attributes tab in the product edit screen.
Keep in mind you’ll need the full version if you want to prevent customers purchasing more stock than you have available.
Hello again @nikoy,
We’ve done some testing with wePOS, and attribute stock seems to be updating correctly from wePOS sales. However, it looks like it doesn’t work when using product variations with “any” attributes.
In fact wePOS doesn’t seem to support “any” attributes at all, as they don’t show up in the POS cart or in the order. Because of this, attribute stock is unable to match these attributes to the correct stock items.
Can you confirm whether you’re using product variations with “any” attributes in your store?
If this doesn’t apply in your case, please feel free to contact us via our direct support channel so we can investigate why it’s not working on your site.
Not at all. It’s not quite that strict. Just a fair warning ??
You are only allowed to use the plugin for a single live (production) website per license, according to Envato. At this time however, it’s not enforced. So you won’t have any problems installing it on a subdomain before deploying to your live site.
In future, please keep in mind that discussing premium plugins is not allowed on the www.remarpro.com support forums. If you have any further pre-sale questions, feel free to contact us directly ??
Sure you can. But you need one of the many available variation swatches plugins, such as these ones:
Hi @nikoy,
Thanks for letting us know. We will look into this.
We’re going to close this for now as we haven’t heard back from you @retepuang.
If you need any further help, please feel free to reply here or contact us on our direct support channel.
Sure it’s possible, but not without a little code. Something like this should do it:
add_action('woocommerce_product_duplicate', function($duplicate, $product) { // List your attribute stock items by ID => quantity $stocks = [ 1111 => 100, // Block A 2222 => 80, // Block B 3333 => 50, // etc. ]; foreach ($stocks as $id => $quantity) { $stock = mewz_wcas_get_stock($id); if ($stock->exists()) { $stock->set_quantity($quantity); $stock->save(); } } }, 10, 2);
This will simply update the stock quantities to the specified values whenever any product is duplicated. Of course it could be expanded to only trigger when specific products are duplicated, or added, etc.
The ID’s used in the
$stocks
array can be found in the URL of each item under Products > Attribute Stock (e.g....&post=1111
).If you’re not familiar with adding custom code to WordPress, I highly recommend using the Code Snippets plugin.
That’s great news Menno! You have a very nice site by the way. Your coasters and photos are beautiful!
If there’s anything else you need, please feel free to reach out again anytime.
Hi Menno,
We replied to your CodeCanyon support email yesterday. Did you not receive it?
Unfortunately it’s not currently possible to do this with attribute stock. However you’ll be happy to know we’ll be adding this feature in our next update, which we’re hoping to release by the end of the week.
If you have any further questions or queries, please let us know!
Thanks for the awesome review @fluiddesk ??
No problem @naman00. Glad we could be of assistance.
If there’s anything else you need, just let us know.
We have an example of this on our live demo. There are 2 t-shirt products, Cat T-Shirt and Dog T-Shirt. The variations are set up as follows:
Color: White, Black
Size: Small, Medium, LargeTake a look at the frontend and backend to see how it’s set up. Feel free to play around with the stock values, add new products, or place test orders, to see how the stock is affected.
Hi @lilleb,
We’re closing this thread as we haven’t heard back from you in a while.
If there’s anything else you need, please don’t hesitate to contact us again.