Forum Replies Created

Viewing 15 replies - 1 through 15 (of 273 total)
  • Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi @prandrews73 @em-m @crzyhrse , thanks for your patience. Our plugin was restored with latest version and I hope you all have updated with latest version and enjoying our plugin.

    Thanks again for your valuable feedback. I would request you to leave your valuable feedback by giving best rate to our plugin.

    Thanks
    Raghu

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    hi @sansolo , Thanks for your message. We have tested our plugin for mobile and desktop and it’s working fine. Some time due to js conflict such issue can come. If you can share your site link then we can review it and let you know cause of the issue for mobile.

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi @sansolo , Do you want login through the mobile OTP ? or any other issue you are facing with plugin? could you please explain the issue so that we can help you in proper way. Currently we are providing only email otp feature for our customers. if you are looking for mobile OTP login solution then please contact us at [email protected] for mobile otp login solution. Also as your review is first for our plugin so it does matter for us. I would humble request you to review your rating feedback again and provide best rating to our plugin.

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi @prandrews73 @crzyhrse @em-m , we are sorry to hear that you are facing issues due to our plugin. Your feedback is most valuable for us to make our plugin more secure and smooth, so thanks to all for your valuable le feedback. You all can contact us at [email protected] to resolve such security issues on priority basis. Issue was coming only for admin area so without login in admin spam user can’t access the ajax based url so don’t worry we are here always to caring you. But Anyway we have fixed the “Cross-site-Scripting” issue and released new version with some advance features. currently our plugin is under review for security checkup. please update the plugin when it will be ready for download.

    Thanks again for your valuable feedback.

    Thanks

    Raghu
    https://www.wp-experts.in

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi @te5la, we are sorry to hear that you are facing issue with our plugin. Could you please explain the issue little more and share your website link so that we can help you to solve the issue. And it will be helpful for other users as well.

    You can send your query directly on our email [email protected]

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi @theloot52, Thank you for your valuable feedback.

    Thanks
    WP-EXPERTS.IN Team

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi @giftieco, Thank you so much for your valuable feedback and suggestions. We have noted your suggestions and in new version we will add suggested features in our plugin add-on

    Customer suggestions are key to success any business.

    You can visit our official site to know about other WordPress plugins.
    https://www.wp-experts.in/products/

    Thanks
    WP-EXPERTS.IN Team

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi Martin, we are really sorry to hear you are facing issue and not got any response from our team on mail. actually we have seen your message during plugin weekly review and checked your request in our mail box, it was in spam folder that’s why we have missed it.

    we have sent you email, please check your inbox and reply. we will try to reply you asap and will resolve your issue. To avoid spam delay related issue please cc email at [email protected] as well.

    We are looking forward to hear you soon.

    Thank you

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    We are sorry to hear that you are facing issue due to our plugin. I want to let you know that in wordprsss 5.6 version WordPress has done major changes to flush the custom rewrite and that’s why after update WordPress to 5.6 htaccess file is going to reset with default rewrite rules code. Due to these changes mostly all rewrite rules related plugin impacted.

    Please replace existing code of your htaccess file

    
    #This Apache config file was created by Duplicator Installer on 2020-09-22 13:50:01.
    #The original can be found in archived file with the name htaccess.orig
    # BEGIN WordPress
    # Les directives (lignes) entre ??BEGIN WordPress?? et ??END WordPress?? sont générées
    # dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.
    # Toute modification des directives situées entre ces marqueurs sera surchargée.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    


    With this one

    
    #This Apache config file was created by Duplicator Installer on 2020-09-22 13:50:01.
    #The original can be found in archived file with the name htaccess.orig
    # BEGIN WordPress
    # Les directives (lignes) entre ??BEGIN WordPress?? et ??END WordPress?? sont générées
    # dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.
    # Toute modification des directives situées entre ces marqueurs sera surchargée.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteRule ^myadmin/?$ /wp-login.php [QSA,L]
    RewriteRule ^myadmin/register/?$ /wp-login.php?action=register [QSA,L]
    RewriteRule ^myadmin/lostpassword/?$ /wp-login.php?action=lostpassword [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    

    NOTE: Don’t forget to update the value of new admin slug i.e myadmin with your own new admin slug that had added during setup new admin url.

    For any query you can contact us at [email protected]

    Many Thanks
    Raghunath

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi Pivonka, We are sorry to here that you are facing issue with latest WordPress 5.6 version. WordPress has released some major changes in 5.6 that’s why problem is coming with all security related plugin.

    Please add given below code into your htaccess file to make plugin working properly.

    ‘RewriteRule ^admin_slug_goes_here/?$ /wordpress/wp-login.php [QSA,L]
    RewriteRule ^admin_slug_goes_here/register/?$ /wordpress/wp-login.php?action=register [QSA,L]
    RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wordpress/wp-login.php?action=lostpassword [QSA,L]

    Sample Code

    ‘# BEGIN WordPress
    # The directives (lines) between “BEGIN WordPress” and “END WordPress” are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteRule ^admin_slug_goes_here/?$ /wp-login.php [QSA,L]
    RewriteRule ^admin_slug_goes_here/register/?$ /wp-login.php?action=register [QSA,L]
    RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wp-login.php?action=lostpassword [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress’

    Note: Please don’t forget to replace “admin_slug_goes_here” value as per your new admin slug

    You can send your query directly to us at [email protected]

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    we are sorry to hear that you are facing issue with latest version of wp 5.6.

    @popallo @rdhtdr you can add given below code directly into your htaccess file to make plugin working properly.

    
    RewriteRule ^admin_slug_goes_here/?$ /wordpress/wp-login.php [QSA,L]
    RewriteRule ^admin_slug_goes_here/register/?$ /wordpress/wp-login.php?action=register [QSA,L]
    RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wordpress/wp-login.php?action=lostpassword [QSA,L]
    

    Sample Code

    # BEGIN WordPress
    # The directives (lines) between "BEGIN WordPress" and "END WordPress" are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteRule ^admin_slug_goes_here/?$ /wp-login.php [QSA,L]
    RewriteRule ^admin_slug_goes_here/register/?$ /wp-login.php?action=register [QSA,L]
    RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wp-login.php?action=lostpassword [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Note: Please don’t forget to replace “admin_slug_goes_here” value as per your new admin slug

    You can send your query directly to us at [email protected]

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi thanks for report the issue.
    We have fixed the issue in version 1.9 , please update plugin with latest one.
    https://www.wp-experts.in/products/wp-categories-widget-addon/

    Feel free to contact me for any query.

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Hi there, Thanks for your message. If you want to make widget style similar to your theme design then you can do it by css code, you can override widget css using theme style.css or customize section( inline css) as well.
    If you have not css knowledge then don’t worry, we have provided an option in our plugin add-on widget to manage css from back end so you can easily manage style of your widget. please visit our official site to know more about add-on widget features

    https://www.wp-experts.in/products/wp-categories-widget-addon/

    Thanks

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Query has been solved.

    Plugin Author Raghunath Gurjar

    (@india-web-developer)

    Issue was fixed in last version.

Viewing 15 replies - 1 through 15 (of 273 total)