1774 comments found.
Hello team i have one question can you please tell me how i can change the Phone string inside phone placeholder? Thanks
Hi,
Sorry for the late answer, we somehow missed your question 
The phone placeholder is on line 509 of bt_cost_calculator.php:
$output .= '<div class="btQuoteItem' . $m_phone . '"><input type="text" class="btContactPhone btContactField" placeholder="' . esc_html__( 'Phone', 'bt-cost-calculator' ) . '" autocomplete="tel"></div>';You have two options: 1. Quick edit (direct) — change ‘Phone’ to whatever you want, e.g.:
placeholder="' . esc_html__( 'Your phone number', 'bt-cost-calculator' ) . '"2. Proper way (translation, survives plugin updates) — the string is wrapped in esc_html__( ‘Phone’, ‘bt-cost-calculator’ ), so it can be translated via the plugin’s .po/.mo files in wp-content/plugins/bt_cost_calculator/languages/, or overridden with a gettext filter in your theme’s functions.php:
add_filter( 'gettext', function( $translated, $text, $domain ) {
if ( $domain === 'bt-cost-calculator' && $text === 'Phone' ) {
return 'Your phone number';
}
return $translated;
}, 10, 3 );
Note: the same ‘Phone’ string is also used in the admin/client email output (lines 222, 269) and the mandatory-field label (line 1387). Option 2 changes them all
consistently; Option 1 only affects line 509.
Kind regards,
BoldThemes team
Hello,
We need to do some price updates in our calculator, but unfortunately, in the back-end the module is not loaded anymore (using BeTheme + WP Bakery page builder ). In the front-end is still working, but like this we can’t update our values/prices in the back-end anymore.
All our articles/items are gone, but the labels are still there in the back-end. Also weird is that the Cost calculator custom post type = empty. ( I am not sure if this was before)
Please help asap with this bug! thx!
We have a valid purchase code, but we should not be paying support for fix bugs… that aren’t our mistake… Hope you understand that.
Looking forward to your answer.
Thanks!!
Hi,
Can you tell us the version of the Cost Calculator plugin you are currently using?
Kind regards,
BoldThemes team
When I try to access a product in my online shop, I get this error:
Fatal error: Uncaught Error: Call to a member function get_id() on string in /public_html/wp-content/plugins/bt_cost_calculator/woocommerce.php:127
how do I fix this?
nevermind, it was an issue with the woocommerce stripe plugin, it needed to pe re-authenticated because express checkout was marked and it seems it gives a fatal error with express checkout activated. for some reason it wouldn’t deactivate unless I deactivated it from stripe dashboard and then removed the stripe plugin, reinstalled and re-authenticated the entrie process. only then was i able to deactivate the express checkout option and it worked fine again.
I am posting this just in case anyone else runs into this issue
hi,
since some of the last versions we had mentioned that this file is already missing after updating your plugin: /wp-content/plugins/bt_cost_calculator/style.min.css
can you confirm that?
br, newbie2004
Hi,
The current version of the cost-calculator does not use /wp-content/plugins/bt_cost_calculator/style.min.css
It uses
/wp-content/plugins/bt_cost_calculator/style.css
which is included in the bundle
Kind regards,
BoldThemes team
Hi,
thank you for your reply.
Before uploading this file “wp-content/plugins/bt_cost_calculator/style.min.css” from an old version in the browser console we found an error about that missing file (error).
Opening the page source then I will find this line: ... <link rel=’stylesheet’ id=’bt_cc_style-css’ href=’https://www.domain.de/wp-content/plugins/bt_cost_calculator/style.min.css?ver=6.9' media=’all’ /> ...
3.1.0 is used actually with WP 6.9
br, newbie2004
If the
Hi,
We can not recreate the issue. You can check the code of the bt_cost_calculator.php file in the root of the plugin’s folder.
I has three ”.css” references:
line 80: style.css – main front-end css line 96: admin_style.css – main wp-admin css line 97: bt_bbl_override.css – used internally for css customizations
style.min.css is not used for quite some time.
Try deleting and reinstalling the plugin.
Kind regards,
BoldThemes team
Hi,
just checked your demo https://gardena.bold-themes.com/demo-02/about/get-quote/
I foiund this in the source code:
<link rel=’stylesheet’ id=’bt_cc_style-css’ href=’https://gardena.bold-themes.com/demo-02/wp-content/plugins/bt_cost_calculator/style.min.css?ver=6.9' type=’text/css’ media=’all’ />
You are already using this file for your own demo. If i download the actual version of your pluging via codecanyon this file isn’t avaialbale in the package.
br, newbie2004
Hi,
Please note that some of our demos run old versions of cost calculator as they were not updated.
If you have Cost Calculator 3.1.0 installed, your site should not load style.min.css
Kind regards,
BoldThemes team
hi,
thanks. we will try to delete and re-install the version 3.1.0 manually. how can we backup the 5 individual cost calulators for this task (restore it later)?
br, newbie2004
Hi,
The calculators are kept as CPTs in the WordPress database, so reinstallation of plugin should not affect them in any way.
Kind regards,
BoldThemes team
Hi,
plugin was deleted via backend and then uploaded via FTP (3.1.0). The plugin will still try to load “style.min.css”.
Br, newbie2004
Hi,
Can you please send us the url of the page with the cost calculator and wp-admin credentials so we can take a closer look at the issue.
You can send them using the contact form on our profile page: https://themeforest.net/user/boldthemes (right hand sidebar)
Kind regards,
BoldThemes team
Hi,
we’re using Cost Calculator version 3.0.8.
When I check for updates, I get the following error message:
“Could not determine if updates are available for Cost Calculator.
Failed to parse update metadata. Try validating your .json file with http://jsonlint.com/puc-invalid-json"
Best regards, newbie2004
Hi,
That is strange as it seems that the update related endpoints are responsive: https://license.bold-themes.com/wp-json/bt_license_server_download/v1
Alteranatively, you can try Envato wordpress plugin – https://www.envato.com/lp/market-plugin/. It also provides you updates right from the wp-admin
or you can manually download the latest release from CodeCanyon’s user profile downloads section and update it to the latest version – 3.0.9 and see if the issue persists.
Kind regards,
BoldThemes team
hi boldtheme teams,
thank you for your reply.
after updating to 3.0.9 and after pressing “checking for updates” still the same error message as before.
br, newbie2004
Hi,
We still can not recreate the issue from our environment.
Please use the contact form on our profile page: https://themeforest.net/user/boldthemes (use the contact form in the right hand sidebar) to send us the site url and wp-admin credentials so our developers can try to trace the cause of the issue.
Kind regards,
BoldThemes team
Hi,
just send you an e-mail.
Br, newbie2004
Hi,
We have answered it
Kind regards,
BoldThemes team
Hi,
thank you for your great support and to fix the issue which was self caused.
br, newbie2004
Hi,
Thanks, we are glad we were able to help.
Kind regards,
BoldThemes team
Guys, I just wanted to let you know that adding WooCommerce support to Cost Calculator is a huge step!!! I don’t know how I missed the March update… I’ve been waiting for this feature for a very long time and I thank you from the bottom of my heart for dedicating your time (and money) to this. Keep it up! Cheers!
Thanks!
Hi,
Can I use this plugin also with other themes, like betheme?
Best, Steve
Hi,
Thanks for contacting us.
Sure, Cost Calculator is independent of the theme. In rare cases, theme’s css can be partially in conflict with the Cost Calculator’s, but this is usually easily resolvable with few lines of custom CSS.
Note that, if the Cost Calculator does not work with your theme or it does meet your needs, for whatever reason, we will refund you.
Kind regards,
BoldThemes team
hello, is it possible to display price, download pdf but not activate the online paiment ? I would like to validate by myself the quote before making my client pay. Thanks for your answer.
Hi,
Thanks for contacting us.
Yes, it is possible to display the price, have the quote in email sent to admin and the client (the plugin does not explicitly support pdf creation) and not activate the payment.
Kind regards,
BoldThemes team
Okay, thanks! And would it be possible to hide the price so that my prospect has to submit the form and then receive the estimate by email?
Yes,
You can hide the price on the form and send it only via email.
Kind regards,
BoldThemes team
Hi there. Is is possible to apply conditional logic and prices ?
Hi, yes, you can take a look at our demos here: https://cost-calculator.bold-themes.com/new-main-demo/ and documentation here: https://documentation.bold-themes.com/cost-calculator/
Hello. Does it integrate with Woocommerce Product?
Hello, yes, please take a look at our demo: https://cost-calculator.bold-themes.com/new-main-demo/product/basic-drawing-pack/
Thanks. Is there a sandbox site to try it in the admin area?
No. However, if you decide to purchase our plugin and find that the plugin does not suit your needs, you can request a refund, and we will approve it.
Ok, Thanks.
Hello. I just bought the plugin. I don’t understand the interface. It is not very intuitive for me. Can you send me a video tutorial to create my first form?
Hello,
Thank you for purchasing our plugin!
Since we do not have video tutorial, we recommend you to take a look at our documentation: https://documentation.bold-themes.com/cost-calculator/getting-started/ (e.g. it might be helpful to import demo and then modify one of demo calculators)
If you have any additional questions, please submit a ticket here, our support team will be happy to help: https://boldthemes.ticksy.com/
Kind regards,
BoldThemes team
I found it very complicated the general interface of this plugin. I am not going to use it. Please send me the link to proceed with a refund. Thanks.
Here it is: https://themeforest.net/refund_requests/new
Hi I see an Error in the debug.log. I am using the latest version. Fatal error: Class “Puc_v4p11_UpgraderStatus” not found
Thanks, Philipp
Hi,
We can not recreate the issue in our environment. It seems something specific to yours.
Can you please send us ftp and wp-admin access using the contact form on our profile page – https://codecanyon.net/user/boldthemes (right hand sidebar) and our support team will take a closer look at the issue?
Kind regards,
BoldThemes team
Thanks for the support. If it is only in my environment then there is no need to take a closer look at this 
Hi,
The class is autoloaded, and the only viable explanation is that the related autoloader code does not work for some reason (php version, other plugins etc…)
Do you have any other warnings or deprecated php notices in the log that might be related?
Kind regards,
BoldThemes team
Anybody else having trouble using translations? I created mo/po and tried every folder… nothing works. I tried using Poco Translate to create a translation, same problem.
Hi,
Thanks for the purchase
Please submit a ticket at https://boldthemes.ticksy.com/ and leave your wp-admin credentials and site url. Our support team will take a closer look at it.
Kind regards,
BoldThemes team
Where can i download the old version? the latest version not working properly for my goal..i need version 2.4.6
Hi,
We have version 1.4.0, 2.4.1 and 2.4.3 available in our version archive.
If one of them does the job, please send us and email using contact form on our profile – https://themeforest.net/user/boldthemes (right hand sidebar) and we will send you the download link.
Kind regards,
BoldThemes team
Good day. Can your cost calculator work like this website: https://www.alexandersprestige.co.uk/vehicle/2018-18-bmw-m4-cs/#financeCalculator
Hi,
Thanks for contacting us.
Our Cost Calculator plugin features one figure as a result. As a consequence, the monthly payment would be fairly straightforward to implement. On the other hand the summary section below would not.
Kind regards,
BoldThemes team
Hi! Is there a way to download older versions of the plugin? Since we have installed the newer version, our calculator isn’t working 100% correct anymore. Thx in advance!
Hi,
No, there are no older versions available. What kind of issue are you experiencing with the new version of the calculator?
Kind regards,
BoldThemes team
Hi, when you would look at the bottom of this page you see a calculator. The issue lays in the three first fields (https://www.solar-batteries.be/thuisbatterij/).
First field users could choose “monofasig” or “driefasig”. According the choice field 2 or field 3 should be hidden (mono or driefasig). This worked earlier, but suddenly doesn’t anymore. Thx in avance!
Hi,
From what we can see on our end (tested in Chrome and Safari), the field 2 and field 3 are being hidden or reveled based on the choice of the first field, and everything seems to be working normally.
Perhaps we are missing something though.
We can see two possible reasons why you might be experiencing an issue:
1) Browser cache (we have to mention this one) – have you cleared the browser cache after the update (it might be that you are still loading the old version of JavaScript)?
2) JavaScript exception on the page preventing the rest of the JavaScript (including Cost Calculator) from working normally. currently we can see the following exception in JS console happening on page load:
Uncaught ReferenceError: et_animation_data is not defined
at HTMLDocument.<anonymous> (thuisbatterij/:1468:21)
Please inspect your JS Console (in dev tools of your browser) and check if there are any other exceptions besides this one.
Kind regards,
BoldThemes team
hi team can you help me with something please? When we have many options in cost calculator and we have overflow ok when i put my curson or and scroll down instead of scrolling down the options its scrollign down my page so someone must go and click on the small sidebar to scroll down and thats not possible in ipad i tried zindex but not working any ideas how to? It was working normally but after last update its not.Thanks.
Hi,
Can you send us the url of the page with the calculator so we can take a closer look at the current setup.
Kind regards,
BoldThemes team
Do you have an email where i can send?
Hi,
You can use the form on our profile page: https://codecanyon.net/user/boldthemes (right hand sidebar)
Kind regards,
BoldThemes team
Done.
Hi,
We have replied to your email. The issue is caused by the Animation addons for elementor pro plugin. The details are in the email
Kind regards,
BoldThemes team
Hi totals and some info is not displaying with Contact Form 7. I see you added new version but when I download from themeforest I still get 3.0.0. Can you check if on Themeforest there is latest version with CF7 fix?
Hi,
Thanks for the heads up.
We have escalated the issue to our developers, and we will check the current status ASAP and let you know.
Sorry for the inconvenience
Kind regards,
BoldThemes team
Hi,
Just to let you know that we have release the version 3.0.2 yesterday which should contain both the proper version number in the meta tags as well as fixes related to CF7 integration.
Kind regards,
BoldThemes team
Hi 3.0.2 does not fix the issue when using CF7 as the problem remains where totals are not displayed in the sent email. Can we get a version before 3.0? Thank you
Hi,
We have escalated the issue again to our developers.
In the meantime, please use the contact form on our profile page – https://codecanyon.net/user/boldthemes (right hand sidebar) to send us an email and we will send you the link to the 2.4.6 download
Sorry for the inconvenience.
Kind regards,
BoldThemes team
Hi,
You can send us the url of the site and wp-admin credentials using the contact form on our profile page – https://codecanyon.net/user/boldthemes (right hand sidebar) and we will take a closer look at the current setup.
Kind regards,
BoldThemes team
adding payment gateways will make this product HOT SELLING & Popular for sure, please think about integrations like Stripe, Razorpay or Phonepe or any other international gateways.
Hello, whats the problem? https://scrnli.com/files/44HYIFdX8Hj3J5
Hi,
We really can not say from the partial screenshot, but this seems as an error message coming from hoteller_elementor plugin.
Can you provide url to the page?
Kind regards,
BoldThemes team
hello, sorry wrong link.. please check here https://scrnli.com/files/Q1z2lku88JX04Y
Hi,
It seems that you have set the initial item index of one of your Drop Down controls to non existing value
Kind regards,
BoldThemes team
can you check for me please what’s the problem? because i check all controls have a value
Hi, i manage to solved the problem.. now all working! thank you for your time and help!
Hi,
Great, we are glad we were able to assist.
Kind regards,
BoldThemes team