- NewsmagUsing the theme translations together with WPML
- NewsmagHow to update a plugin
- NewsmagCustom Post Type Support
- NewsmagAbove footer ads
- NewsmagWeather Widget
- NewsmagHow to update the theme
- NewsmagIntroduction
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagCustom ad spots
- NewsmagArticle ads
- NewsmagSidebar ads
- NewsmagHeader ads
- NewsmagLoading image effects
- NewsmagCategory top post styles
- NewsmagSmart Lists
- NewsmagGeneral settings
- NewsmagTheme thumbs
- NewsmagtagDiv slider gallery
Hi Folks, I have a little issue with Firefox (Vers. 34.0) in combination with the Revolution slider and the WP-search. When hitting the magnifier, the search box pops up for a second only. No change to enter the phrase – at the same time (klicking magnifier) the slider moves forward – uups?!
To see this, have a look here: https://goldschmiede-cafe.de/goldschmiede-bender-sarto/
No problem in IE so far, works well.
Any ideas?
Hi,
I have searched your site but couldn’t find an example for this as I have also checked on demo and haven’t found any issues of this type:
ex:
* on homepage slider this image has 63.3 KB: http://screencast.com/t/RNThhptAmh
* on post page it has 323 KB: http://screencast.com/t/M8qeVVkS82
I’m not also sure how this happens for you in first place as normally an cropped image should weight less than the original one or than one that is wider or higher especially if the thumb image is cropped from the original larger one in which means the quality should be the same.
As I have noticed, in your case, is that you use an CDN host service so to make sure that this isn’t happening somehow do to it I suggest purging files then empty cache and deactivate all other plugins also then check again by uploading an image and settings it on blocks/sliders and check again for this and let me know of what you find.
Thanks
I also had a problem with this, but I worked around it by creating different “featured image” types in functions.php using the Multiple Post Thumbnails plugin. I inserted a Big Image function in place of where “featured image” is coded in the appropriate singe_template files.
example: <?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'big-feature'); endif; ?>
okay, this “might” be the issue, might not…
in looking at the /includes/less_files/font-icons.less
I did find this …
@font-face {
font-family: 'newsmag';
src: url('@{td_css_path}images/icons/newsmag.eot?6');
src: url('@{td_css_path}images/icons/newsmag.eot?6#iefix') format('embedded-opentype'),
url('@{td_css_path}images/icons/newsmag.woff?6') format('woff'),
url('@{td_css_path}images/icons/newsmag.ttf?6') format('truetype'),
url('@{td_css_path}images/icons/newsmag.svg?6#newsmag') format('svg');
font-weight: normal;
font-style: normal;
}
While on the “face” of it (typography pun 🙂 ) … that “should” work, and follows modern practice … the ?# might be breaking somewhere, but doubtful.
e.g.,
normal use:
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
By contrast this is how I load the Font Awesome font on our main business site at bottom of the main minified CSS file:
(un-minified for easy read .. without the FA style classes….)
@font-face{font-family:'FontAwesome';
src:url('/assets/fonts/fontawesome-webfont.eot');
src:url('/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),
url('/assets/fonts/fontawesome-webfont.woff') format('woff'),
url('/assets/fonts/fontawesome-webfont.ttf') format('truetype'),
url('/assets/fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}
Putting it at bottom of our main style.css worked best for us as it wasn’t being loaded through a separate load/include function.
So, if somebody – who can’t see the icons on their own website – wants to try putting the CSS for the font at bottom of their style.css file, have at it, then re-testing their website to see if the fonts work. Not sure where the less file is being called from … possibly the speed booster master file or functions.php.
I can’t test as I am not having the “I don’t see icons” issue.
Hi,
It would be great to ad a new ad position, just above the post title and crumbs, and below the header (here an example). It would be nice for intance for auto promotion of Facebook fan page, or other ads formats, etc…
What do you think?
For some reason the information of what ‘ ‘ and & becomes got hidden…Kim Matula’s Last Airdate on ‘B&B,’

Running a newsmagazine website and for movies and television shows we use quotation marks (ie. “title”) around the name of a movie or TV show in the body of a post. However, in the title of the post itself we use apostrophes around names of movies and TV shows (ie. ‘title’). When using the Twitter button, the usage of ‘title’ become ‘word while the usage of & (ie. ‘B&B’) becomes & How can this be corrected? It only happens with the Twitter button that comes with the theme, not the official Twitter button/icon.
NOTE: As a point of reference, if a word used in the title of the post has an apostrophe it also creates the special characters.
You need to add the variables for the format you want inside the () like in the example on the codex page:
<?php the_modified_time( $d ); ?>
You can look up the letter abbreviations for server time online.
eg.
Year yy 2 digit year 04
yyyy 4 digit year 2004
Month MMMM Full month name January
MMM Short month name Jan
MM Month number (zero padded) 01
M Month number 1
Weekday wwww Full weekday name Tuesday
www Short weekday name Tue
Day ddd Ornate day of month 2nd
dd Day of month (zero padded) 02
d Day of month 2
24 Hour HH Hour of day (24h, zero padded) 03
H Hour of day (24h) 3
12 Hour hh Hour of day (12h, zero padded) 04
h Hour of day (12h) 4
tt AM or PM AM
t AM or PM (short form) A
Minute mm Minute of hour (zero padded) 05
m Minute of hour 5
Second ss Second of minute (zero padded) 06
s Second of minute 6
Epoch epoch Seconds since epoch (1970) 1062201058
Hi,
You can doit using a plugin like Advanced Custom Fields, take a look here for an example – https://forum.tagdiv.com/topic/function-to-hide-ads-and-function-to-show-author/
Basically you need to create a checkbox that will appear on each post editing area, and a condition on the author box to appear only when the box is unchecked, you can find the author box function here – http://screencast.com/t/EVD3CDvhYHkM
Thank you, Emil G.
hi everybody,
i’m trying to reduce image weight, mostly working on compressing quality of the default image i upload on the single article.
but i’ve noticed that when that article (and that image) appears on the slide as the opening image on homepage, or on blocks, that image is often heavier than the default one, also if it’s cropped.
example:
– article img 1074*483 73K
http://papille.papilleclandesti.netdna-cdn.com/wp-content/uploads/2014/12/Buratto_pizzeria_genova-1074×483.jpg
– same img cropped on the homepage opening slide 700*357 80K
http://papille.papilleclandesti.netdna-cdn.com/wp-content/uploads/2014/12/Buratto_pizzeria_genova-700×357.jpg
is there a way to reduce weight to reduced images used on blocks?
on the blog there is already a wp-smush plugin active, and the media compression quality is setted to 50%
thank you!
giulio – papilleclandestine.it
Hello,
We are not using adsense ads, but doubleclick server ad on our site. When i put a code “non adsense” it doesn’t show on the theme, even if they are the same dimensions of a normal adsense blocks.
Exemple of ad code
<script type=”text/javascript”>
var ord = window.ord || Math.floor(Math.random() * 1e16);
if(typeof(v_tile)==”undefined”){var v_tile=1}else{v_tile++}
document.write(‘<script type=”text/javascript” src=”http://ad.doubleclick.net/N5902/adj/rnbjunk/home;sz=300×250;tile=’+v_tile+’;’+JADV_DFP_SEM+’ord=’ + ord + ‘?”><\/script>’);
</script>
<noscript>
</noscript>
Hi Guys,
This morning I noticed that my header logo is not visible on my android & Iphone. On the tablet it’s visible normally. Can you take a look at it for me?
ceppetto.com
Thanks in advance!
Hi,
On the Phone, in mobile view: How do I get our homepage images to act like the images in the Demo? We are using Block 9. In the Theme Demo on mobile, the images are large and above the text. On ours in mobile the images are tiny thumbs and pushed to the left of the text.

Thanks for your help!
best,
– Lanell
I have a problem with the star rating. It is showing correctly when the overall score is 3.5 but when the score is 3.8, it is showing just 3 stars. For example: http://www.techwalls.com/outdoor-technology-privates-wireless-headphone-review/
Let me know how to fix it.
Thanks
Hello,
I am having trouble about how to create different template for each page from the menu header. For example I would like to have a menu header with different pages for Fashion, Politics, Business and etc and I would want these different pages to have their own different template so that they won’t share content as Latest content for Politics will be only for Politics not for other pages.
Also you can email me at info@yandesa.com
Thanks.
Hi,
I need help with fixing a photo alignment problem on blog posts. In the author archive view, if the photos have captions, they mis-align and push to the right. When you click through to the full post, the alignment is correct with the captions.
Link to example of mis-aligned photos with captions: http://womensfoundationofcalifornia.org/author/sande-smith/
How can I fix this so that the photos with captions on the author archive view are in their correct location?
thanks!
– Lanell
Solved ! If someone had a same problem, example of colored menu bellow:
.menu-item-MENU_ID {
border-bottom: 4px solid #B5A594;
}
.menu-item-MENU_ID > after {
background-color:#B5A594;
}
.menu-item-MENU_ID > a:hover {
background-color:#B5A594 !important;
color:white !important;
}
.menu-item-MENU_ID.sfHover > a {
background-color:#B5A594 !important;
color:white !important;
}
.menu-item-MENU_ID .sub-menu li {
background-color:#B5A594 !important;
}
.menu-item-MENU_ID .current-menu-item li {
background-color:#B5A594;
}
.menu-item-MENU_ID.current-menu-item{
background-color:#B5A594 !important;
color:white !important;
}
.menu-item-MENU_ID .current-menu-item > a {
background-color:#B5A594;
}
.menu-item-MENU_ID.sf-menu > a {
background-color:#B5A594 !important;
color:white !important;
}
-
This reply was modified 11 years by
eox.
I am from California.
You are right, I can’t see icons on the demo http://demo.tagdiv.com/newsmag/. However, I CAN see other sites using icon fonts via same browser (Chrome) with setup and plugins unchanged, for example:
http://themeforest.net/item/voice-clean-newsmagazine-wordpress-theme/9646105
http://themeforest.net/item/newsline-responsive-news-and-magazine-theme/9614971
http://themeforest.net/item/top-news-wordpress-news-magazine-theme/9359816
Of course, I CAN see icons on themeforest.net.
Might be something wrong at my side, but what it is? I even disabled all extensions, emptied cache, in Chrome, just the same.
-
This reply was modified 11 years by
handiso.
Note – if you really want to “debug” this you would need to
1) specify which OS version you’re using on your computer, the browser version, what anti-virus or anti-malware you’re using (both Avast and Symantec have wonky issues from time to time) – try turning them off to see if that causes the issue. Don’t use “branded” versions of web browser provided by an ISP like TimeWarner, etc. Use the un-branded versions of web browser.
Turn off ANY “ad blocking” software.
2) be sure to run a full anti-virus scan, clear temp files from your Windows system if running Windows, fully clear the cache in your web browser(s).
Check the theme forest demo of the theme, check the thread where somebody is again suggesting “post your sites here” to see different sites, and see if icons appear or not.
If several people post their setups here, one might be able to determine the commonality of the culprit as to why “a few” people are having this issue while the majority do not. I don’t think anybody would be buying these themes if all the icons were broken in the demo, for example.
That’s about all I can think of at this point.
Hi,
Thanks! Please use this custom css to change the list images: http://screencast.com/t/X1jCQBdL
.td-post-content ul {
list-style: url(https://fbcdn-dragon-a.akamaihd.net/hphotos-ak-xpa1/t39.2365-6/851584_550213765042223_593501542_n.png);
}
.td-post-content ul > li:before {
display: none;
}
Replace the list style url path with your own and add the other lists that you want to style like this to the css as this is just for posts lists.
For quotes it’s not that easy. You can chose pull quotes center style for example then replace the content the “before” element which contains the right quotes image with your own then style the quotes to look and fit well with your image.
Ex:
1. set pull quotes center: http://screencast.com/t/v1QPOfu1Asb
2. replace the background image of the first quotes with your own and hide the other from the right. You also need to change the height and width values.
Here is an example of how it could look: http://screencast.com/t/m5JuU7Ef
.post .td_pull_quote p:before, .page .td_pull_quote p:before {
background:url('http://islamicartdb.com/wp-content/uploads/cache/2014/12/quote-icon-def/780757907.png') no-repeat;
width: 50px;
height: 50px;
top: 10px;
}
.post .td_pull_quote p:after, .page .td_pull_quote p:after {
display: none;
}
You need some css/html knowledge to get this done so if you don’t know how to customize this we suggest you to get a freelancer from sites like: http://studio.envato.com/ as you need custom work for this and at the moment we cannot provide custom work as we work hard on the development, updates, fixes and support.
Hope this helps!
Thanks
Hi,
You don’t have to do it for every thumb in part. Please provide an concrete example of a missing width/height attributes on your site.
Thanks
Okay! Now i understand…
loop-single.php is the main template and loop-single-1.php, loop-single-2.php etc.. is the other templates.
I did not use the main template, thats why nothing showed up..
______
But i got one problem, the facebook share button is not centered, do you know why? The code says “centered”….

Here is the code.
<div style="text-align: center; border:0px !important;">
<script type="text/javascript">// <![CDATA[
function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}
// ]]></script>" target="_blank">
</div>
Hi,
Is there any sample code to hide ads in specific post by Advanced Custom Fields like https://forum.tagdiv.com/topic/function-to-hide-ads-and-function-to-show-author/#post-8993
Thanks
Hi there,
Thanks for the theme, it’s great!
I am in the process of migrating an existing website (1,500 posts) which uses a lot of quote format posts. An example can be seen here.
I have included the quote post format into the ‘functions.php’ file, but am unsure where to go from here. What is the best way that you would advise to use the quote format post with the theme?
Best,
Matt
Hello,
My website CSS doesn’t load for some users and website speed sites.
Examples of a recent test:
1) http://www.webpagetest.org/result/141203_XT_MTH/1/screen_shot/cached/
2) http://gtmetrix.com/reports/www.twitcelebgossip.com/9Epz7efT
Tried all my plugins, nothing wrong there.
I have no speed improvement plugins activated including TagDiv’s.
The only one i have is,W3Cache page cache enabled with a CDN activated as well.
One visitor said it doesn’t work on their kindle HD Fire?
Not sure what the problem is?