- NewsmagLogo & Favicon
- NewsmagWhat’s included in Newsmag theme package
- NewsmagMain menu
- NewsmagHeader styles
- NewsmagFooter templates
- NewsmagTheme colors introduction
Our site is just set live on this theme. We like the look, but are trying to work through some of the kinks. One issue we are having is that when I log in it prompts us to activate Visual Composer. I have followed the various discussions and instructions on the forums, but nothing seems to work. It still wants me to pay for a license. It sends me to a page with the text below. How can we resolve this?
Thank you.
NO LICENSES FOUND
It seems that you do not have any valid license for Visual Composer. What does it mean? It may be so that you got Visual Composer by purchasing WordPress theme which does not grant you with direct license for Visual Composer. Why do I need direct license? Direct product license unlocks several benefits:
Access official customer support
(otherwise managed by your theme author)
Update Visual Composer directly
Use Visual Composer with any theme
(not just the one you got it with)
Manage your licenses at Client Portal
If you have just purchased a direct license for Visual Composer and do not see your license in available license list take into account that sometimes it can take up to 30 minutes while Envato provides us with new licenses. If there is still no license available, please logout of support.wpbakery.com and log in again via the CodeCanyon account and re-try the activation. If there are still problems, contact us via our CodeCanyon profile and share your item purchase code along with the WordPress login details, so that we can investigate the issue further.
Hello all,
Im not sure what we are doing wrong but we have problem with correct display of some symbols, like arrows, logos of social networks etc.
Where is the porblem please?

