photogenic
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Make custom columns in Analytics sortableHi @pepe
I already had created an inquiry on github, which was ignored so far: https://github.com/woocommerce/woocommerce/issues/43776
So when writing to customer support on woo.com, I was told about using this support page.
If someone can point me to a filter/action, to alter the analytics/customer rest route or how to change the rest route parameters, I’ll be happy to do the work myself. It’s just that the documentation is lacking and the source code is intricate, so It is hard for me to find a point where can I enter my code.
Forum: Plugins
In reply to: [WooCommerce] Make custom columns in Analytics sortableWooCommerce provides the javascript filter woocommerce_admin_report_table, which gives one the possibility to add your own columns. isSortable is one of the properties you can use when adding a column header object in this filter. Then WooCommerce also provides filters to alter the MySQL query in the backend.
So I’m wondering, if I’m missing something in the source code. Maybe a filter somewhere. Because why would you give users this customisability while not providing entry points for one of the most basic adjustments like sorting?
Hi Salva,
I prefer solving issues like this programmatically because:
– less baggage of unwanted code using just a snippet
– through this better and easier maintenance
– I just want to change one specific element, a whole plugin seems like too much
– performance
– we already have a lot of (necessary) plugins installed, i want to to avoid unnecessary ones
– avoiding plugin conflicts (we had some before)
– and looking at your code, I found the filter I need: ‘atum/capabilities/admin_roles’. so why not use it?Could you help me out with what I’m doing wrong?
Forum: Plugins
In reply to: [WooCommerce Admin] Show variations in products list?Hello Nicola,
I believe there is a misunderstanding. I’m not talking about WooCommerce but about Analytics thus WC Admin functionality. The WooCommerce support board specifically said to come with all questions regarding Analytics here.What I want to export: a list of all my product sales for a specific time period. The list of products shall not only include the parent variable products as is but also all their variations.
Now when I click Analytics in my wp-admin sidebar and then go to Products, I get a list of all the product sales for a specific period. To see how the variations of a variable product are doing, you need to click this variable product, which brings you to another page which only contains a list of the variations. But I actually would like to see these variations in the general list of all product sales.
When I export the general list for stock management I’m therefor missing vital sales information. And to export every variable product separately, only to add them later to the same excel sheet seems like misused energy.So this is what I’m trying to know: is there a way to show all variations in the Analytics product sales list together with all the other products? Inside Wp Admin/Analytics?
I second the request! ??
We have had the same issue here as well. Maybe print out an alert when no languages are set up?
I’m still very interested to find out how to make this work. I could not find anything in your documentation unfortunately.
When I insert a select field {field:example} which has choices with values and labels, both, value and label, are being displayed in the email together. How can I separate them?@ehsaanfaysal
I realized my actual issue with the plugin is a (for me) counter intuitive design element. When I’m on a mobile phone, in a product, and have to select the attributes size and color, I have to click two times on the image and not once to get a valid selection. Is there a way to change this so the attribute is selected with one click?Thanks
I actually realized that you have to double click the variation to verify you selection. This is counter intuitive (from the personal experience now :-)) and I would like to shut it off for our website. Can you provide me any help how to do this?
- This reply was modified 5 years ago by photogenic.
Forum: Plugins
In reply to: [WooCommerce] Searching plugin to Increase prices with lower stockHello @bor0 ,
I saw your post mighty late, sorry for that. Your Gist is very interesting to me and almost what I am looking for. I tried to make it work for variable products but did not succeed. Do you have a version of the code for variations?
thanks a lot
JanForum: Plugins
In reply to: [WooCommerce] Connect stock count of different variable productsI found the probably best solution: The Chained Products Plugin
You can chain one product to the other and then hide it in the cart, cart widget, checkout and order. For this you just have to go to WooCommerce > Settings > Products > Chained Products and set it to hide the chained items.Forum: Plugins
In reply to: [WooCommerce] Connect stock count of different variable productsHi,
that’s what I did and had written about it in my last replyNow I produced a dependency for if you buy a bike with a specific color and size you can only choose a likewise frame. This way the specific variables are dependent on each other.
Only if I do this the buyser has to do two selections. First for the bike and then for the dependent frame.
Is there a way to make a filter which does: If is product bike x then select product frame y automatically?Forum: Plugins
In reply to: [WooCommerce] Connect stock count of different variable productsHello Hannah,
I tried another option and I thought it might be interesting enough to share. There is still an issue but maybe there is a filter with which to get it to the finishing line.
With the “Composite Products” Plugin i made a composite product in which I nested two variable products. The bike and the frame. Now I produced a dependency for if you buy a bike with a specific color and size you can only choose a likewise frame. This way the specific variables are dependent on each other.
There is only one issue left in this scenario: The customer would need to make his selection twice. Once for the bike and -while being unable to choose any differing option- once for the frame. Would you know any work around for that issue?Forum: Plugins
In reply to: [WooCommerce] Connect stock count of different variable productsHello Hannah,
thank your for your reply! I already looked into these plugins (as well as ATUM’s Product Levels addon) and have been quite excitedly using Product Bundles.
Still, however i play my scenarios, it ends with me having only one variable product stock (the frame) and one product bundle (the bike) which is counted in stock as a simple product.
Logically I would need to produce a dependancy between one product/sku and another. This means: if someone buys a specific variable bicycle product (specific size and color) I want to connect it with the matching variable frame product.
A variable product is just an array of different sku’s, so it should be possible somehow to connect one specific sku with another, isn’t it? Are there ways to produce dependancies between to specific sku’s?
Thanks a lot
Jan