John U
Forum Replies Created
-
A recent patch to our css fixed this issue. Our calculators will still resize vertically if the answer output is too long, as some users prefer this functionality.
Sideways overflow will no longer happen–a scroll bar will appear.
If you don’t want your calculator resizing vertically, try putting it inside a fixed div with
overflow: auto;
on it.If you go to our site at https://www.calculatorpro.com we have an option to override the text on calculator inputs (so you could change “Enter the number of feet” to “Enter the number of meters”).
We also make custom calculators for clients. If you are interested in a complete metric calculator please go to our contact page https://www.calculatorpro.com/contact/ and send us an email!
If you copy calculator code for you site directly from our website at https://www.calculatorpro.com you can add default values to inputs.
For instance, the code for the Commission Calculator is:
<div class="cp-calc-widget" data-calcid="1470" data-anchor="6" data-hash="6077"></div><a href="https://www.calculatorpro.com/calculator/commission-calculator/">Online Calculator</a><script src="//www.calculatorpro.com/wp-content/plugins/calcs/js/widgetV4.min.js"></script>
You can then add a comma delimited string for default values. Leave a section blank to have no default values.
data-defaultvalues=",5"
So the code will appear as:
<div class="cp-calc-widget" data-calcid="1470" data-anchor="6" data-defaultvalues=",5" data-hash="6077"></div><a href="https://www.calculatorpro.com/calculator/commission-calculator/">Online Calculator</a><script src="//www.calculatorpro.com/wp-content/plugins/calcs/js/widgetV4.min.js"></script>
Then the calculator will load with the default value pre-injected. See the screenshot (the 5 was loaded automatically). https://screencast.com/t/gyecd84Xr6v
Forum: Plugins
In reply to: [CalculatorPro Calculators] [Plugin: CalculatorPro Calculators] errorWe are sorry for this error, but yes, it has been fixed!
Please upgrade to the newest version of the plugin.
Forum: Plugins
In reply to: [CalculatorPro Calculators] colors not updatingThe calculator settings for this plugin apply to all calculators on your site.
If you would like to have several calculators, each with its own customizations, go to https://www.calculatorpro.com and copy calculator code directly from our site.