Libin
Forum Replies Created
-
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] sometimes can't login in at wp-adminHey Jimmy,
“Erident Custom Login and Dashboard” is handling the css part of wp-login page only.
Have you tried:
– deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
– switching to the default theme to rule out any theme-specific problems.
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] Logo & BackgroundHey Mike,
Inside the background color text box, try typing
#fefefeand then change to your desired color and save it.Let me know if this fix your problem or not.
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] Background and LogoHello Steve,
Right now this feature is not available with the plugin. But I’m developing it. You can expect this feature in upcoming release.
Stay tuned.
This issue will happen if you are upgrading from a plugin version below 3 to the new version.
Thanks for informing.
Forum: Fixing WordPress
In reply to: How to show posts from current week (Sunday to Saturday)Found the solution.
changing
'week' => date( 'W' ),to'week' => strftime( '%U' ),fixed the problem.where %U is:
Week number of the given year, starting with the first Sunday as the first week
Final code:
<?php $args = array( 'date_query' => array( array( 'year' => date( 'Y' ), 'week' => strftime( '%U' ), ), ), 'post_type' => 'stars', 'posts_per_page' => 99, 'order' => 'DEC', ); $loop = new WP_Query( $args ); ?>Agree with @rocketeerwp and @footloose. I will add this feature very soon.
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] Letting "Dashboard Settings" be defaultHello Suzanne,
Right now there is no option to get that version to default. But I will definitely try to add this option to the plugin. You can add this suggestion here
You can also get back this feature by editing the plugin files. If you want, I can work on it for you. Email me:
libin@libin.inHey @hopetommola,
This issue is no longer exists. Just make sure that you have the latest version of plugin. If all the fields are empty, please download this json file and upload it to the plugin using import feature. This file contains all default options. And then you can make your custom changes.
Sorry for the inconvenience.
Thank you.Hello,
If you delete the plugin, nothing will work. The delete data option is for cleaning up your db only.
Thank you.
Hey,
Sorry for the delayed reply.
In your theme folder, css/login.css file is there. That blue border and other options are coming from there. Take a backup of that file and delete the login.css file.
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] have to scroll to loginSuperb. I’m marking this as resolved.
Btw, your logo is missing.
http://indulgentlucie.com/wp-content/plugins/erident-custom-login-and-dashboard/images/new.jpgThis image doesn’t exist.If you love using my plugin, you can put a 5 star review over here 🙂
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] have to scroll to loginHello,
This much of css are loading extra on your login page.
#login h1:first-child a:first-child { background: url(http://indulgentlucie.com/wp-content/Cimy_User_Extra_Fields/Indulgent-lucie-Log-without-Wording-2014.jpg) no-repeat top center; background-position: center top; background-size: 1800px 1800px; width: 1800px; height: 1800px; text-indent: -9999px; overflow: hidden; padding-bottom: 15px; display: block; }I think it is loading from your theme or from another plugin. Check with your theme options first.
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] Login Form Background TransparencyHey @rocketeerwp,
The following option will work only if you are using a background color for the form. If you are using a background image for form also, try creating a semi transparent image using photoshop.
To add opacity to the form background color:
1. Goto Plugins -> Click “Edit” on Erident Custom Login and Dashboard plugin.
2. Ctrl + F and search
.login form
3. Replace the first line inside that, starting withbackground: ...with
background: rgba(0,0,0,0.5);The color given in the example is a black color with 50% opacity.
Let me know if you have any doubts.
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] A way to delete original WP Login form?We cannot delete/hide the login form using the plugin.
But you can code this to hide the form elements.
Ping me over email if you need more details:libin@libin.inForum: Plugins
In reply to: [Erident Custom Login and Dashboard] Login Form Background TransparencyHey @rocketeerwp,
Right now there is no options in the plugin to do this. But I will definitely add this feature in the next update. You can add this feature here.
If you know css, you can add this transparency by editing the plugin file as well.