- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsDefault Block Settings Guide
- TutorialsOffset Feature
Hello rishab55555,
If you want to move your category description to the bottom of the page, just above the footer, you have to alter a bit the code. First of all, you have to comment/delete this code, according to category template used by you, to avoid having the twice description. For example, if you use category template 3, you have to delete this code -> http://screencast.com/t/YLo1UlPb and then you have to add the code below in category.php file like this -> http://screencast.com/t/WtanSvvV
The code is -> http://pastebin.com/zzApDb7j
The result you should see here -> http://screencast.com/t/TAVP7m4K0c
Hope this helps and let us know how it goes!
Thank you for the message!
Hello DonLuigi,
If you want to reduce that space, please try to use a bit of CSS and add it in Theme panel.
The code is ->
.td-main-page-wrap {
padding-top: 0px;
}
The result you should see here -> http://screencast.com/t/zPbhEBQrEwru
Unfortunately, there is not a simple task and it is necessary to do some additional customizations. For the suggestion, you have to use the code of the single template 3, that look similar what you want to achieve and adjust until you achieve as you want. Please notice that is not easy and you must have some experience in CSS and HTML to complete successfully this customization. If you are not aware the steps in this regard, please consider hiring a freelancer/developer to do this for your because we cannot provide custom services at the moment, sorry!
As a quick solution, you can try using a single template 3 with a bit of CSS to position the meta info.
The code is ->
.td-post-template-3 .td-post-title {
top: 0;
}
The result you should see here -> http://screencast.com/t/fwfdZJTsZQcx
Hope this helps and let us know how it goes!
Thank you for the message!
Hello joyceloh,
If you want to remove other function from your category page, you have to remove/comment from the td_category_template.php file, like this -> http://screencast.com/t/UTH3tJH7WRl and if you want to hide it, without altering the code, please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-pulldown-filter-item:nth-child(2n){
display:none;
}
.td-pulldown-filter-item:nth-child(3){
display:none;
}
.td-pulldown-filter-item:nth-child(5){
display:none;
}
The result you should see here -> http://screencast.com/t/1oo9uauCSPG
Hope this helps and let us know how it goes!
Thank you for the message!
Hi,
I’m trying to setup a Contact Form 7 form on the author bio page so that the email address for the form receipient is dynamically created. I’ve followed instructions on this site – http://en.adamlaki.com/2015/09/23/dynamic-author-email-with-contact-form-7/
For some reason this isn’t working and I have a feeling the author email (user email) isn’t available on the author page template.
Do you have any ideas on how best to implement a contact form that gets sent to the author email address?
Any help would be much appreciated!
Thanks
Hello willyw2k,
If you want to deactivate the last article in homepage you have to use another page template (default or pagebuilder+page title). You have control over these settings from your page set up, like this -> http://screencast.com/t/nNxniWXm
If is not what you mean, please provide more details about this so I will be able to provide a more accurate response.
Thank you for you message!
Hello bhadrabalaram,
Unfortunately, you cannot resize the image that appears in category template 6. Practically, this kind of the image is your background image wich you have set it from your Theme panel, like this -> http://screencast.com/t/Q7GEzcUy6Do and you cannot change it only for this template. Another alternative for you would be using a bit of CSS with the background-image attribute for this category template and insert your desired image. Below I gave you an example how to use this with CSS. Please try to implement this functionality in our theme following the same steps and code.
The code is ->
.td_category_template_6 .td-category-header{ background-image: url('http://www.gettyimages.ca/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg');
background-size: 1164px 400px;
background-repeat: no-repeat;
}
The result you should see here -> http://screencast.com/t/skp9vYhPZqI
Hope this helps and let us know how it goes!
Thank you for the message!
Hi,
What page template do you use? If you use pagebuilder with title please note that the sidebar will be automatically added so it may break the layout, so in this case you will have to set no sidebar layout – http://screencast.com/t/DDcLIhPzJZe or change to default/pagebuilder with latest template.
Please provide a link if you still have this issue so we can inspect your issue.
Thanks!
Hi,
I have checked you site and you use a very old version of the theme, I suggest to update the the latest version 6.6.4 and also update the plugins that come with the theme from /plugins folder – https://forum.tagdiv.com/whats-included/ This issue was fixed in the latest theme version 6.6.4 – http://screencast.com/t/lIM4vyup9xE5
If you want to update the theme I suggest to consider it like a new theme as you have version 3, you cannot use the script to import the theme settings rename the shortcodes like it is specified in the docs for updated from version 4 – https://forum.tagdiv.com/how-to-update-the-theme-2/ so you should threat it like a new theme, recreate your homepage and go through the theme settings to reconfigure it.
If you don’t want to update and you want to use the current version, you should consider to not do any updates even to wordpress and also to the plugins that you use as they could cause issues.
There is also a quick fix for this, but also this is provided for version 6 of the theme. You could adjust this code and add it to your functions.php file – https://forum.tagdiv.com/topic/wordpress-4-4-1-pagination-new-fix/ Try this code, it might work:
add_filter('redirect_canonical', 'td_tmp_fix_wp_441_pagination', 10, 2);
function td_tmp_fix_wp_441_pagination($redirect_url, $requested_url) {
global $wp_query;
if (is_page() && !is_feed() && isset($wp_query->queried_object) && get_page_template_slug($wp_query->queried_object->ID) == 'page-homepage-loop.php') {
return false;
}
return $redirect_url;
}
Please consider to update the theme in near future as you may have other issues with the theme if you update the plugins that you use, wordpress..and we always use the latest version of the theme to help our clients and we provide fixes for problems occurred, like in this case wordpress latest version.
Thanks!
-
This reply was modified 10 years by
Alin [tagDiv].
Hello maxpeerawat,
Unfortunately, you cannot use 2 templates at the same time. Each of template (demo content) has a different style. If you want to have the same design with travel demo, for instance, you have to do some customization in order to achieve this design.
This is the simplest solution of recreating the travel demo homepage on another demo. This cannot be done without the custom classes used by this demo.
Please follow these simple steps to recreate the travel demo homepage with another demo installed:
1) This is the shortcode of the page layout. You can simply paste it inside your page editor in classic mode and text mode: http://screencast.com/t/SUt9ItUc the code: http://pastebin.com/RAA6DkWp
2) The background image will not be found so you will need to add your own image in the row setting: http://screencast.com/t/yB2Bh0rbo
3) This is the final and most important step as the CSS for the travel homepage will not apply without this step. Please add this class: td-travel to the body of the website like so: http://screencast.com/t/fOt9sfquQtVy
This will be the result: http://screencast.com/t/vlZG4G8m1Xpy
Hope this helps and let us know how it goes!
Thank you for the message!
Hi
You can exclude a specific category being displayed in a block from a specific page from block settings like here: http://screencast.com/t/gkfJ9LjGIMt Also if you’re using the pagebuilder + latest as page template the exclude option can be found here: http://screencast.com/t/8zq3mEUh To get the category id follow this link: http://screencast.com/t/sgYkxFE5Cb
Hope this help.
Thanks!
Is there a way to avoid duplicate content on the homepage? say im using the basic template?
How to use 2 template in 1 site?
Now
I used default template but i want to use travel template (include).
It can use 2 template?
Ex.
index = default template.
traval = traval tempalate. (custom page)
Thank you
Hi
The sidebar set here: http://screencast.com/t/Chwkp3Yn it’s displayed only for the latest article section if page template page-builder+latest it’s used.
To add a sidebar for the part of the page built in Visual Composer page-builder you can use a widgetized sidebar block: http://screencast.com/t/VGNpt4zDE3B – http://screencast.com/t/ov5aKaXNd
For more details regarding homepage set up please check our documentation: https://forum.tagdiv.com/newsmag-homepage-how-to-build-and-set-it/ Also you can look over our videos on youtube: https://www.youtube.com/watch?v=TUdVeZ1pbuc&list=PL6CsDkMaejhpWFcFNOIDfdp5nIT0NbUbj
Hope this help.
Thanks!
I am new to TagDiv; I just purchased and installed this for my client, and am working with a design template from a designer. There will be a big horizontal banner at the top of each page, above the menu (approx 1070 X 300). Each page will have its own banner. On the home page, that banner will be a slider/slideshow. Where can I code these in?
Thanks.
Hi there. I would dearly love a little input and advise on how to reconfigure my landing page for our new PigsFly Newspaper. Pretty happy with most things in your brilliant template so far but very confused and not liking the look of how the home page presents when a visitor 1st arrives. Any suggestions or help would be most gratefully received. The new website is http://pigsfly.info
Look forward top your reply
Kind regards
Bob Lee
Thank you, Bogdan B.
Do you happen to know how I can change the “Featured” links on the homepage – http://www.fcengland.com/
At the moment they link through to a post, but ideally I’d like them to go direct to their relevant page. Is there anyway of customizing? Or even using a different image template?
Thanks in advance
Hello Bogdan
Another pbs whith microdata but only in the page
If you want test this one
http://www.funeraire-info.fr/les-professionnels-du-funeraire-en-france/
with
https://developers.google.com/structured-data/testing-tool/
I have error in web page
mainContentOfPage [CreativeWork]:
Thanks à lot for this beautiful template
Best regard
Eric
Hi
You could use a plugin to achieve that or other way would be to edit the theme files and add the share buttons in code. You need to edit every post template used and also every page template: http://screencast.com/t/zir9Tn4Kz and create a new container between header and the post/page content. Note that you have to apply some css style on this container in order to be displayed fine on the page.
This is a complex task and i can’t provide a solution now. If you can’t do this yourself my advice is to find someone to help you with it as we can’t offer custom work at the moment.
Thanks!
I know that I don’t have any Page 2. But your template creates a link there. I provided a screenshot with this link in my initial message. Resending it again: http://take.ms/TacZv
So the question is why the template creates this link and how get rid off it.
Thanks!
Hi there,
I installed the theme and activated all templates to show sidebars.
However, on some selected pages the sidebar disappears and shows with 100% Page Width.
Please have a look:
http://www.mygunnedah.com.au/business-directory/
I deactivated Visual Composer, and the sidebar appears. I activated it, the sidebar is gone.
Please advise !!!!
Thank you !
Hi
To add the code in head you need to edit the header.php file and paste our code here: http://screencast.com/t/7aaHtLY3hHa
You can add an ad code under post title by editing the loop file corresponding with the post template used and the adspot shortcode here: http://screencast.com/t/uA5zQ5AY
echo do_shortcode('your shortcode ad');
To get the shortcode add an ad box into a blank page then switch in backend editor copy and paste this code: http://screencast.com/t/Kcqsjk9C7xbU inside do_shortcode function.
Hope this help!
Thanks!
Is it possible to fit the background-image of a categorypage in the container (outlined with red)?
So I don’t want the size of the image be affected by the screen resolution. Rather I want it to be fixed and fitted in the container. Any ideas?

