Altos
Forum Replies Created
-
Forum: Plugins
In reply to: [WooPrice Calculator] Missing PrefixHello!
It’s usually paste it at the end of the file.
It’s a code standalone, so It’s not linked to some particular code in the file.
We suggest to paste it at the end of the file in order to don’t mixed it with other code.
I hope this information can help you.
Let me know if the issue remains.
I’ll be waiting for your feedback.Forum: Plugins
In reply to: [WooPrice Calculator] Incorrect Price When You Put Infinite FiguresHello,
For big numbers you can use text field, to read more about field types check the link below:
https://altoswebsolutions.com/manual/woo-price-calculator/field-typesIf you have more questions you can also contact to support team on link below:
https://altoswebsolutions.com/contact-usThank you,
Isuf
AT1019Forum: Plugins
In reply to: [WooPrice Calculator] Custom field to WooCommerce new order emailHi,
for this question you can visit the documentation site : WooPriceCalculator. For more details you can also ask on the online chat.
Forum: Plugins
In reply to: [WooPrice Calculator] IF statement in formulaHello,
Yes, actually It’s not possible to use IFs statements in the free version.
If it’s an excel question, that belongs to the pro version.
Anyway if you want to know more about IF statement write in this forum.Forum: Plugins
In reply to: [WooPrice Calculator] cant view menus in backendHello,
Did you follow these steps?
- Go to “Plugins > Add new” in your WP-admin website
- Click on “Upload Plugin” then click on “Browse…” and select the file you’ve just downloaded
- After the plugin has been installed, click on “Activate” and the calculator will be installed successfully
- Check if you have proper permissions/ownership of the folders and files inside “/wp-content/plugins/woo-price-calculator”
If this don’t solve your issue, can you send an screenshot of your plugin activated (from plugins panel) and of the woocommerce menu?
We will be waiting for your feedback.
Forum: Reviews
In reply to: [WooPrice Calculator] Not able to use after activating the pluginHello
In the description is written “Welcome to WooPrice Calculator, the first WooCommerce extension that lets website owners create variable prices for their products, based on the features chosen by their customers”
So we thought it was enough to tell that it’s a WooCommerce extension to remark the dependency.
We will change the requirements installation as soon as possible to make it more clear then.
Sorry for the inconvenience.
Forum: Plugins
In reply to: [WooPrice Calculator] AWS Price Calculator Problemsokay, I’ll answer you:
-
You can translate product fields, labels, drop-down items and fields.
To translate a language just create or edit a file (e.g: “en_US.php”, “fr_FR.php”, “it_IT.php”) in: “/wp-content/uploads/woo-price-calculator/translations”
EX.
For example “en_US.php”:<?php return array( 'height' => 'Height', 'width' => 'Width', );For example “it_IT.php”:
<?php return array( 'height' => 'Altezza', 'width' => 'Larghezza', );In your case.. you need to use the variable:
<?php return array( 'ecommerce.shop.choose_an_option' => 'YOUR TEXT', );- Yes, I understand, you need to overwrite the quantity field of woocommerce. That’s not actually possible with the free version. If you want to know how to do it, write on this forum.
We will be waiting for your feedback.
Woo Price Calculator is not visible immediately on the dashboard or main menu.
If you want to access to it, follow this steps:
– Click on “WooCommerce”
– Go down in the sub menu and click on “Woo Price Calculator”So Woo Price Calculator is inside WooCommerce’s menu.
Try to check that
Let us know if this solved your issue.
Forum: Plugins
In reply to: [WooPrice Calculator] Use of other variables in formulawhat example?
Actually it’s not possible to have global variables anyway.
However, Could you tell us what kind of variables you want?We will be waiting for your feedback
Forum: Plugins
In reply to: [WooPrice Calculator] WPML supportActually no. Because we have our own system of translation.
You can configure it.You can translate product fields, labels, drop-down items and fields.
To translate a language just create or edit a file (e.g: “en_US.php”, “fr_FR.php”, “it_IT.php”) in: “/wp-content/uploads/woo-price-calculator/translations”
EX.
For example “en_US.php”:<?php return array( 'height' => 'Height', 'width' => 'Width', );For example “it_IT.php”:
<?php return array( 'height' => 'Altezza', 'width' => 'Larghezza', );Let us know if this solves your issue.
Forum: Plugins
In reply to: [WooPrice Calculator] Outputfield not showing in the calculatorHello,
Display output fields is not available for the free version.
If you want to know more write hereForum: Plugins
In reply to: [WooPrice Calculator] Missing chosen variations?Firstly you should check the type of the products.
Our plugin support and work only with simple products.
If the problem persist try to reinstall the plugin with the latest version.
I am linking the documentation page too , so you can check also the way you have created the calculator.
https://altoswebsolutions.com/manual/woo-price-calculator/startForum: Plugins
In reply to: [WooPrice Calculator] Missing PrefixYou should probably check for syntax errors, but we can’t tell exactly were the problem is, with this information.
What type of error it gives to you can you specify it?Forum: Plugins
In reply to: [WooPrice Calculator] Missing PrefixYou can do it with our plug-in also.
This is an example:
function change_product_price_html($price){ $newPrice = "Text Before Price"; $newPrice .= $price; $newPrice .= "Text After Price"; return $newPrice; } add_filter('woocommerce_get_price_html', 'change_product_price_html');To make it work, you must append the code to your “/wp-content/themes/YOUR_THEME/functions.php” file.
Let me know if this solved your issue.
Forum: Plugins
In reply to: [WooPrice Calculator] formula questionokay, try to write here.
I’ll be waiting for your feedback.
and describe what do you want to get to see if we can workaround the issue in some say.