Discussion on Newsmag - Newspaper & Magazine WordPress Theme

Discussion on Newsmag - Newspaper & Magazine WordPress Theme

By
Cart 19,968 sales
Recently Updated
Well Documented

tagDiv supports this item

Supported

This author's response time can be up to 1 business day.

4766 comments found.

We’ll be using WPGlobus to translate our website in French and English. Is your theme compatible? I’m trying to use the Translation settings in the Theme Panel. I’ve loaded French but when I switch back to English using WPGlobus, the original English strings for your theme aren’t loaded.

Hi,

Not sure what you mean with new text, the Theme Panel -> Translations area deals the translations of the theme elements and to add a new one means to modify the theme code and add an option for it in the translation panel, please provide more details.

Thank you, Emil G.

Let’s say I want to add some text in the 404.php theme file. How do I go about doing this for the text to be available both in English and French for example? [:en]Hi[:fr]Salut does not work.

Hi,

Did you use the theme translation function and included it in the translation panel? Please send an email at contact@tagdiv.com , paste a link to this conversation and provide the Item Purchase Code and more details on how you added the text and i will come with a solution.

Thank you, Emil G.

Hello,

I want to add underline to the links ONLY on post content.

Could you pl provide me the custom css for this ?

Thanks.

Hi,

Try the following css:

.single a:hover {
text-decoration: underline !important;
}

Thank you, Emil G.

Hi Emil G,

Thanks for pointing to .single, it works now.

The theme runs superb on my site. Hope I can grow my business to great heights.

Nice work!

How can I center the title and category text like this with CSS? he large image at the top. http://postimg.org/image/783ujwstf/

Hi,

I see only this – http://screencast.com/t/VcpJljMkSq Please provide a link from another service.

Thank you, Emil G.

how do we display the whole Top Menu on mobile? (I added CSS that I found in other comments and it did not work. We are using a child theme if that matters? Our site is www.moderndoggroup.com . The CSS that I added is:

@media (max-width: 767px){

.td-header-top-menu { display: block;}

.td-header-sp-top-menu .menu-top-container { display: block;} }

Appreciate your help.

Hi,

Try the following css:

@media (max-width: 767px){
.td-header-style-8 .td-top-menu-full{
display: block;
}
}

Thank you, Emil G.

Thank you so much, it works perfectly! We just realized though, is there a way to display only certain top menu items rather than all the top menu items? We would like on mobile to see only some top menu items and all social icons.

Hi,

Each menu item comes with a unique class, you could set it to display:none on mobiles – http://screencast.com/t/yF97drDksy3http://screencast.com/t/Am91aVBW

@media (max-width: 767px){
.td-header-style-8 .td-top-menu-full .menu-item-15579{
display: none;
}
}

Thank you, Emil G.

Hi there,

Is there any way to quickly / easily adjust the view counter? I’ve got a site that has been brought over from a different CMS, and we’d like the view counter to reflect the Google Analytics data.

If there’s no easy way to do this in the theme, can it be adjusted via the database (SQL)?

Thanks.

Hi,

It should be possible to update the fields in the database for each post but you need to build a plugin/function for that. An alternative would be to look for a plugin which retrieves the page views from analytics and posts them on your pages, ex – https://wordpress.org/plugins/google-analytics-post-pageviews/

Note – i didn’t do any tests with this plugin, it’s just an example, if it doesn’t work you have to look for an alternative.

Thank you, Emil G.

I’ve found the location of the ‘post_views_count’ in the post meta – but can you tell me how you are ‘triggering’ the increment? Changing that value doesn’t change the view (so I’m guessing there’s a trigger somewhere that’s holding what the next value should be – as it doesn’t appear to be a simple “views = views + 1” function.)

thank you :)

Never mind – I found it in the ‘custom_fields’ :) Thanks!

Hi TagDiv

1. Please send me the code to remove ads in three specific pages for Header Style 9.

2. How to remove these http://imgur.com/T4P8CK2 only for mobile platform?

Thank You

3. How to Change Default fonts family and size in Post Content and Title

Hi,