Hello riolec,
If you want to change the opacity of the homepage post element, you have to use a bit of CSS. Please try the code below and add it in Theme panel->Custom CSS area like this -> http://screencast.com/t/lYHQG5AfKe
.td-post-template-8 .td-post-header {
opacity:0.7;
}
The result -> http://screencast.com/t/IkvCvMXQHo7
Hope this helps!
Thank you for the message!
Hi
In order to get a page with the same layout as on our demos first you have to use a static page as frontage: http://screencast.com/t/8yjuvPZymy Also you can check our documentation, it may help: https://forum.tagdiv.com/newsmag-block-settings-tutorial/ https://forum.tagdiv.com/newsmag-homepage-how-to-build-and-set-it/ – https://forum.tagdiv.com/newsmag-how-to-use-visual-composer/
For menu’s setup please check our documentation https://forum.tagdiv.com/newsmag-top-bar-templates/ – https://forum.tagdiv.com/newsmag-main-menu/ – https://forum.tagdiv.com/newsmag-mega-menu/
If you still need assistance on this please provide your site url and more details about your issue and we will try to help you.
Thanks!
Hello!
Are there any other more in-depth tutorials on how to set-up your site using the theme?
I followed the Video Tutorial for setting up a home page but I’m now really confused – my site looks nothing like the ones in the video and I don’t know how to Edit the Blocks.
I also don’t know how to Set up a Menu Bar.
I added a Blog Posts, but the entire post is just appearing on the home page and it looks nothing like the template I installed.
I’d appreciate some help 🙂
thanks