Hello,
In block 7, these were removed from the code but they can be re-added. This was a design choice so the block would not look too crouded. Please remove the comments (//) from these lines: http://screencast.com/t/xbY1MUyb
Thank you!
Hello,
Not all blocks have these commented out. Please take a look at this link and see each block that does not have the author or date set to it. You only ned to do it for the ones missing: http://demo.tagdiv.com/newspaper/block-1/
For this you need to identify the module used for the blocks. You can check this list to see which module is used on which block: http://screencast.com/t/EVhZ32KOMHKm
Thank you!
Hello Bogdan,
I have done the above but cant’ see any changes. The code was changed to:
<div class=”item-details”>
<?php echo $this->get_title();?>
<div class=”td-module-meta-info”>
<?php if (td_util::get_option(‘tds_category_module_6’) == ‘yes’) { echo $this->get_category(); }?>
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
<?php echo $this->get_comments();?>
</div>
</div>
But this is not showing on the modules.
http://www.glitched.co.uk
Could you please let me know if there is an error?
Hello
I have checked your website and I saw that all of these are hidden with a bit of CSS. Please try to use the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-what .td_module_6 .td-post-date{
display:block;
}
.td-what .td_module_6 .td-post-author-name{
display:block;
}
The result you should see here -> http://screencast.com/t/2VQsMmesmau
Hope this helps and let us know how it goes!
Thanks for your message!
Hello,
You can use the code below if you want to display inline the date and the author name for your module. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-what .td_module_6 .td-module-meta-info {
display: inline-flex;
}
Thanks.
Hello Glitched,
I have checked your website and I saw that you author name has the display:none attribute and that’s why you cannot see it. Try the code below to display it using this ->
.td-what .td_module_wrap .td-post-author-name{
display:block;
}
Unfortunately, for your second request, our theme does not have such an option for this type of date. Please notice that all the settings for date format you can do in your panel, General-Settings, like this -> http://screencast.com/t/ionW4R6Rakob For more information about Formatting Date and Time, please check the Codex, here -> https://codex.wordpress.org/Formatting_Date_and_Time
Hope this helps!
Thanks for your understanding!