Forum Replies Created
-
AuthorPosts
-
October 17, 2018 at 7:22 pm in reply to: How to make the call for price text appear on only one of the variable options? #98741
Update: As you have same prices for all variations, in addition to hiding main product price, you will probably need to force showing variation prices. This can be done by adding to your (child) theme’s functions.php file:
add_filter( 'woocommerce_show_variation_price', '__return_true' );
If you don’t want to do it manually (i.e. adding custom CSS and custom PHP) – please wait till I release next plugin version – I will add both these options (i.e. hiding main price and forcing showing variation price) there.
October 17, 2018 at 7:22 pm in reply to: How to make the call for price text appear on only one of the variable options? #98740Hi Armen,
Not sure that I understood it correctly, but if you mean “main” variable product price (i.e. price range – if you have different prices for variations, or single price if you have same prices for all variations), then I would suggest just hiding it with CSS. E.g.:
p.price { display: none !important; }
or with more specification:
.single-product div.product-type-variable p.price { display: none !important; }
Hope that helps and please let me know if I misunderstood you.
Hi,
I’ve replied via email, but just in case, I’m posting same here.
Maybe you can create/share an admin account to your server (WP and preferably FTP), so I could login and check what’s going on (I’ve just re-tested on my test server and default WC emails seems to be working fine here with plugin enabled)?
Hi Fabio,
Sorry for the late reply. Not possible at the moment, but I could probably add this in next plugin release. Just to be sure – on the end of countdown you want the plugin to scan all orders, find all customers who purchased current product and then send them an email? Maybe you could give me an example of that email? Just to understand how this could be used in real environment.
October 9, 2018 at 9:58 pm in reply to: Displaying Custom Field for Variation Products in XML Feed #105561Hi Tomek,
I’ve just replied to you by email, but in case if anyone else has similar task – I’ve just added new
use_parent_id
attribute in our development version. It can be used in all “products” shortcodes. Attribute is set tono
by default, but if you will set it toyes
it should solve your task, e.g.:[alg_product_meta name="total_sales" use_parent_id="yes"]
Hope that helps.
Best regards,
TomHi Rik,
Happy to hear it’s solved and thanks for the update.
Hi,
We’ve just released new plugin version 1.1.0. Unfortunately I didn’t manage to add custom parameter naming there, however we have added “Admin note” option for each parameter (it’s in “WooCommerce > Settings > Product Price by Formula > Default Settings”). Please let me know if that’s good enough.
Hi,
I’ve just added a snippet to the “Tips & Tricks” section (
get_order_id_by_order_number()
function). Not sure if it’s the only way, but I can’t think of another one.Please take a look and let me know if you have any questions/notes.
In case if anyone else has similar issues – as we’ve figured out in private emails – there was a bug in plugin, which is now fixed in v1.2.0.
Hi,
Please try replacing it with HTML codes, e.g.:
[alg_product_title before="<![CDATA[" after="]]>"]
This should produce something like:
<![CDATA[Some Product Title]]>
Hi,
I’ve just re-checked on my test server, but unfortunately couldn’t reproduce the issue – it updated rates normally with TCMB server for the USD/TRY currency pair. Which currency pair do you have that are not updating? Also – is it working if you set server to “Free Currency Converter API” (just to be sure if it’s a specific TCMB issue or more general issue)? Also if you wish you can create/share an admin account to your server (WP and preferably FTP), so I could login and check what’s going on (my email is [email protected]).
Hi,
Maybe you could send me the exact
[costs_table]
value you are trying to use? I mean with yourprop
andtable
attribute values? Also if you wish you can create/share an admin account to your server (WP and preferably FTP), so I could login and check what’s going on (my email is [email protected]).September 13, 2018 at 8:45 pm in reply to: Prices quoted with exchange rate are multiplied by 2 times exchange rate #98140Hi,
Could you please try going to plugin’s “Advanced” settings section (in “WooCommerce > Settings > Currency per Product > Advanced”) and enabling “Save products prices” checkbox option there. Generally it looks like a compatibility issue with some other plugin. Enabling this checkbox will ensure that prices are converted only once, so hopefully it will fix it.
Please let me know if that helped.
Best regards,
TomHi,
In case if anyone else has similar issues – as we figured out in private emails – problem was that our “Price based on User Role for WooCommerce” is listing only available variations. That is – if you didn’t set standard price for the variation, it is “disabled” and because of that is not listed in “Price by User Role: Per Product Settings” meta box. This behaviour is changed in plugin version 1.2.0 – now plugin is listing all (i.e. even disabled/unavailable) variations in meta box.
Hope that helps.
Hi,
Not sure if I understood it correctly, but maybe you mean that there is no “Actions” column in “Orders” list at all? If that’s the case – please go to your “Orders” list and there in the top right corner is “Screen Options” button. If you click it, you will be able to enable/disable columns (including “Actions”).
-
AuthorPosts