Plugin Directory

Changeset 3327581


Ignore:
Timestamp:
07/14/2025 02:38:52 PM (8 months ago)
Author:
worldweb
Message:

2.0.3 (July 14, 2025)

  • Fix: Browser compatibility issue with field slider input
  • Fix: Dashboard notification
Location:
loan-calculator-wp
Files:
70 added
5 edited

Legend:

Unmodified
Added
Removed
  • loan-calculator-wp/trunk/includes/admin/class-loan-calculator-admin.php

    r3209029 r3327581  
    6262                        $display_notice_yes = get_option('lc_rating_notice');
    6363                        $last_notice_timestamp = get_option('last_notice_timestamp');
    64                         $future_popup_date = strtotime("+7 days");
     64                        $future_popup_date = strtotime("+7 days",$last_notice_timestamp);
     65                        $current_time = strtotime('now');
    6566
    6667                        if (get_option('plugin_activation_time')) {
     
    7980
    8081                                <?php
    81                             } else if ($last_notice_timestamp >= $future_popup_date && $avoid_notice == 1) {
     82                            } else if ($current_time >= $future_popup_date && $avoid_notice == 1) {
    8283                                ?>
    8384
  • loan-calculator-wp/trunk/includes/admin/forms/theme-templates/new-theme/css/style.css

    r3209029 r3327581  
    4040}
    4141.loan-option-text-info .slider::-moz-range-thumb {
    42     width: 11px !important;
    43     height: 25px !important;
    44     background: #4caf50;
     42    width: 25px;
     43    height: 25px;
     44    background: var(--calc-background-color);
     45    border-radius: 50%;
    4546    cursor: pointer;
     47    border: none;
     48    border: none !important;
     49    margin-top: 0;
    4650}
    4751.tabs-dropdown {
  • loan-calculator-wp/trunk/includes/css/frontend-style.css

    r3245518 r3327581  
    3030
    3131.ctm_main_wrap .slider::-moz-range-thumb {
    32     width: 11px;
     32    width: 25px;
    3333    height: 25px;
    34     background: #4caf50;
     34    background: var(--calc-background-color);
     35    border-radius: 50%;
    3536    cursor: pointer;
     37    border: none;
     38    border: none !important;
     39    margin-top: 0;
    3640}
    3741
  • loan-calculator-wp/trunk/loan-calculator-wp.php

    r3324153 r3327581  
    44 * Plugin URI: https://www.worldwebtechnology.com/
    55 * Description: Advanced Loan Calculator for Home Loans, Personal Loans, and various other types of loans. Includes features like a repayment chart, amortization table, video tab, balloon payment option, and supports all currencies. Use the contact form shortcode for easy access.
    6  * Version: 2.0.2
     6 * Version: 2.0.3
    77 * Author: World Web Technology
    88 * Author URI: https://www.worldwebtechnology.com/
     
    2727 */
    2828if (!defined('WW_LOAN_CALCULATOR_VERSION')) {
    29     define('WW_LOAN_CALCULATOR_VERSION', '2.0.2'); //version of plugin
     29    define('WW_LOAN_CALCULATOR_VERSION', '2.0.3'); //version of plugin
    3030}
    3131if (!defined('WW_LOAN_CALCULATOR_TEXT_DOMAIN')) { //check if variable is not defined previous then define it
     
    298298    $plugin_activate_time =  strtotime( "now" );
    299299    update_option( 'plugin_activation_time', $plugin_activate_time );
    300     update_option( 'lc_avoid_notice', 0 );
    301     update_option( 'lc_rating_notice', 0 );
    302     update_option( 'last_notice_timestamp', 0 );
     300    $lc_avoid_notice = get_option('lc_avoid_notice');
     301    if ($lc_avoid_notice === false) {
     302        update_option('lc_avoid_notice', 0);
     303    }
     304    $lc_rating_notice = get_option('lc_rating_notice');
     305    if ($lc_rating_notice === false) {
     306        update_option( 'lc_rating_notice', 0 );
     307    }
     308   
     309    $get_last_notice_avoid_time = get_option('last_notice_timestamp');
     310    if ($get_last_notice_avoid_time === false) {
     311        update_option( 'last_notice_timestamp', 0 );
     312    }
    303313}
    304314
  • loan-calculator-wp/trunk/readme.txt

    r3324153 r3327581  
    1010Requires PHP:      7.4
    1111Tested up to:      6.8
    12 Stable tag:        2.0.2
     12Stable tag:        2.0.3
    1313License:           GPLv2 or later
    1414License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    15 Version:           2.0.2
     15Version:           2.0.3
    1616
    1717Loan / EMI Calculator for Home Loan and Personal Loan
     
    129129== Changelog ==
    130130
    131 = 2.0.2 (July 8, 2025) =
     131= 2.0.3 (July 14, 2025) =
     132* Fix: Browser compatibility issue with field slider input
     133* Fix: Dashboard notification
     134
     135= 2.0.2 (July 7, 2025) =
    132136* Fixed activation issue with the Pro plugin
    133137
Note: See TracChangeset for help on using the changeset viewer.