Frederic Serva
Forum Replies Created
-
Forum: Plugins
In reply to: [Birds Custom Login] white screenUpdate published…
Forum: Plugins
In reply to: [Birds Custom Login] white screenOK, thanks!
It’s just a conflict between two plugins who declare functions with same names.
I’m working on it and publish a fix within a day.Forum: Plugins
In reply to: [Birds Custom Login] white screenCould you please turn on the debug mode in your wp-config.php?
define('WP_DEBUG', true);
Then activate the plugin and copy/paste the error message here
Forum: Plugins
In reply to: [Birds Author Box] Design of plugin breaks on my siteIt’s a CSS issue.
Your theme is overriding some CSS of the plugin.To correct this:
Open authorbox_front.css (in the ‘/wp-content/plugins/birds-author-box/public/css’ directory)
Find line 86 and change
margin-bottom: -47px;
to
margin-bottom: -57px;
Find line 91 and change
list-style-type: none;
to
list-style-type: none !important;
After line 104, add a new line and type
margin-left: 0 !important;
Save the file.
That should do the trick!Forum: Plugins
In reply to: [Birds Custom Login] Blue lineYou’re welcome!
Thanks for you review!Forum: Plugins
In reply to: [Birds Author Box] Author Box apprearing twiceIn addition, you could change the css of the box to fit your theme.
Open authorbox_front.css in the folder ‘public/css’ of the plugin.
Find line 100 (.author_box_tabs_navigation li)
Add a new line after this one and type:list-style: none;
Go to line 86 and replace
margin-bottom: -47px;
with
margin-bottom: -48px;
Forum: Plugins
In reply to: [Birds Author Box] Author Box apprearing twiceIt’s not a ‘Birds Author Box’ issue…
In the Theme Options panel of your theme, fastnews, there is a textarea where you can change the content of your footer.
On the frontend, the theme not only displays this text but also everything that has been added by plugins that use the add_filter method to display their own code after the post content is loaded.So…
Don’t use this textarea anymore.
Open the file named footer.php in your theme directory (wp-content/themes/fastnews-1.0.6).
Go to line 105 and change<div class="wrapper text-center" id="copyright"><?php echo $kopa_theme_options_copyright; ?></div>
with
<div class="wrapper text-center" id="copyright">Copyright ? <?php echo date("Y"); ?> . All Rights Reserved. Seastrata Energy Ltd</div>
Save the file.
That should do the trick with Author Box and other plugins.Forum: Plugins
In reply to: [Birds Custom Login] Blue lineNew feature added in version 1.0.4
Forum: Plugins
In reply to: [Birds Custom Login] Blue lineIn the next update, you’ll be able to control this blue line.
In the meantime, you can open apply-css.php (in the ‘admin/settings’ folder).
Go to line 429, then add, AFTER this line:.login .message { border-left: 4px solid PUT_THE_HEX_CODE_OF_THE_COLOR_YOU WANT_HERE !important; }
Forum: Plugins
In reply to: [Birds Portfolio] PaginationHI!
As mentioned in the plugin description, The plugin comes with some basic built-in templates…
This means YOU have to modify the files to fit your needs.
You’ll find them in the ‘/assets/templates/’ folder of the plugin.If you’re a newbie to WordPress development or don’t know how to do that, ask a WordPress developer to do it for you.
I don’t provide customization for my plugins.Forum: Plugins
In reply to: [Birds Custom Login] white screenStill no one?
I’m closing this.I’ve tested, tested and tested again…
Everything seems to work fine.
Could you PM me via my website? (link in the description tab of the plugin)Forum: Plugins
In reply to: [Birds Custom Login] white screenCan’t answer without context…
Version 1.0.5 on its way ??
Forum: Plugins
In reply to: [Birds Author Box] Bunched Up Bio/Social/Latest Posts on MobileI’ve just released an update to change the way the avatar picture is displayed on mobile screen.
Hope this will be OK for you!This update adds also some color customization…