- NewsmagHeader styles
- NewsmagHeader ads
- NewsmagtagDiv Composer Tutorial
- NewsmagCategory templates
- NewsmagSmart list ads
- NewsmagWeather Widget
- NewsmagInstagram widget
- NewsmagPage Menu
- NewsmagMain menu
- NewsmagTop bar templates
- NewsmagLogin – how to enable the user registration
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagCategory grid styles
- NewsmagCategory top post styles
- NewsmagHow category settings work
- NewsmagTheme colors introduction
Hello,
Unfortunately our theme has no such spots in the header. It will have to be done through code if you have the proper knowledge. the header file is found here: http://screencast.com/t/BLo6DiUUMNi
Thank you!
How can i can remove unecessary social icon on top bar and header such as: behance,insta,vimeo,..
Hello kevintunis,
Please keep in mind that all of our demos have an own design and if you want to have it you will have to download and use the certain demo. So, if you want to add an image under the header, please notice that you can try to use any Header Style and then, through background-image method you can add a photo which will be under your menu items or also, you can use the Visual Composer and add it from your Backend, using the ROW in stretch mode. Please notice that is not a simple task and if you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because all of these customizations involves custom work and we cannot provide it.
Thanks for your understanding!
Hello, I am re-doing the latest theme from 1.7 on 3.(I forgot but latest). But I have noticed a few things changed. I am working with the Child Theme so if I update, I won’t loose anything.
First Question:
From previous install, there was a header.php section in the Child Theme, now there isn’t (only 2-3 files). I needed to add some code in the header. How would I go about doing this?
Second:
I successful removed the Comment button that displayed on the homepage with the following code:
.page .td_module_wrap .meta-info {
display: none;
}
However, it still displays the comment button, date and author on tag and category pages. I wanted to have this removed site-wide. How would I go about this?
Hello joncreek,
Please provide your website URL so I can inspect it closer and also, so I can saw how looks like your headers.
Thanks.
Hello,
I have a header style 10, I would like to know if I could include some information to the right and to left. For example links, widgets or something similar like this.
Thanks!
Reviewing the problem of someone else in the forum, I found the solution to a problem.
Site logo has black background #000000 (on the site for computers and solve it), I’m using the style header 5 (black header), but the color is not the same as it has the logo, reviewing the forum I found this code:
.td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-top-menu-full, body .td-header-wrap .td-header-main-menu {
background-color: #000000!important;
}
And I worked alone in the post, but in HOME and all looks the same category. In post everything perfect but in all categories and not turned Header.
*In the footer of all categories HOME and the same thing happens(in mobile), the logo has black color, but the color of footer is not #000000
Hey,
look at this image:

