Plugin Directory

Changeset 3394489


Ignore:
Timestamp:
11/12/2025 04:18:47 PM (5 months ago)
Author:
kaminsky.m
Message:

2.26 release

Location:
ajax-login-and-registration-modal-popup/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ajax-login-and-registration-modal-popup/trunk/ajax-login-registration-modal-popup.php

    r3208242 r3394489  
    11<?php
    22/**
    3     Plugin Name:    AJAX Login and Registration modal popup DEV + inline form
     3    Plugin Name:    AJAX Login and Registration modal popup + inline form
    44    Plugin URI:     https://maxim-kaminsky.com/shop/product/ajax-login-and-registration-modal-popup-pro/
    55    Description:    Easy to integrate modal with Login and Registration features + inline form using shortcode.
    6     Version:        2.25
     6    Version:        2.26
    77    Author URI:     http://maxim-kaminsky.com/
    88    Author:         Maxim K
  • ajax-login-and-registration-modal-popup/trunk/includes/class-core.php

    r3208242 r3394489  
    5353        }
    5454
     55        add_action('init', array($this, 'init_action'), 10);
     56
    5557        new LRM_Admin_Menus();
    5658
     59        LRM_Pages_Manager::init();
     60
     61        LRM_Import_Export_Manager::init();
     62    }
     63
     64    public function init_action(){
    5765        WP_Skins_Customizer::init();
    5866        LRM_Skins::instance()->load_defaults();
    59 
    60         LRM_Pages_Manager::init();
    61 
    62         LRM_Import_Export_Manager::init();
    6367    }
    6468
  • ajax-login-and-registration-modal-popup/trunk/readme.txt

    r3208242 r3394489  
    33Tags: login, registration, register, lost password, modal, popup, ajax
    44Requires at least: 4.1
    5 Tested up to: 6.7.1
    6 Requires PHP: 5.5
     5Tested up to: 6.9.0
     6Requires PHP: 7.0
    77Stable tag: trunk
    88License: GPLv3 or later
     
    2020
    21211. Easy to integrate (as modal or inline via shortcode)
    22 2. Well customizable
     222. Well customized
    23233. 100% responsive
    24 4. Beautiful coded
     244. Beautifully coded
    25255. Compatible with other plugins (WooCommerce, BuddyPress, Ultimate Member, WPML, etc)
    26 6. Tested with latest WP version
     266. Tested with the latest WP version
    27277. Compatible with the Gutenberg
    28288. Possible to replace wp-login.php with a custom "Login", "Registration" and "Reset password" pages
    29 9. Skins support (1 default skin + 2 new in PRO version) + possible to customize Skins colors via WP Customizer
     299. Skins support (1 default skin + 2 new in a PRO version) + possible to customize Skins colors via WP Customizer
    303010. Powerful after-login/registration/logout actions (reload, redirects, etc)
    31 11. Role based redirects (in PRO)
     3111. Role-based redirects (in PRO)
    323212. In-build reCaptcha & MatchCaptcha (in PRO)
    333312. Google Authenticator plugin & Wordfence 2FA support (in PRO)
     
    5454**Roadmap**
    5555
    56 * +Allow to include form to page content (without modal) (done in version 1.41)
     56* +Allow including form to page content (without modal) (done in version 1.41)
    5757* +Colors/styles customizer [implemented via WP Customizer]
    5858* +Documentation and Videos [done] - https://docs.maxim-kaminsky.com/lrm/
     
    6363= PRO features =
    6464
    65 * 6 months personal support from developer via Email
     65* 6-month personal support from the developer via Email
    6666* Troubleshooting problems and conflicts with other plugins/themes
    6767* Unlimited plugin updates
     
    7070**The PRO version extra features:**
    7171
    72 1. Allow user set custom password (not random generated) during registration
    73 2. Redirect user to specified page after login/registration/logout (for example to the User Profile)
     721. Allow user to set a custom password (not randomly generated) during registration
     732. Redirect the user to the specified page after login/registration/logout (for example to the User Profile)
    74743. User verification via click on the link in registration email
    75754. Email only registration - hide username filed from registration form
    76 5. Customize buttons color in [WP Customizer](https://docs.maxim-kaminsky.com/lrm/kb/how-to-customize-form-colors-pro-only/)
     765. Customize button color in [WP Customizer](https://docs.maxim-kaminsky.com/lrm/kb/how-to-customize-form-colors-pro-only/)
    77776. [Request other feature >>](https://maxim-kaminsky.com/shop/contact-me/)
    7878
     
    116116{{SITE_NAME}}
    117117**As modal:**
    118 Just add class `lrm-login` to the `<button>` or `<a>` element for show login tab or `lrm-signup` for registration tab.
     118Add class `lrm-login` to the `<button>` or `<a>` element for show login tab or `lrm-signup` for registration tab.
    119119
    120120Example: `<a href="/wp-login.php" class="lrm-login">Login</a>`
     
    140140Thanks to Kash Monsefi for a report.
    141141
    142 = How can I add log out link/button? =
     142= How can I add a log out link / button? =
    143143
    144144Please read this post: https://wordpress.org/support/topic/logout-link-8/#post-10180543
    145145
    146 = How can I call modal from Javascript? =
    147 
    148 Look at "Developer hooks" section below.
     146= How can I call modal from JavaScript? =
     147
     148Look at the "Developer hooks" section below.
    149149
    150150= Developer hooks =
     
    152152*Javascript*
    153153
    154 For add your hook when user successful logged in/registered use action "lrm_user_logged_in"
     154To add your hook when user successfully logged in/registered use action "lrm_user_logged_in"
    155155`
    156156jQuery(document).on('lrm_user_logged_in', function(response, $form) {
     
    20320317. Admin settings - Registration user role [PRO]
    20420418. Admin settings - Security (captcha) [PRO]
    205 19. Registration with Password field [PRO]
     20519. Registration with the Password field [PRO]
    206206
    207207== Known issues ==
     
    210210
    211211== Changelog ==
     212
     213= VER 2.26 - 12/11/2025 =
     214
     215- Tested with WordPress version to 6.9
     216- Tested with PHP 8.4 & tweaks
     217- Spelling tweaks
    212218
    213219= VER 2.25 - 15/12/2024 =
     
    238244= VER 2.21 - 08/10/2021 =
    239245
    240 - Up WP tested version to 5.8.1
     246- Up WP tested a version to 5.8.1
    241247
    242248= VER 2.20 - 13/02/2021 =
Note: See TracChangeset for help on using the changeset viewer.