aviplugins.com
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type Attachment] Hidden files?this topic is resolved.
Forum: Plugins
In reply to: [Facebook Login Widget] Doesn't workthis topic is resolved.
Forum: Plugins
In reply to: [Facebook Login Widget] Username when registeringthis topic is resolved.
This topic is resolved.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Styling???This topic is resolved.
Forum: Plugins
In reply to: [Facebook Login Widget] Nothing happenedPlease check if you are using the correct widget.
Forum: Plugins
In reply to: [Custom Post Type Attachment] Hidden files?All the files are stored in the same folder but for the hidden files a Custom text message will be displayed at the place of the download link. So that users will not be able to download the file. The text message can be set from admin panel.
The file link is not visible to users so users cannot find the actual path where the file is stored.
Forum: Plugins
In reply to: [Custom Post Type Attachment] Hidden files?The pro version of this plugin has this feature.
Forum: Plugins
In reply to: [Login Widget With Shortcode] not fully logging in properly…The update is made.
Forum: Plugins
In reply to: [Facebook Login Widget] "couldn't connect to host" errorI need to see the plugin in your site to check what is the problem.
Actually the plugin should hit
https://fifa15arg.wc.lt/wordpress/?option=fblogin this URl internally and after successful login it should be redirected to your home page.Forum: Plugins
In reply to: [Login Widget With Shortcode] not fully logging in properly…Actually when loggin in user from the front end the admin panel authentication cookie is not set. So the user is logged in to the front end only.
To resolve this problem please open the file login_afo_widget.php and go to line no 170
if($user->ID == ""){ $_SESSION['msg_class'] = 'error_wid_login'; $_SESSION['msg'] = __('Error in login!','lwa'); } else{ wp_redirect( $_POST['redirect'] ); exit; }
you will see a code blobk like this. change this to
if($user->ID == ""){ $_SESSION['msg_class'] = 'error_wid_login'; $_SESSION['msg'] = __('Error in login!','lwa'); } else{ wp_set_auth_cookie($user->ID); wp_redirect( $_POST['redirect'] ); exit; }
The problem will be resiolved. I will fix this in the next update of the plugin.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Styling???CSS can be added from plugin settings page in admin panel..
Forum: Plugins
In reply to: [Facebook Login Widget] Username when registeringYes.
That can be done but for that the plugin coding needs some modifications. If you want more information in this please contact me at [email protected]Forum: Plugins
In reply to: [Login Widget With Shortcode] social login ?The PRO version of the plugin supports social login features. you cat get it from here
Forum: Plugins
In reply to: [Login Widget With Shortcode] default zone localization errorThe “Forgot Pasword?” is not added in the PO file. I will add that in the next update.
You can add translation for the “Forgot Pasword?” in the “.PO” file and then convert that to the “.MO” file.