1. Each page has a unique id, use the browser inspector to check the class used on each of the 3 pages, ex. – http://screencast.com/t/f4uAhiBSR

.page-id-11 .td-header-header{
display: none;
}

2. The meta can be targeted but you cannot easily target sections of the breadcrumbs because they don’t have specific classes – http://screencast.com/t/C9pcJpFm

@media (max-width: 767px){
.post .meta-info {
display: none;
}
}

3. The fonts can be changed from Theme Panel -> Theme Fonts – http://screencast.com/t/O47VllBEEVO8

Thank you, Emil G.

Hi

I had the custom ad working perfectly but today I looked and it’s gone, nothing has changed besides updating a few minor plugins (contact form, avatar etc.)

I tried deactivating and reposting the ad but still nothing. I’m using the code as described with 3 image sizes.

<div class="td-visible-desktop"> <a href="http://website.org/new/" target="_blank"><img src="https://website/new/wp-content/uploads/2015/06/san-francisco.jpg" alt="" /></a> </div> <div class="td-visible-tablet-portrait"> <a href="http://website/new" target="_blank"><img src="https://website/new/wp-content/uploads/2015/06/san-francisco2.jpg " alt="" /></a> </div> <div class="td-visible-phone"> <a href="http://website/new" target="_blank"><img src="https://website/new/wp-content/uploads/2015/06/san-francisco3.jpg" alt="" /></a> </div>

Hi,

The code seems fine, please check the browser console for errors, it may be a permission error on the image or something.

Also try to disable all plugins and see if the issue is still there.

Thank you, Emil G.

Loving the Theme! Any plan on adding a whatsapp share button and a “shares” things instead of view counter?

Hi,

We plan to add more share options in a future update and whatsapp is on the list, unfortunately the shares counter is not on our list, it affects performance and we don’t plan to add it, sorry. We may reconsider if we find the right solution. The alternative would be to use a plugin and replace the current share buttons.

Thank you, Emil G.

i have send you a request for support about these posts: http://themeforest.net/item/newsmag-news-magazine-newspaper/9512331/comments?filter=all&site=themeforest.net&term=prokopino&utf8=%E2%9C%93#comment_9645424

can you please confirm you have received this?

thank you!

Hi,

I found it, i’ll get back with a reply.

Thank you, Emil G.

Hi tagDiv,

i am using Jetpack and Seo yoast Now i want to remove the Jetpack metatags from the theme.

this is the reference, remove jetpack metatags

my doubt is can you please guide me which file should i update??

Hi,

You should add the code at the end of the ../Newsmag/functions.php file – http://screencast.com/t/RqQI558973B

Thank you, Emil G.

Hi tagDiv,

I think theres something wrong with the view counter plugin because it seriously dont show the right amunt of visitor that come to my website.

Any solution for this?

Hi,

Please provide more details and if possible the url so i can take a look. Also make sure you have the theme latest version. If you use a cache make sure you enable the Ajax View Count in Theme Panel – http://screencast.com/t/wa2Ms24oR

Thank you, Emil G.

The Social Plugin can’t pull the number of my YouTube subscribers. My website is http://gotengvideo.com Could you please give me a direction to fix this problem?

Thanks for your work. I really love it.

Hi,

Please update the theme and the plugin to the latest version and check if the issue is still there.

Thank you, Emil G.

Hi,

How can i use a thumbnail for smart lists? so that if an image is to tall it get’s cropped to certain size.

Regards,

Glenn

Hi,

The theme doesn’t have such a function. It may be doable with custom modifications on the code but it’s not an easy job, i suggest that you hire a professional developer to make this modification for you, look for one on places like – http://studio.envato.com/ – We would have gladly made it for you but for the moment we cannot offer custom work, sorry for this.

Thank you, Emil G.

Hi tagDiv,

Awesome theme and I really like it.

But can you guys show us how to built custom website using Visual Composer or at least the easiest way to learn about it.

I really want to make the 3 featured post like www.eater.com and 3 column article like www.digg.com for the frontpage.

Or maybe you can share any reference that i can refer to.

Thanks tagDiv

Hi,

The 3 featured block used on the first site is not available in Visual Composer, if you need something identical i suggest that you hire a professional developer to build it for you.

