- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsOffset Feature
- TutorialsWhat is Ajax preloading?
hi
Please help me to locate unique article enable and disable switch in newsmag.
Thank you
Junaid
Beansfry.com
here is an expample:
http://www.rnbjunk.com/canzoni/
Ricky Martin is the latest post, it shows normally on category
Under the slider, it’s not showing any new ricky martin news
Hi,
The gallery shortcode default take the “thumbnails” size image that is at 150 x 150px like in your case. You need to setup the gallery shortcode to take a bigger image because the 150×150 px is not enough to cover the layout.
Edit your post and go to classic editor, locate your gallery shortcode and specify the size attribute. You can use from default sizes like “thumbnail”, “medium”, “large”, “full” but this not fit the look, here you can use one thumbnail that is cropped by the theme, all sizes are here: http://screencast.com/t/X7gqK4C9YvG
Here is an example I’ve used td_300x194: http://screencast.com/t/hmgjH7nSC and here is how it looks: http://screencast.com/t/fDPffCDE14X
or if you prefer another aspect ratio of the image you can try other size like: td_238x178 http://screencast.com/t/jKC5o7FSph3
Here is the gallery shortcode if you want to read more details: http://codex.wordpress.org/Gallery_Shortcode
Thanks
Hi , I am unable to customize ads code and show ads without any issue. So, I am giving you my ads code . Pliz solve my problem with my giving ads code. I want to show ads in two different place i,e Before similar article box and after comment box. Just watch my screenshot fully. http://www.screencast.com/t/58g9V9Ani
Ads code is here :
<!– MarketGidComposite Start –>
<div id=”MarketGidScriptRootC12864″>
<div id=”MarketGidPreloadC12864″>
Place your ad here<br> Loading…
</div>
<script>
(function(){
var D=new Date(),d=document,b=’body’,ce=’createElement’,ac=’appendChild’,st=’style’,ds=’display’,n=’none’,gi=’getElementById’;
var i=d[ce](‘iframe’);i[st][ds]=n;d[gi](“MarketGidScriptRootC12864”)[ac](i);try{var iw=i.contentWindow.document;iw.open();iw.writeln(“<ht”+”ml><bo”+”dy></bo”+”dy></ht”+”ml>”);iw.close();var c=iw[b];}
catch(e){var iw=d;var c=d[gi](“MarketGidScriptRootC12864″);}var dv=iw[ce](‘div’);dv.id=”MG_ID”;dv[st][ds]=n;dv.innerHTML=12864;c[ac](dv);
var s=iw[ce](‘script’);s.async=’async’;s.defer=’defer’;s.charset=’utf-8′;s.src=”//jsc.mgid.com/o/n/onefilmy.com.12864.js?t=”+D.getYear()+D.getMonth()+D.getDate()+D.getHours();c[ac](s);})();
</script>
</div>
<!– MarketGidComposite End –>
-
This reply was modified 11 years by
ningthouja.
Hi Emil G.
Please check out this video
https://www.youtube.com/watch?v=WMAvZ-FEN1k&feature=youtu.be
Please advise.
Thanks,
Jose.
What I mean is the block titles. Please visit toppbottom.com. I mean the title such as “Popular This Week” and/or “Recent Albums & Mixtapes.” In size, they are pretty small. I’d like to make them bigger in size and font, even possibly center them in each section.
Hi, I have one doubt.
I created my own categories, but when I access one category, I see duplicate.
Example:
http://tochadigital.tempsite.ws/ux/category/design/
I have the first line (Notícias – Design – Desenvolvimento – Dicas -….)
And I have the other one ((UX) Unboxing – Desenvolvimento – Design….)
How can I remove the second menu?
Thank you,
Adriano
Hi @gossiponthis and @Marius
Yes, I seemed to have missed the setting Marius mentioned. Now there is a “by <author>” field visible under the post title. However, there are still two problems:
1) In Finnish, we do not use “by” 🙂 Just a place for the author’s name is what I need.
2) Typically, the author is someone else than the one who posts the article. For example, I will be publishing contributors’ texts on our WordPress-powered site. *Their* names should appear in the author field, not that of the post editor/publisher.
Thanks again!
-
This reply was modified 11 years by
Vesa.
Hello,
I know I’m bugging you guys a lot. Two days to launch ><
I am writing a custom plugin for Newsmag-child so that I can make the plugin GeoDirectory work with it. I need to know a couple theme specific pieces of information.
- What div would you guys call the outer-wrapper? Is it
div.td-container-borderordiv.td-pb-row? The reason, the content currently spans the entire page likediv.td-containerdoes and I only want it to hook into the narrowed content space of the page for it to display in. - What div would you guys call the content-wrapper? Is it
div.td-pb-span8.td-main-contentor is itdiv.td-ss-main-content? - What div would you guys call the sidebar-wrapper? Is it
div.td-pb-span4 td-main-sidebaror is ittd-ss-main-sidebar
Answers to these questions would be awesome. Thank you.
Hi,
I would like to set the theme to full width, or for example some blocks to cover the whole page as fluid.
Also I would like to make the footer on full width!
Thank you and Best Regards!
David
Thanks, i will try out, i have one more question and because i use color theme as #333 i need your help and how can make the links on post more visible for example i want to place dotted underline.
Thank you very much and with your professional work really worth.
Hi, thanks for your answer and suggestion. I regenerated all thumbs, flashed all caches (both in WP and in Browser) restarted everything and, to be sure, added a new gallery after this.
Sadly the issue still remains as you can see och the sampel page (http://www.chooyu.se/foton/mount-kenya-2007) :-/
/Janne
Hi,
I’m not sure that i understand all your questions. If you want to move the video to be at the bottom, you need to make some code changes. Also this is possible manually if you want only pasting the video link in your post content at the bottom.
If you want automatic here is an example for default post style:
1. copy this code here:
function get_video() {
if (get_post_format($this->post->ID) == 'video') {
//if it's a video post...
$td_post_video = get_post_meta( $this->post->ID, 'td_post_video', true );
$td_video_support = new td_video_support();
//render the video if the post has a video in the featured video section of the post
if ( ! empty( $td_post_video['td_video'] ) ) {
return $td_video_support->renderVideo( $td_post_video['td_video'] );
}
}
}
http://screencast.com/t/TYqXYLWy
2. from the same file, remove this code: http://screencast.com/t/uhXt4KPYKOq6
3. edit a post file, in this case for the default post style and add this code like here, after the content: http://screencast.com/t/f5aMVVeR6
get_video(); ?>
Thanks!
I can understand but i don’t know where to add form trending now ticker. Please provide me the place where i have to add this.
Thank You & Have a Nice Day!
Hi Lucian,
Yes, in my case it is the green uppercase text underneath the excerpt. I want that to link to the article which it belongs to. I am not too sure how to implement that code.
It would be what, for example, http://www.theverge.com are doing and it works really well in their case.
Thanks,
Lukas
Hi,
I have read it and just adding the button should not affect the grid or alter the page layout as you can also see from my examples.
I see that you’ve now added the button. Do you still have issues with this. Please let me know!
Thanks
Good
I go follow step by step
The last!
I did not found this code to remove
<script type=’text/javascript’ src=’https://maps.google.com/maps/api/js?sensor=false&ver=4.1′></script>
What of default no-thumb is not also working and i don’t know how to fix it, example if i publish a post with image the default no-thumb should show?
Look
Google Pagespeed show this in use; but i am not use this
how remove this .js?
https://maps.google.com/maps/api/js?sensor=false&ver=4.1
how add page expiration in htacess? I am using w3 total cache
Please my website is not displaying as it should on internet explorer 6 and below but other higher version it working fine because of that am loosing alot of visitors in Ghana.
my default no-thumb is not also working and i don’t know how to fix it, example if i publish a post with image the default no-thumb should show
Any help to fix that problem?any help to fix that problem?
In the article creation view, there is a slot for the article heading. However, I haven’t found a way to add the name of the author right below the heading – as in the following example:
THE PERILS OF ANARCHY
Joseph Freeman
Thanks in advance for guidance.
Hi Guys,
I am facing problem of making changes on the site.
It does not get updated when we get a confirmation that its updated.
For example if I update a ad , it does not reflect.
Can you advise why?
Thanks,
Nitin
Ok, so long story short, I found out it was a plugin causing the conflict; GeoDirectory.
There is a partial solution at the Geo Directory support forum.
Now, this might go outside the scope of the theme support here but, maybe the theme is keeping the solution from working.
Here goes:
I uploaded a Disqus fork and child-theme functions.php code that works in parent and child theme with GeoDirectory off. When GD is activated, the solution doesn’t work. Here it is. In theory this should work, because the original hack, which this is based on, was all in Disqus and it worked with GD and Disqus active.
Reference: http://wpgeodirectory.com/support/topic/conflict-wdisqus-comments/page/2/
Disqus code mode:
if (apply_filters( 'dsq_can_replace_filter', false )){ return false; }// NomadDevs 13-Dec-2014
functions.php code:
add_filter('dsq_can_replace_filter','dsq_can_replace_begin_hook_change',10);
function dsq_can_replace_begin_hook_change(){
global $post;
if(isset($post->post_type) && $post->post_type && in_array($post->post_type,array('places','events'))){return true;}
}
So I’m still in limbo trying to make this all work. I don’t want to use the hack, 1. because I don’t know code and 2. as soon as the plugin is updated, the hack is gone.
Any insight would be a huge help. Thank you!
Hi, I don’t seem to manage to get this right. At the bottom of the gallery in your example at http://demo.tagdiv.com/newsmag/td-post-this-is-the-recipe-for-a-perfect-vacation-apparently/ there are miniatures of the images. In my case it’s rather just a cut-out corner of the original image. See att http://www.chooyu.se/foton/mount-kenya-2007
Very much appreciate if someone could Point me in the right direction to solve this.
Best rgs
/jan
Did you update something?
Did you install new plugin?
Link to page for example?