I’m almost finished setting up my first site with Newspaper and am impressed with how many optional settings there. That’s a great thing, although occasionally I’m not sure where to find the setting window for a small adjustment I need. I explore the CSS and add some custom CSS but would prefer to make the changes in the settings dashboard if possible. I have two questions;
1.) How/where can I adjust the size and location of the default ‘Share’ social media icons; Facebook, Twitter, Google+, Pinterest? Currently they always load on post ‘pages’ in a horizontal row above and below the text content. Can I reduce their size smaller and locate them, a) only after the text content, or, b.) in a block sidebar?
2.) I’ve built a couple Revolution sliders and have a question I don’t find answered on this forum or in Google search, or on the Revolution site. I’m not a paid owner so can’t post a Support ticket on their forum.
How do I set the first slide image as permanent background that is pre-loaded, displays at beginning and end of the slideshow?
I have the logo slide as first and last slide with loop at ‘0’ so it starts on the logo slide and ends on the logo slide. But none of the settings combinations stops the first slide from a delayed fade-in. before that the page background is visible in that stage area.
Thanks
Hi,
Changing the logo size will not be an easy task as it will affect responsiveness
Here is a code to increase the size for the logo on desktop:
.td-header-style-1 .td-header-sp-logo img{
max-height: 120px;
}
.td-header-style-1 .td-header-sp-logo{
width: 320px!important;
margin: 28px 10px 0px 10px!important;;
}
The logo will increase in size but for tablets it will break the layout a bit as the layout has been created to show properly on tablets as well. You can use the advanced css boxes and add change the values of this code for each device for it to look properly on each one.
As an alternative, you could user a header style that uses the full logo and not re-size it like headers 9, 10 and 11
Thank you!
I need to make my logo a bit larger
Looks to small
test.vapekrew.com
HI
I’ve checked your site and I’ve noticed that footer section is deactivated, it is not displayed on any device: http://screencast.com/t/YHGpUMUqjK66 If you still have this issue please provide more details about it and we will get back to you as soon as possible.
Also you can upload a different logo for mobile devices in theme panel: http://screencast.com/t/pkQwhFciIi
Thanks!
Its coming like this [http://imgur.com/a/7UbfM] . I want same what you posted but that image should come below logo and horizontal google ads.. so please tell me how to do that??
Hi,
So i have done what you told me to do but the result is still the same. The logo shows perfectly on desktop view.
But it won’t show on mobile view
Thanks Andrei! I will fix this.
For the other issues. This is how i solved it (when other people run into the same problems).
1) In logo.php and logo_h1.php I added this code
if(ICL_LANGUAGE_CODE=='es'){
$td_customLogo = 'URL TO SPANISH LOGO';
$td_customLogoR = 'URL TO SPANISH LOGO RETINA';
}
elseif(ICL_LANGUAGE_CODE=='en'){
$td_customLogo = td_util::get_option('tds_logo_upload');
$td_customLogoR = td_util::get_option('tds_logo_upload_r');
}
2) Still working on this one
3) In the header.php file I added the Facebook snippet, but made some variables. As you can see I made the URL in de script part variable with 2 variables. One for the app ID and one for the language.
<?php
if(ICL_LANGUAGE_CODE=='es'){
$td_comments_language = 'YOUR SPAIN FACEBOOK APP ID';
$language = 'es_ES';
}
elseif(ICL_LANGUAGE_CODE=='en'){
$td_comments_language = 'YOUR EN FACEBOOK APP ID';
$language = 'en_US';
}
?>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/<?php echo $language ?>/sdk.js#xfbml=1&version=v2.8&appId=<?php echo $td_comments_language ?>";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
In the loop-single files I added where needed this part. You can see a get_permalink here. This is so the comments on each blogpost are unique on the specific URL.
<div class="fb-comments" data-href="<?php echo get_permalink( $post->ID ); ?>" data-width="100%" data-numposts="5"></div>
Hello,
Please use this guide to install the theme:
https://forum.tagdiv.com/install-via-ftp/
or
https://forum.tagdiv.com/install-via-wordpress/
We do not offer installation services. Theme install is provided by envato via the studio.envato.com offers:
https://studio.envato.com/explore/wordpress-installation/4663-wordpress-theme-installation-incl-demo-content-logo-plugins-shop-set-up
Thank you!
Hi
1. The theme don’t have such an option but you can achieve a similar rezult using a set of conditions. You can use get_site_url() to change the logo image depending by site’s url. The condition must be added in logo.php and logo-h1.php, here is a basic example: http://screencast.com/t/64TrqOdgVUT
2. You can follow the same implantation and define new urls for Spanish version of the site in td_social_icons.php file: http://screencast.com/t/DrnltPkOzo7 You will also need to change the way urls for social networks are generated.
3. Try to follow the implementation indicated here: https://forum.tagdiv.com/topic/anybody-implemented-fb-comments/ and use the function indicated at point 1 to change the fb page.
Note that this is a very complex task which involve many changes and tests in order to be achieved. For the moment we can’t offer customization services so if you really need this and you’re not aware of the steps that must be taken in this regard my advice is to look for someone who can help you with implementation or hire a developer to do it for you.
Thanks for your understanding!
Hi guys,
I got the job to translate http://www.biblword.net into spanish (http://www.palabrasbiblicas.net/). Much of the translations by WPML work. But some static elements can’t be translated it seems.
– I want a different logo on the Spanish website. How can I do this?
– On the top right of the website you see several links to twitter, facebook and so on. Can I change this in spanish to different links?
– On the english version I have integrated Facebook Comments of the English Facebook page. Can I also change this plugin into the Spanish Facebook Page comments?
I searched and searched, tried and tried.. but cant get these things to work. I hope you guys can help me out.
Unfortunately the theme has no option to add a logo based on a specific page. You will have to add it through customization. This is the file that needs to be edited: http://screencast.com/t/whmE3nRQxG \
Thank you!
Hi
The site won’t be slowed down to much by a 300px image, so you can use it without any restrictions. However depends by the header style used if your logo will be displayed at 300px or not. Some header style won’t display a logo higher then 272px.
Thanks!
HI
Try this css in theme panel > custom code > custom css: http://screencast.com/t/GFmyWlTyq6
.td-header-style-5 .td-main-menu-logo img{
margin-right: 0px;
}
Thanks!
Hi there,
I have created a slightly bigger logo (at 300 px) and favicon (at 24 px). Will it cause any problems to the site (e.g. slow it down)?
Thanks
Hello there,
I wanna make my logo a bit smaller so the menu bar fits perfectly on the screen without having a 2nd row of menu. I just dont wanna deleted the icons.
Thank you
My website: http://www.ticketguy.nl
Buenas tardes, newspaper 7 presenta muchos problemas. Es imposible instalar las demos, no me permite agregar el logo, no se ven las imagenes por favor necesito ayuda
Hi
Header’s height is given by the height of its elements, logo an menu. Try this css in theme panel > custom code > custom css:
.td-header-wrap {
height: 50px!important
}
.td-header-style-6 .td-main-menu-logo a, .td-header-style-6 .sf-menu > li > a {
line-height: 50px;
}
#td-top-search{
top: 33%;
}
.td-header-style-6 .td-header-menu-wrap-full {
height: 50px!important;
}
Thanks!
Hello,
The space comes from too many menu items. If you add more menu items that fit on the same row, the logo will mve above the menu creating the space you see. Please remuve a menu item and the menu should go back on the right of the site.
Thank you!
-
This reply was modified 9 years by
Bogdan B..
Hey Tagdiv,
I want to have a fine thin gray line border around the “previous and next article” displayed at the end of the post. Have a look at this image: https://i.snag.gy/lHab7o.jpg
Please give me some custom code for this rectangular box. Can I fill this box with some light gray color too?
One more thing about the header.
You can see that my current header is a full-width header but the logo and another navigation menu still wrapped under the theme width. How can I make it full length too? I mean , the logo should start with far left and the navigation menu should touch the far right.
Any help will be appreciated .
Thank you!
Hello,
Unfortunately our theme does not have such an option, The mobile version offers a mobile menu and a search icon. These elements cannot be removed from the theme settings in order to have the full width logo and no menus. it will have to be made through customization.
Thank you!
Hello there,
How can I change color of my home page header color for mobile version? I need to change because now is gray and problem is for my logo beacuse have same color in it and logo cant see properly.
Thanks in advance!
Best Regards,
Preslav
Hi, I need mi site logo appears fullwith in smartphone WITHOUT Menu and Search icons in the same file like the attached sample image. That image is of Broden Theme, is of another theme. I want to know how do it with Newspaper theme.
I tried some setting options but always appears Menu and Search logos on the sides of the logo in the same file.
Attached files (Broden Theme and NewsPaper Theme) on: https://we.tl/wDlWdUu5OI
Please, I want just the logo without icons on the sides, but I need logo and ads keep in the same file in the desktop computer version like default configuration, my problem is only in mobile…
Please I don´t want to use the version with logo centered y want logo on left and ads on right.
Thanks