No search results were found in Documentation!
All the settings can be seen when configuring the box
– https://www.screencast.com/t/bOTMLbcko
It will show the user avatar, name, post and comment number and website link. That would all it can display.
If you require more settings and capabilities you could as well try an author box plugin, such as these maybe
– http://www.wpbeginner.com/plugins/7-best-free-author-bio-box-plugins-for-wordpress/
– https://www.shoutmeloud.com/author-box-wordpress-plugin.html
Thanks
Hi,
Thanks for the response,
So is there no way to add images and edit the author box via the theme panel/or wordpress admin panel?
Hi Simion
Thanks. How can I Change Settings of the authors box? E.g. showing the author Information, social Networks, or not Show comments and article Count?
Cheers
Hansjörg
The authors box can be placed on any row layout you want, it will look like this example
– https://www.screencast.com/t/vddhS7Lo4Lt
This element is created specifically for this task.
The team member element I suggested because it is somewhat similar to the one you mentioned. This does not have specific options to display user roles like the authors box. An image must be set manually, socials and a description text as well.
Thanks
Hi Simion
thanks. I found now the team-member function. But it is still unclear to me, how I can insert all active authors via this function in the page.
Also my question is still open, if authors box can automatically placed in more than on column.
Cheers
Hansjörg
Hi,
The authors box can be used on pages built with the composer, or as a widget in sidebars for example.
The team member is one of the many multi-purpose elements introduced in the 8.5 theme update. The multi-purpose plugin was made available, to be used together with the tagDiv composer. It ads many items and functionality to the builder
– https://www.screencast.com/t/mx9RDI5pckCr
Thanks
To disable author name on homepage and comment count, post this in Newspaper>Theme Panel>Custom Code>Custom CSS on your WordPress Dashboard
.td-post-author-name, .td-module-comments {
display: none;
}
To show a specific number of posts on the homepage, go to WordPress dashboard and click on Settings>Reading and under “Blog pages show at most” box, put the number of posts you want to show on homepage and save.
Note: If you decide to use a custom homepage, some of these settings might change.
Hi Simion
thanks
Author box would imply a manually bulding of the page, correct?
Does Authors box work with more than one column?
I cannot find the team-member function. Where do I have to look for it?
Cheers
Hansjörg
Hi,
There is an author box element, not quite similar to the implementation in that example
– https://www.screencast.com/t/Gd5GedoOAbrt
Or you could use the team member element
– https://www.screencast.com/t/EBx0eBnL
This last element has options to display the name, social links and description. Also has many design settings available.
Thanks
Hello jadmac,
If you want to add more details inside your author box, notice that you should make some changes to the code in order to achieve as you wish. Please check here -> https://www.screencast.com/t/8sh1sacz
Thanks for your understanding!
Just wondering how I go about editing author box images? Can I add bios to the area too?
Hello,
Please add this custom css code in your theme panel-> custom css box:
.author-2 .author-box-wrap .desc{
margin-left:0;
}
Thank you!
Hi,
If you are referring to the author box widget in the sidebar, there are options to hide elements based on device. Like this
– https://www.screencast.com/t/Rfz5nzLkd
– https://www.screencast.com/t/EdBDtcmR0
Thanks
Hi, I was wondering how I could align the “1 Posts” and Twitter logo to the left of the box.
Image: http://ibb.co/kAYuRw
Hi, I was wondering if it was possible to remove the “0 comments” section from the author box, or remove it entirely without removing the author name, as I have disabled comments on my site. Image: https://ibb.co/igf9Rw
Thanks, Catalin. So pretty much what I need to do is create a new sidebar widget for EVERY category and have a block custom for that one side bar?
What I has hoping is if you notice under the article there is a box that say More from this author and Related Articles that always autopopulates. I was hoping there was a universal plugin that I could do the same concept on the side.
Hello,
1. Please contact us via email at contact@tagdiv.com and provide a link to oyur site and wp-admin so we can login and investigate.
2. Use this css in the theme panel-> custom css box:
.home .td-module-date, .home .td-post-author-name span{
display:none;
}
Thank you!
Hi,
So you would like tot display a text below the author box in the post page, in the same style of the block headers. There would be a method to do that. It will require you to enter it directly in the post template file used.
Each post template has a corresponding loo-single file (Ex. post template 2->loop-single-2).
Edit the post template you want to do this for, in this example I use post template 2, this is a do_shortcode that is needed
<?php echo do_shortcode ('your code here'); ?>
Set a title element on a page and configure it as you wish
– https://www.screencast.com/t/oWqjw6Lyiudx
– https://www.screencast.com/t/hE3oDFGAD
Then enter it in the post template file (below the author box if that is where you want to show it)
– https://www.screencast.com/t/NNjdPeby
– https://www.screencast.com/t/nfhhnD7HS
– https://www.screencast.com/t/qvUaeoULH8J
The result – https://www.screencast.com/t/2bVAD95pN5
Thanks
Hello,
is there a chance to hide the “[tagDiv] Author box” widget on mobile?
Hi, did you find a solution to add the author’s last post in the Authors box?
I have not found a way to implement this.
Thank you.
<?php
/**
* The single post loop Default template
**/
if (have_posts()) {
the_post();
$td_mod_single = new td_module_single($post);
?>
<article id=”post-<?php echo $td_mod_single->post->ID;?>” class=”<?php echo join(‘ ‘, get_post_class());?>” <?php echo $td_mod_single->get_item_scope();?>>
<div class=”td-post-header”>
<?php echo $td_mod_single->get_category(); ?>
<header class=”td-post-title”>
<?php echo $td_mod_single->get_title();?>
<?php if (!empty($td_mod_single->td_post_theme_settings[‘td_subtitle’])) { ?>
<p class=”td-post-sub-title”><?php echo $td_mod_single->td_post_theme_settings[‘td_subtitle’];?></p>
<?php } ?>
<div class=”td-module-meta-info”>
<?php echo $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false);?>
<?php echo $td_mod_single->get_comments();?>
<?php echo $td_mod_single->get_views();?>
</div>
</header>
</div>
<?php echo $td_mod_single->get_social_sharing_top();?>
<div class=”td-post-content”>
<?php
// override the default featured image by the templates (single.php and home.php/index.php – blog loop)
if (!empty(td_global::$load_featured_img_from_template)) {
echo $td_mod_single->get_image(td_global::$load_featured_img_from_template);
} else {
echo $td_mod_single->get_image(‘td_696x0’);
}
?>
<?php echo $td_mod_single->get_content();?>
</div>
<footer>
<?php echo $td_mod_single->get_post_pagination();?>
<?php echo $td_mod_single->get_review();?>
<div class=”td-post-source-tags”>
<?php echo $td_mod_single->get_source_and_via();?>
<?php echo $td_mod_single->get_the_tags();?>
</div>
<?php echo $td_mod_single->get_social_sharing_bottom();?>
<?php echo $td_mod_single->get_next_prev_posts();?>
<?php echo $td_mod_single->get_author_box();?>
<?php echo $td_mod_single->get_item_scope_meta();?>
</footer>
</article> <!– /.post –>
<?php echo $td_mod_single->related_posts();?>
<?php
} else {
//no posts
echo td_page_generator::no_posts();
}
page-author-box.php nofollow work but only for author page, i need to set it up on post author box 🙂
Hi,
I believe that is the background color of the black demo. The demo has custom design, most of the theme elements are meant to be dark. The background color is added through CSS in the demo stylesheet, setting a color in the theme panel will make the website boxed.
You could set a background color for the row like this if you want it for a specific row
– https://www.screencast.com/t/KcAGaZsAT
Or if you want to change the general dark demo background color, do it in the demo stylesheet directly
– https://www.screencast.com/t/4dXQlUpAYCtH
The author name, date and comment count can be disabled in the theme panel
– https://www.screencast.com/t/vpsaxIEmj
This will affect all the website, if you want this only for a specific element I could give you a custom code. Provide a link to the page and I will give you a solution, if that is what you want to do.
Thanks
Hi,
I think the problem come from your theme, sorry
If I try to make some modifs on the file :
\wp-content\themes\Newspaper\parts\page-author-box.php
ligne 25
$comment_count = $wpdb->get_var($wpdb->prepare(“SELECT COUNT(*) AS total FROM $wpdb->comments WHERE comment_approved = 1 AND user_id = %d”, $part_cur_auth_obj->ID));
for example replace this part
$part_cur_auth_obj->ID
by
$part_cur_auth_obj->user_url
I have a number of comments who is displaying.

But not the good number, it’s the number of all the comments of the registered members. Me normally I have 235 comments in my profil.
Thank you very much
Best Regards
Hello,
The sections you want an author and date do not have them by default as a design choice. You can add them custom if you like.
Please add this css to the theme panel-> custom css box:
.td-big-grid-post.td-medium-thumb .td-big-grid-meta, .td-big-grid-post.td-small-thumb .td-big-grid-meta{
font-size: 11px;
}
And then add this code in these 2 files:
<span class="td-author-date">
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
</span>
https://www.screencast.com/t/9BsRigN2Zv
Thanks.