There is so much gape between the header and the first block of the homepage ( Big Grid). Similarly, when I tried to add “Facebook Like Page plugin” on the right side, there was so much gape between one block and other.
How can I narrow this gape?
Thank you
Hi guys,
1. I was wondering if there was a way for users to switch between two module styles on category pages.
Basically on a category page right now I’m using ‘module 10’ to display 20 posts so there’s a summary and thumbnail. Was wondering if I could give the users the option to switch to a title-only list (‘module 9’) of say 60 pages, and then back to ‘module 10’ with 20 posts if they wish all at the click of a button within the category header.
2. Also was wondering if there was a way for the pulldown filter in the category header to include alphabetical order. I was able to get it to work by adding td_category_template.php and adding:
array(‘id’ => ‘alphabetical’, ‘value’ => esc_url(add_query_arg(‘orderby’, ‘title’, $this->current_category_link)), ‘caption’ => __td(‘Alphabetical’, TD_THEME_NAME)),
but that lists it from Z backwards. Tried to add ‘order’ ‘asc’ but that didn’t work. Any suggestions?
Which header lets you put an image under it? On your home page tagdiv.com, your wood image appears under the header and menu. I am wanting to do this with a slide using Revolution Slider.
I can’t find this…..td_video_support.php…..file
I have tried to check it in this….Stylesheet (style.css) which came with newsmag, but the only place they are talking about a video is this line…
embed
*/
embed {
width: 100%;
}
.videopress-placeholder {
width: 100% !important;
}
.videopress-poster {
height: auto !important;
width: 100% !important;
}
.video-player {
width: 100% !important;
}
…..
Again, there is a line that has mentioned youtube…
It says…..}
.td-icon-youtube:before {
content: ‘\e836’;
}
GOING BY Newsmag: td_config.php (includes/td_config.php)
file, There is a mention of ;featured video. But I couldn’t see the line which I have to edit.
……..
td_global::$td_wp_admin_text_list = array(
// the text for wp-admin -> new post -> featured video box. Usually is the text that tells what post templates support video
‘text_featured_video’ => ‘
<div class=”td-wpa-info”>Paste a link from Vimeo or Youtube, it will be embedded in the post and the thumb used as the featured image of this post. <br/>You need to choose Video Format from above to use Featured Video.</div>
<div class=”td-wpa-info”>Notice: Use only with those post templates:
- Post style default
- Post style 1
- Post style 2
- Post style 3
- Post style 8
</div>’,
// admin panel – header
‘text_header_logo’ => ‘Text logo for header Style 10:’,
IF I HAVE TO DO IT MYSELF, I AM NOT FAMILIAR WITH PLAYING AROUND WITH THOSE CODES. IS THERE ANYONE WHO CAN ASSIST ME? OR WILL YOU GUIDE ME?
Hi,
I’d like to add a custom button just beside the search button(I’m using Newspaper Black edition) How can I customize? Currently I’m editing in my child theme the file header-menu-h1.php
this is my code
<div id="td-header-menu" role="navigation">
<div id="td-top-mobile-toggle"><i class="td-icon-font td-icon-mobile"></i></div>
<div class="td-main-menu-logo td-logo-in-menu">
<?php
if (td_util::get_option('tds_logo_menu_upload') == '') {
locate_template('parts/header/logo-h1.php', true, false);
} else {
locate_template('parts/header/logo-mobile-h1.php', true, false);
}?>
</div>
<?php
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
//if no menu
function td_wp_page_menu() {
//this is the default menu
echo '<ul class="sf-menu">';
echo '<li class="menu-item-first">Click here - to select or create a menu';
echo '';
}
?>
</div>
<div class="">
<?php $posts = get_posts('orderby=rand&numberposts=5'); foreach($posts as $post) { ?>
" title="<?php the_title(); ?>"><i class="fa fa-random" aria-hidden="true"></i>
<?php } ?>
</div>
<div class="td-search-wrapper">
<div id="td-top-search">
<!-- Search -->
<div class="header-search-wrap">
<div class="dropdown header-search">
<i class="td-icon-search"></i>
<i class="td-icon-search"></i>
</div>
</div>
</div>
</div>
<div class="header-search-wrap">
<div class="dropdown header-search">
<div class="td-drop-down-search" aria-labelledby="td-header-search-button">
<form method="get" class="td-search-form" action="<?php echo esc_url(home_url( '/' )); ?>">
<div role="search" class="td-head-form-search-wrap">
<input id="td-header-search" type="text" value="<?php echo get_search_query(); ?>" name="s" autocomplete="off" /><input class="wpb_button wpb_btn-inverse btn" type="submit" id="td-header-search-top" value="<?php _etd('Search', TD_THEME_NAME)?>" />
</div>
</form>
<div id="td-aj-search"></div>
</div>
</div>
</div>
Notice the div before td-search-wrapper div class.
I’m trying to add a random article button beside the search button. But my template is broken after I add a class to the div like this: “td-random-article-wrapper” should I register that class first? I can’t seem to find the documentation for templates?
Thanks
I see a dropdown Ajax search box in the header section next to menu which works as expected.
However, Using Visual Composer I don’t see a ‘drop down Ajax search box’ as an element to be added to a page.
Can you guide me to add a dropdown Ajax search box (or live search) as an element inside a complete row using Visual Composer ?
Appreciate your help in advance.
Thanks.
Category header style 3 or 4 are similar to what I have in mind although these display all categories, I would like this to display ONLY tags for articles within the specific category?
Thanks
Matt
Alright thank you. Google has said theres a couple isues, before my template change my page rank speed was high now google labels it red. Here What They Said:
Leverage browser caching
Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.
Leverage browser caching for the following cacheable resources:
http://nashvillespace.com/…/Newspaper/images/no-thumb/td_100x70.png (expiration not specified)
http://nashvillespace.com/…Newspaper/images/no-thumb/td_218x150.png (expiration not specified)
http://nashvillespace.com/…Newspaper/images/no-thumb/td_324x160.png (expiration not specified)
http://nashvillespace.com/…Newspaper/images/no-thumb/td_324x235.png (expiration not specified)
http://nashvillespace.com/…mes/Newspaper/images/sprite/elements.png (expiration not specified)
http://nashvillespace.com/…ontent/uploads/2016/08/image-100×70.jpeg (expiration not specified)
http://nashvillespace.com/…ntent/uploads/2016/08/image-218×150.jpeg (expiration not specified)
http://nashvillespace.com/wp-content/uploads/2016/08/p4.jpg (expiration not specified)
http://nashvillespace.com/…t/uploads/2016/08/unnamed-2-1-300×99.png (expiration not specified)
http://nashvillespace.com/…t/uploads/2016/08/unnamed-2-2-300×99.png (expiration not specified)
https://cache.btrll.com/default/Pix-1×1.gif (expiration not specified)
https://s3-us-west-2.amazonaws.com/adxtestlogbucket/320x50BW.jpg (expiration not specified)
https://s3.amazonaws.com/playerfiles2/and_big_vd_081916.js (expiration not specified)
https://s3.amazonaws.com/playerfiles2/and_ua.js (expiration not specified)
https://content.jwplatform.com/libraries/o16FtOAn.js (2.5 minutes)
http://1.gravatar.com/avatar/?s=80&d=mm&r=g (5 minutes)
https://c.betrad.com/a/n/322/4311.js (10 minutes)
https://static.doubleclick.net/instream/ad_status.js (15 minutes)
http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js (60 minutes)
https://c.betrad.com/a/4.gif (60 minutes)
https://c.betrad.com/geo/ba.js?d803588 (60 minutes)
https://c.betrad.com/icon/box_19_top-right.png (60 minutes)
https://c.betrad.com/icon/ci.png (60 minutes)
https://c.betrad.com/…d_w=300;ad_h=250;coid=322;nid=4311;cps=1 (60 minutes)
https://c.betrad.com/…ad_w=320;ad_h=50;coid=322;nid=4311;cps=1 (60 minutes)
https://pagead2.googlesyndication.com/pagead/js/lidar.js (60 minutes)
https://pagead2.googlesyndication.com/pagead/osd.js (60 minutes)
http://img.youtube.com/vi/6Viyt2aIOG8/default.jpg (2 hours)
http://img.youtube.com/vi/GN04m25JAO4/default.jpg (2 hours)
http://img.youtube.com/vi/K3oMdYMNOJc/default.jpg (2 hours)
http://img.youtube.com/vi/kAyrz32rEeU/default.jpg (2 hours)
http://img.youtube.com/vi/l5hNAx_wVIE/default.jpg (2 hours)
http://img.youtube.com/vi/lQKetQkUkxY/default.jpg (2 hours)
http://img.youtube.com/vi/nfzvCx9_1fg/default.jpg (2 hours)
http://img.youtube.com/vi/vGlGkdfVLAs/default.jpg (2 hours)
https://www.google-analytics.com/analytics.js (2 hours)
Hide details
Enable compression
Show how to fix
Consider Fixing:
Optimize images
Show how to fix
Reduce server response time
Show how to fix
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Show how to fix
Minify JavaScript
Show how to fix
Minify CSS
Show how to fix
Minify HTML
Show how to fix
Hello,
The page-level ad needs a custom implementation as this topic suggests: https://forum.tagdiv.com/topic/page-level-ads-problems/ however if you use the mobile theme you need to implement it in the mobile header.php as it;s a different file. We have not tested the page-level ads with our theme so I cannot say for sure they will actually work in the mobile theme. This fluctuation you mention could be the result of another issue that affects wp super cache and the latest version of wordpress: https://forum.tagdiv.com/topic/mobile-theme-does-not-work-properly/
Pleas provide an example of what type of ad is in the article inline ad spot and provide a link to your site so we can inspect it.
Thank you!
Hello khabor,
I have checked your website and I inspected the size of your logo. As you can see, your original size for your logo is this -> http://screencast.com/t/h13sxSNams9 Also, I have noticed that you are using the Header Style 9, the template which displays the logo on full width -> Yes, it is correct your logo is displayed on full width but please notice that the size of your logo is too small, like this -> 300*43 px (width=300px and height=43px) and probably that’s why seems so small your logo. The theme does not enlarge your photo because the quality of it will be damaged. The only alternative in this regard would be to change your logo and replace it with another big one. I can give you some CSS for enlarging your logo but this will not bring the expected results.
Try the code below ->
.td-main-logo img {
width: 800px;
height: 115px;
}
The result you should see here -> http://screencast.com/t/rTcNDpmxM
Thanks for your understanding!
i want full width logo (width 100% and height : 115 ) in header section. how to do that i upload a logo but its only take few space . http://www.weeklybornomala.com
Hello Boddickerdk,
If you want to change the space between the logo and the menu please try the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
.td-header-style-1 .td-header-sp-logo {
margin-bottom: 10px!important;
}
.td-header-style-1 .td-header-sp-recs, .td-header-style-1 .td-header-sp-logo {
margin-bottom: 10px;
}
The result you should see here -> http://screencast.com/t/uYXxspl6
The code is ->
.sf-menu ul li{
background-color:green!important;
}
The result -> http://screencast.com/t/emQnHXK0xPD
Hope this helps!
Thanks for your understanding!
Hi, I edited out the sensible info..
I replied via email but like i previously replied, there is no ad spot like that . if you want to have 2 header ads left a d right of the logo, you need to create a whole new header style from scratch and it will not be easy to do. If you do not know the steps you need to take in this regard I suggest hiring a developer to help with the code as this falls beyond the scope of the theme support.
Thank you!
I apologize to the large number of tasks but for us it is very important to solve this problem with linking banners.
The final conclusion and the question:
Code (WP Pro adv plugin) of this Samsung TV banner we have implemented in file “header.php” in editor. It worked. Now is not working properly.
Please note that we use the original Newsman theme, licensing plug-ins and do not have any custom works on the site.
Q: Can you tell me the right part (file) of the site where we can implement the code for the current Samsung TV banner to work on position below website header.
This is the code: echo do_shortcode(“[pro_ad_display_adzone id=’48512′]”);
Thanks.
Hello jan,
The menu items are positioned based on the header style that you use. Please choose another header style that has a centered menu if this is what you are after: https://forum.tagdiv.com/header-styles/
If you want to hide the logo, then simply do not add any instead of adding a logo and removing it with css: http://screencast.com/t/UbSeTh81lB8p The sticky menu can use the mobile logo: http://screencast.com/t/8U08kDtW
Thank you!
Hello Bogdan,
we are trying and trying to do that bu without success. I got the code from Adsense (I created a “display only” ads, with automatic size and that’s the code:
<script async src=”//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script>
<!– 2 logo boxes –>
<ins class=”adsbygoogle”
style=”display:block”
data-ad-client=”ca-pub-#”
data-ad-slot=”7150674095″
data-ad-format=”auto”></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
can you please put it on the left and right of the logo, please? We use Header n° 10.
http://www.praguemorning.cz/wp-admin/
user: #
pass: #
please would be a great help from you!
thanks a lot
-
This reply was modified 9 years by
Bogdan B..
Hi there!
I can only save my ADs for the spaces:
- Header ad
- Sidebar ad
- Article top ad
- Article inline ad
- Article bottom ad
All other spaces show -1 like you can see in the screenshot:
How can I fix this?
Greetings from Austria,
Fabian
Hello,
thanks for the feedback. now i boxed the content, hopefully there will be an update 😉
another question, i have disabled the logo in the header with this code:
.td-header-style-5 .td-main-menu-logo{
display: none;
}
can i hide it only in normal mode, but sticky menu should show the Logo.
And at the moment the menu-buttons are aligned to the left, can i center them?
have a nice evening, Jan