You could build a similar page using block 14 and block 4 – http://screencast.com/t/fVJ7RB9EAPPhttp://screencast.com/t/rrfbl8jzKcp6

Then set the page as the homepage on Settings -> Reading – http://screencast.com/t/eNPOqg4s7GzB

Thank you, Emil G.

Thanks Emil G for the suggestions :D

Please In next Update of NewMag Add Two Article Inline Ads, This will be very helpful for more revenue. I also want to know When will be the next update ?

Hi,

I’ve added your suggestion on the list, if more people will request this we will implement it. We have a lot of features on the list and we have to decide carefully which one gets implemented next.

We’re working on the update, for the moment i cannot provide a release date, an approximation would be 2-3 weeks.

Thank you, Emil G.

I was browsing my website on my Lenovo tablet noticed the preview images used for the posts are pixelated and blurry. You can see what I’m talking about if you look for yourself on quirktools.com.

What do I need to do to regenerate the thumbnails being used? I’m using Block 11 on my template settings for my homepage.

Hi,

The images are small and on mobiles they are set to full width. – http://screencast.com/t/H9FxQyEXrS – On small screen devices they look fine but your tablet has a big screen and that’s why they appear pixelated. Add the following css in Theme Panel -> Custom CSS: – http://screencast.com/t/JS7yhfkKbD

@media(min-width: 400px) and (max-width: 767px){
.td_module_10 .td-module-thumb {
float: left;
margin-right: 10px;
}
.td_module_10 .entry-thumb {
width: 180px;
}
}

For thumbnail regeneration you could use Force Regenerate – https://wordpress.org/plugins/force-regenerate-thumbnails/

Thank you, Emil G.

Hi TagDiv,

Just purchased your NewsMag Premium Template.

Tried to register at your web but failed, can you assist me ?

Thank you,

Hi,

Do you refer to the forum? the registrations were down but we fixed the issue, please try again. Sorry for the inconvenience.

Thank you, Emil G.

How can I center the title and category text like this in CSS? http://postimg.org/image/783ujwstf/

Hi,

I only see this – http://screencast.com/t/BjeCEYHtsZzD

Thank you, Emil G.

Like I said the LARGE image at the top [in the pic] is an article thumbnail. I asked, “how can I center the title and category text like that with CSS? Can you please provide a code.”

Hi,

I thought it was an ad or something, sorry. The css depends on what module do you want to modify, basically you need to use the browser inspector on the module to find out the classes used and create a custom css which modifies the current one, ex – http://screencast.com/t/HMqQMPgf5QDS

.td-big-grid-meta{
top: 35%;
}
.td-big-grid-meta .td-post-category{
display: block;
text-align: center;
background: transparent;
color: lightgreen;
font-size: 18px;
}
.td-big-grid-post .entry-title a{
display: block;
text-align: center;
}
.td-big-grid-post-0 .td-module-meta-info {
text-align: center;
}

If you don’t have experience with css i suggest that you hire a professional to make this modification for you. The css should be added inside Theme Panel -> Custom CSS.

Thank you, Emil G.

Hi, I’m trying to register for the support forum but all I see is [td_register_block]. Installed yesterday but have already many questions ;) – but fastets theme I have seen yet straight from standard.

Hi,

Thanks for reporting this, we’re checking it and we’ll fix it as soon as possible.

Thank you, Emil G.

Hello tagDiv support,

I change the font styling of the theme http://screencast.com/t/K5VQMskvM, how to make the changes appear also in the visual editor? http://screencast.com/t/sLsxkkH6cW2

Thanks, Efren

Hi,

I’m not sure what theme version you use. I have check this on the latest version 2.3.5 and it works. Please send an email at contact@tagdiv.com and provide wp-admin and ftp access so we can take a closer look. Also paste a link to this topic.

Thanks! Alin V.

Hello,

I already sent an email to support but still not fixed the problem I just want to remove the styling on the visual editor see the screenshot http://screencast.com/t/WX158CmV It’s annoying because only half of the screen is used.

Thanks

I have replied you just now! Thank you!

Lucian C.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey