liddweaver
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Javascript error stopping it workingHey Fullworks. I’m glad you were able to solve this problem for yourself. I typically direct people to the FAQ for this type of issue. I’ve included a script in the plugin to manually load the scripts.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Remove the word ‘amortized’The best way to remove the word ‘amortized’ from the text strings would be to add a filter on
rmc_localizationto make the modifications on the script localization.Barring writing any code, you can edit the strings directly in includes > function-rmc-localization.php lines 56 through 83 – keeping in mind that you will lose these changes if you update the plugin.
There is currently no way to append text to the results. For this, you will need to hack the JavaScript file js > lidd-mc.js. At about line 382, just before
// Add the summary to the page, you can concatenate your HTML to the results text:summary += '<p>Your text string</p>';- This reply was modified 8 years, 6 months ago by liddweaver.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] input down payment by percentage?Please direct all RMC Pro related questions to https://liddweaver.com
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] input down payment by percentage?I have added this as a feature request, although I am not currently working on new features. If this is a must have for you, you can create it with the pro version.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Page jumps when user clicks calculateSorry for the late response on this.
The page is likely jumping because there is a page reload. This is fallback functionality if the JavaScript isn’t loading. So, first check to see if the JavaScript file
lidd_mc.jsis loading. If it isn’t, you may need to manually load it. Please check the FAQ for instructions.Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Show result on pop up or div elementAt present, this is beyond the limitations of the plugin. However, you can hack the jQuery file lidd-ms.js to put the results wherever you want.
You can achieve the UX with a little custom CSS to hide the interest rate field and label. A savvy user can still access the underlying HTML code and change the rate there, but that is the simplest solution.
You can contact me through the liddweaver.com website for a custom solution.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] How to traslate placeholders?There are two methods for translating the time period strings, like yearly, monthly, weekly, etc.
1. There is a Spanish translation file included with the plugin. Setting your site’s language to Spanish should automatically use the Spanish translation file. Failing that, you can create your own .mo file for the language you want based on the included .po file.
2. Add a filter callback function to run on the
rmc_localizationfilter. This will allow you to modify all the remaining strings to your liking. Here’s some example code to get you started – copy and paste into your theme’s functions.php.function custom_rmc_localization( $strings ) { // Modify strings in the array $strings['yearly'] = 'anual'; $strings['monthly'] = 'mensual'; return $strings; } add_filter('rmc_localization', 'custom_rmc_localization');Forum: Plugins
In reply to: [Responsive Investment Calculator] Responsive Investment CalculatorAt the moment, the best thing you can do is hack the plugin and adapt it to your needs. It is strictly in maintenance mode with no new features being added.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Payment Period field height issueYou’re theme is probably providing default styling for the select box. Try adjusting the CSS options via the plugin settings page: Settings > Resp Mortgage Calculator.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] No spacing between form boxesIt looks like you have the CSS disabled. You can enable the CSS in Settings > Resp Mortgage Calculator. Look for the Layout & Styling section and make sure the Responsiveness checkbox is checked. Scroll down and click Save.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Notices on 404 pageFixed in v2.3.3
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Notices on 404 pageI’ll have a look.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] WP 4.7.3 Plugin Update?I will be maintaining compatability with new WP releases for the foreseeable future. You can log issues here and usually get a response within a few days.
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] Currency optionYou can edit the currency from the settings page at Settings > Resp Mortgage Calculator. Set the currency symbol, code and format as you like.