Dragan Nikolic
Forum Replies Created
-
Forum: Plugins
In reply to: [Fancier Author Box by ThematoSoup] Add author email?You can use author description to insert your email. I don’t see any other way.
Jim,
The bullet character is added by your theme to list elements.
Here’s the CSS that’s been doing that.
.art-post ul > li { background-image: url('images/postbullets.png');
Our developer will give you instructions on how to disable it from appearing in Author Box if you’d like.
Hi Jim,
That is a way to do it if you want it shown on certain pages only.
Unfortunately, shortcode option is reserved for the premium version called Fanciest Author Box.
Sorry if this limitation affects your project.
Thanks Jim.
Enjoy your day.
Jim,
The rel=author has been included. You just need to enter your Google+ ID and that’s it.
The only other thing you need to do is connect your Google+ account to your website, but you do that from within Google+ dashboard.
Cheers
Thanks a bunch Henning,
I’ll take a look at the website.
Hello Henning,
It’s difficult to give any pointers until the website is live.
Regarding the screenshot tool, don’t mention it.
Best
Hi,
Just tested the plugin (Fancier Author Box v1.0.2) on my personal blog (latest WordPress 3.4.2 and default 2011 theme). Everything looks normal.
Looks like you did something to CSS that displays author box plugin like that.
Here’s the screenshot.
Hi,
The second author box is the one you have to disable in your theme options.
If the option is unavailable you have to contact the theme author and ask how do it manually.
… and thanks for using Fancier Author Box.
hiboy,
Your author archives have been disabled, probably by an SEO or some other plugin.
You have to find what’s causing this and enable author archives in order for everything to work.
Hi Lisa,
I don’t see the thing you’re describing on your website.
Where exactly is this happening? Which posts or which URLs?
Thanks
Hi,
Thanks for using Fancier Author Box.Unfortunately, free version of the plugin doesn’t have that feature.
My pleasure.
Glad you succeeded.
Fancier Author Box comes at the end of the_content function and related_posts always come after that, so it’s not possible to do this.
The premium version, Fanciest Author Box, does have a shortcode and a template tag which would work for you, but that’s a different story.
You could try inserting related posts into the_content function and then
add_filter( 'the_content', 'ts_fab_add_author_box', 1000 );
should work.Regarding the css changes you made, no problem, you can alter it any way you want. We also plan on implementing an option of hiding that “recent posts” tab in one of the future updates.
Try editing the code in line 143 in ts-fab.php
right now it’s:
add_filter( 'the_content', 'ts_fab_add_author_box' );
should be like this:
add_filter( 'the_content', 'ts_fab_add_author_box', 1000 );