- NewspaperHomepage – How to build and set it
- NewspaperHow to edit modules for Flex Block X
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperThe Newspaper Mobile Theme: Introduction
- NewspaperHow to Add a Logo in Newspaper
- NewspapertagDiv Shop
- NewspaperHow to Use tagDiv Cloud Library
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperHeader Builder
- NewspapertagDiv Cloud Library Plugin
- NewspapertagDiv Composer Tutorial
- NewspaperNewspaper theme documentation
- NewspaperThe Mobile Theme
- NewspaperPage templates
- NewspaperTheme Colors Introduction
- NewspaperFooter Builder
- NewspaperMain Menu
- NewspaperPre-built Websites: Introduction
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,
I have removed your credentials, I suggest to send email at contact@tagdiv.com when you want to provide admin access and do not post here user and pass.
Anyway please edit your homepage and check Big Grid Slider settings and change the sort order(to latest or other sort order) or tag your articles as featured, you don’t have any featured articles so in this case is nothing to show on block – http://screencast.com/t/t3KVAZjd4H5 – http://screencast.com/t/moBAvOGr
TagDiv Label and TagDiv Invoice are optional plugins and they work only with Woocommerce plugin. If you don’t have a shop on your site you can disable them, you can read more about them here – https://forum.tagdiv.com/tagdiv-woo-invoice-plugin/
Thanks!
I want to change the footer heading at the bottom of my homepage. One of the headings in the footer says ‘Popular Category’ and I want to change it to ‘Popular Categories’. I have searched the Theme Panel, and I can’t seem to find any way to change it there. Any ideas?
View site here: http://www.lifeandtimesmagazine.com
John Great
Hi, May I disable Last Article in Homepage?
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!
Hello jandiederik,
If you want to use Google Adsense into your desired place, you have to use Ad block on the top into your homepage and then you should set it with custom ad from the settings, like this -> http://screencast.com/t/6YbslBHXV -> http://screencast.com/t/ey8uzT4kCH2N and for a better look, you have to disable the header ad to avoid twice banner ads. The result you should see here -> http://screencast.com/t/W8GFJZiwJ
Hope this helps and let us know how it goes!
Thank you for the message!
Hello mzirafos,
Unfortunately, our theme does not have such an option for blog mode but if you want to achieve as you want, it is necessary to alter the code. You should use do_shortcode method and add the code in index.php core file. First of all, you have to create, for example, a block with your desired configuration and then you have to copy/paste the code of this feature from Visual Composer to index.php. Please follow the steps below and try to implement this method into your backend.
Steps -> http://screencast.com/t/EcUZqBidw -> http://screencast.com/t/oZUk6Lue -> http://screencast.com/t/6DH9gcogDwk -> http://screencast.com/t/Zwn0cfQAbrt and from here you have control over your homepage in blog mode -> http://screencast.com/t/QMUb3gnfu
The example of the code is ->
Please try to follow the steps that I gave you above and please notice that after this changes, it is necessary to do some custom style modification for a better look.
If you are not aware the steps in this regard, please consider hiring a freelancer/developer to do this for you because we cannot provide custom work at the moment, sorry!
Thank you for the message!
My home page looks funy. The articles are only on one column when I specifically designed them to be on 2 columns. Even worse my latest articles wont load subsequent pages 2,3,4-39. If I try to go to the next page it just reloads the homepage! Please HELP!!! You can see for yourself http://www.beautygeekng.com
is there a way to display latest posts in the Big Grid Slide Settings (e.g. the first block in the Newspaper Homepage demo) instead of filtering on one of the categories?
Is there a way to avoid duplicate content on the homepage? say im using the basic template?
Hi there
i found another plugin and its look easy..
after install it and creat icons set i add this code to the header file
<?php echo do_shortcode('[aps-social id="1"]')?>
and i get the icons on homepage.. but its look like this..
how to make it work well?
thanks..
Hi,
I know this is impossible with standard settings. But I need to set wordpress to hide some specific categories, which be needed only for setting blocks in homepage.
This is possible with css/php code?
Thank you and Regards!
Hello friends, I’ll go crazy trying to solve this problem, the page from the homepage at the end I always redirected to the homepage, please can you help me.
Default homepage, when consisting of latest posts (as opposed to “static page”), has no page so I can’t edit it’s settings.
What other options can you suggest?
Hello,
Unfortunately the theme does not have such an option but you can however do a css trick and hide menu elements on specific pages. you can have a menu with all the elements at once (in the same menu) and simply hide or show them where you wish with display:none and display:block
For example:
I added these 2 custom menu items: http://screencast.com/t/iVdrTjtnvnB
I want to only show one the first one on the homepage and the other one on another page.
So i will go on and hide the second menu item for the homepage like so:
.home .menu-item-3146{
display:none!important;
}
So now on the homepage i only see this: http://screencast.com/t/xrgmVHlh
In order to make the switch i hide the other one on the other page using the page id (the homepage can be targeted with the home class, for another page you need the page id that can be found here: http://screencast.com/t/QC8pprLGF)
So on the other page we will use this code:
.page-id-3026 .menu-item-3145{
display:none!important;
}
and have this result:
http://screencast.com/t/iyg5I34zWFZe
I hope this helps.
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!
Hi
Please provide more details about how you set up your sidebar for the homepage, a screen from Visual Composer page-builder would help, also provide your site url so I can take a closer look to this problem.
Thanks!
Hello,
As some of my post titles are long they get cut short on the homepage and sidebar widgets with … after them.
How do i get the whole title to show up, no matter how long it is without the dots?
Thanks,
Hello Josh,
I have removed your login information from your post as this is a public forum. IT seems ALL your problems are caused by a plugin incompatibility. Once I disabled all your plugins except visual composer all the issues were fixed. (retina logo works, thumbs now show up, video displays properly, mega menu works) Please try to find the plugins that cause these issues and remove/replace them as they are creating conflicts. Not all plugins work with our theme. This is the case with every premium theme out there. Next time you see any issue that does not appear on our official demo: http://demo.tagdiv.com/newspaper/ then plugins are the number one reason, then comes server configuration and customization.
Unfortunately the category tags on the homepage cannot be customized. You can assign a color for the category tag but it will only display on the post itself.
I hope this helps.
Thank you and best of luck on your project.
Hey,
I’m having problems with the sidebar. I know you can create sidebars through different ways. I’ve created a sidebar for the homepage but i cant see it live. What am i doing wrong?
I also want to change the colour of the titles of the article on the homepage and in the article it self.
How do I enable posts in Featured category to appear in Top posts grid on default homepage?
Homepage is set to display as “Your latest posts”.
Helli Alin, same problem on my own site as well but i changed my permalinks structure and it was resolved “BUT NOT COMPLETELY RESOLVED” BECAUSE, when i click on the next page from my HomePage pagination key, it redirects me to a particular post instead.
Hi, thanks for your reply.
1) the slider I use on the homepage was the default slide of visual composer, and I’d like to use revolution slider. I creat a new page to explain the question, I hope it will be helpful.
2) ok. Could you explain how to insert the “link” of the file with the .woff format? I always fail to download the file on the font squirrel generator.
Thank you.
my facebook fan count was also zero on the social counter, which I set up through the widget on the homepage, but when I set up the social networks in the theme panel, the facebook counter started working with the correct number of likes/fans.
However, my google+ counter still shows zero, even though I have followers, anybody know why?
Regards
Mark