MoxyPress
Forum Replies Created
-
Forum: Plugins
In reply to: [FT QuickLogin by FlareThemes.com] Optional "welcome back" popup window?Hi fvsslo,
Firstly I would like to apologize for the lack of support. We have recently taken over FlareThemes and we have been busy updating the themes, framework and plugins and rebranding.
Until we complete the relaunch which includes a support center, from now on I will monitor this account regularly and try my best to offer support here.
How to turn off ‘Welcome Back Box”
To get rid of the welcome back box you will need to edit ft-quicklogin-box.php on line 47
before
<input type="hidden" name="redirect_to" value="<?php echo fql_get_current_url() . '#fql-box-message-login'; ?>" />
after
<input type="hidden" name="redirect_to" value="<?php echo fql_get_current_url(); ?>" />
This method will work for the other boxes for Registration & Lost Password too.
I will be releasing an update shortly with more options including the ability to turn the boxes on/off, add custom notices in the box or simply redirect to a specific page or post.
Darren
Hi ericampleman,
You can redirect to any page after the following actions;
-
Login
Registration
Lost Password RequestTo change the redirect on login you will need to edit ft-quicklogin-box.php Line 47
before
<input type="hidden" name="redirect_to" value="<?php echo fql_get_current_url() . '#fql-box-message-login'; ?>" />
after
<input type="hidden" name="redirect_to" value="/blog" />
Just change ‘/blog’ to the page you want to redirect to.
We have recently taken over this plugin and I am not the original developer but I will be adding add a few more plugin options and custom redirect is one of them.
For the time being, this method will work.
Forum: Fixing WordPress
In reply to: I want it to show full size images!@dallasgirlfriday – as TrulyMinimal (the theme you are currently using) is not part of the www.ads-software.com theme respository we offer support strictly on our website.
Please fill out the form located at https://www.flarethemes.com/contact-us/ and our support team will help you sort out your issues.
-Tom
@lafanter – if it’s working correctly locally, it should work without issues on your server too.
Revert to the default wordpress theme and see if the issue persists. If it doesn’t persist the issue might be with your current theme.
If the issue persists recheck your wordpress settings
i’ve just tested things and everything is working fine on our end
https://testdrive.flarewp.com/quicklogin/2012/06/27/hello-world/#
@vernal – thanks for the feedback! I’ve noted your request and will consider it for the next release
@planetshaker – noted!
the next version will probably come out next month
Hi RT78,
at this point QuickLogin doesn’t offer this feature.
I’ve noted your feature request, and will consider implementing it in a future release.
@ MomDad
Thanks for your feedback. We’ll implement this feature in the next release.
Meanwhile, you can create custom menus and add a custom target to show one of the authentication boxes.
You can also insert a html link in the theme adding a “rel” tag.These are the custom targets and “rel” tags.
"fql-login" - Login Box "fql-register" - Register Box "fql-lost-password" - Lost password Box.
For example, if you want to add a link which shows the login lightbox you can insert this code:
<a href="#" rel="fql-login">Log in</a>