Hi,
The caption for that post style not displayed because the featured image is not loaded default via WordPress, is taken via jQuery.
You can do something similar to this solution from Newspaper – https://forum.tagdiv.com/topic/image-caption/
Create a function for caption like this – http://screencast.com/t/KXhJRflC4O
// Show captions on template 6
function get_template6_caption($post)
{
$thumbnail_id = get_post_thumbnail_id($post->ID);
$thumbnail_image = get_posts(array('p' => $thumbnail_id, 'post_type' => 'attachment'));
if ($thumbnail_image && isset($thumbnail_image[0]) && $thumbnail_image[0]->post_excerpt) {
return '<div class="template_6_caption"><span class="td-block-author">' . $thumbnail_image[0]->post_excerpt . '</div></span>';
}
}
And call it in single_template_6.php – http://screencast.com/t/8hb8dcT1
<figcaption class="wp-caption-text">
<?php echo get_template6_caption($post); ?>
</figcaption>
Also you need to adjust with custom css in Theme Panel > Custom Css and adjust it like you wish: http://screencast.com/t/CXV7k88QP
.template_6_caption .td-block-author {
position:relative;
color:#ffffff;
background-color: #222222;
padding:5px;
}
@media (min-width: 768px) and (max-width: 1023px){
.template_6_caption .td-block-author {
top: -20px;
}
}
@media (max-width: 767px){
.template_6_caption .td-block-author {
top: -30px;
}
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Replied via email!
Hi,
You try to add your code in the header.php file – http://screencast.com/t/C5aAxZQL
Also if you can paste your code in a custom ad from Theme Panel > Ads and use do_shortcode function to display it there – http://screencast.com/t/3kpHNOUIDv – http://screencast.com/t/0vRrd9Sx5oZ
<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');?>
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
These share buttons are not part of the theme – http://screencast.com/t/zjC1hpTmX51G please deactivate your share plugin.
Thanks!
Hi,
Try to use !important tag:
.td-footer-container .td_module_6 .td-module-title a {
color: #ffffff !important;
}
Thanks!
Hi,
I have checked and your are right this issue is happening on iOS, I also added this on our todo list.
Thanks for reporting !
Hi,
I’m not sure how wordpress handles permalinks code and unfortunately I did not find an accurate solution to remove category – http://codex.wordpress.org/Using_Permalinks#Permalink_Types You can also try to find an online solution or find and try a plugin for this like(I did not tested but you can try it) – https://wordpress.org/plugins/fv-top-level-cats/
Thanks!
Hi,
I also tested this with latest theme version(4.6.3) and Visual Composer plugin(4.4.4) and did not found any issues – http://screencast.com/t/mnNKUuvUwF – http://screencast.com/t/h3cweb2Nbg2K
Please check this without any plugins active leave just Visual Composer active, clear cache and see if you still have this issue.
Also provide a link so we can take a look.
Thanks!
Hi,
Please deactivate all plugins leave only Visual Composer plugin active, clear cache and check if you still have this issue. Also please check this without any css/js minifications.
I also tested this with latest version of the theme 4.6.3 and and latest version of Visual Composer plugin tested and provided with the theme files (4.4.4). Please make sure that you also use the latest versions.
Thanks!
Hi,
Unfortunately the top menu was not designed for mobiles and that’s why it is hidden, you can add this custom css to display it also on mobiles but you may need some additional customizations for menu items that may drop on more rows – http://screencast.com/t/rHnQKiUT a solution will be to hide the menu items and display only Log in/Register widget – http://screencast.com/t/GUicjaLKq5Ze
@media (max-width: 767px){
.td-header-menu-wrap {
display: block !important;
}
.td-header-menu-wrap .span9 {
display: none;
}
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
Please provide your site url so we can take a look as I tested this with the latest theme version and did not found any issues – http://screencast.com/t/wBp7d5OSz
Thanks!
Hi,
Try to add also font weight to above code for title:
.vc_gitem-post-data-source-post_title h4 a {
color: black;
font-weight: bold;
}
Thanks!
Hi,
Please make sure you have the latest version of the tagDiv Speed Booster plugin.
A solution is to replace all color from style.css using a text editor with find and replace search after #4db2ec – this is the default theme color and replace it with your color.
Thanks!
Hi,
1. You can change the hover color for articles titles using this custom css: http://screencast.com/t/KbSwlQstgu5y
.td_mod_mega_menu:hover .entry-title a {
color: red;
}
2. Please use this custom css – http://screencast.com/t/kjsDullKln
.td-module-comments {
background-color: blue;
}
.td-module-comments a {
color: red;
}
3. If you want to hide the loader for megamenu use this css code:
.td-mega-menu .td-loader-gif {
display: none;
}
Thanks!
Hi,
1. Please clear cache if you use a cache plugin and your browsers cache.
2. You have to use custom css in Theme Panel > Custom Css to change:
*Current menu item – http://screencast.com/t/Gcy8WaNfXqFR
.sf-menu > .current-menu-item > a, .sf-menu > .current-menu-ancestor > a, .sf-menu > .current-category-ancestor > a {
background-color: red;
}
* Hover background color for menu item – http://screencast.com/t/U9fmTXb7OSA
.sf-menu > li > a:hover {
background-color: blue;
}
*background color for submenu – http://screencast.com/t/Qk5OG7dN8UCY – http://screencast.com/t/fMJgD1qtayP
.sf-menu .sub-menu {
background-color: red;
}
*hover subcategories in mega menu – http://screencast.com/t/qLGsETvKyWP8
.td_block_mega_menu .td_mega_menu_sub_cats .cur-sub-cat:hover {
background-color: #CB8E1F;
}
3. Unfortunately the theme doesn’t have an option to add logo image there, you will need custom modification for this and we cannot provide custom work at this moment, sorry!
4. Please follow this solution to display more subcategories in the megamenu – https://forum.tagdiv.com/topic/sub-categories-number/#post-48648
5. Unfortunately Newsmag theme has only 2 formats like you already know. If you need to add more post formats please take a look here – https://codex.wordpress.org/Post_Formats and try to add more formats in theme functions: http://screencast.com/t/7tKL3tcQiu
6. Not sure what you mean, please provide more details.
7. You can remove this code – http://screencast.com/t/PXj2Z7pxq3yJ – http://screencast.com/t/8IEfHItJXfv
Or you can hide it via custom css – http://screencast.com/t/zzEfIvhLC
.td_top_authors .td-author-post-count, .td_top_authors .td-author-comments-count {
display: none;
}
8. Unfortunately we did not tested THEIA POST SLIDER or any similar plugin so I cannot recommend any.
Please check this without any plugins active, leave just Visual Composer and THEIA POST SLIDER active, clear cache and see if it works.
Thanks!
Hi,
You have an option in Theme Panel to filter by tag – http://screencast.com/t/RpcadP43rIJo
So when your on a post with a specific tag, related block will display articles with the same tag regardless of post category – http://screencast.com/t/u5t8BdzeMIAY
Thanks!
Hi,
You did not close div tag > <div class="sidead", it has to be <div class="sidead">.
You can also use divs from documentation(like you have used for header ad) and display it on specific devices, so if you want to be displayed only on desktop use:
<div class="td-visible-desktop">
your code
</div>
And you don’t have to make any css adjustments(it will be centered automatically) – http://screencast.com/t/eD04od5df
Hope this helps!
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
Please send a link so I can inspect this and try to provide a solution.
Thanks!
Hi,
I guess that you want to add extra for all your captions, you can do add it here: http://screencast.com/t/o5SoxZ4q
Result: http://screencast.com/t/uc4IulTIy7W
Thanks!
Hi,
The latest theme version now available on themeforest has the new YouTube API support, so please make sure that you update your theme to the last version now available on themeforest (4.6.3) then test this again. I’ve also tested the theme’s latest version for this but had no issues regarding this, the youtube video playlist works well: http://screencast.com/t/AYByYzIA
Thanks!
Hi,
You can add this code and $paged < 2 to this condition: http://screencast.com/t/EwhpnGqKnib
Result: http://screencast.com/t/Hd4HaHEPq - http://screencast.com/t/7pfiskui
Thanks!
Hi,
You can change the articles titles color via custom css: http://screencast.com/t/WkspSgddHq
.td-footer-container .td_module_6 .td-module-title a {
color: #ABBCCD;
}
Thanks!
Hi,
Please provide more details as I’m not sure what you mean. Which smaller menu?
Do you refer to the mobile menu? – http://screencast.com/t/SsptninOjVR
Thanks!
Hi,
There is an option in Theme Panel > Post Settings to disable share buttons – http://screencast.com/t/b6SDQzUPNm
Thanks!
Hi,
Thanks Chris!
@betograngeia Please follow Christopher’s solution from that topic it works the same for newspaper – http://screencast.com/t/LPRfKB18AUl
<?php echo $td_mod_single->get_date(false);?> <?php echo get_the_time(); ?>
You have to adjust margin via css code in Theme Panel > Custom Css: http://screencast.com/t/e9PDr3aSzWJI
header time {
margin-right: 5px;
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].