Hi,
There should be no problem activating the theme. These are the steps required to activate it normally
– https://forum.tagdiv.com/newspaper-6-how-to-activate-the-theme/
Another method of activating the theme is the manual activation
– https://www.screencast.com/t/Qwc3a7eHp
– https://www.screencast.com/t/mcOlYrwY
Please let us know if you still have problems in this matter, and what exactly is happening.
Thanks
Hi,
Please check the theme system status and make modifications to the server and WordPress parameters mentioned in this guide, if necessary
– https://forum.tagdiv.com/system-status-parameters-guide/
You could ask your hosting provider to make theme for you if needed. Then load the desired translation again
– https://forum.tagdiv.com/loading-translations/
Let us know if there still is a problem.
Thanks
Hi,
That background overlay could be removed with a code like this
– https://www.screencast.com/t/XBfG9A1IU
.td_module_mx8 .td-module-thumb a:last-child:after {
background: none;
}
The post title is set to the color you wanted, so that code is working at the moment.
Thanks
Hi,
There are option in the theme panel to stretch the header elements, just for this thing so the menu items do not fall on a second line
– https://www.screencast.com/t/m76yCM7vz
You could try experimenting with these settings. Also this code is affecting the header container
– https://www.screencast.com/t/m76yCM7vz
Without that code affecting the header it would look like this
– https://www.screencast.com/t/QQd2mfLEN
Thanks
Hi,
1. There should be no issue from the theme perspective, that would affect migrating the website. Use the migrating tools provided by the hosting, maybe make backups before. Theme panel settings can be exported as well
– https://forum.tagdiv.com/import-export-theme-settings/
If you have not yet activated the theme, you can activate it on the new location. Even if it were activated there is a setting in the theme system status to reset the activation key, for this purpose
– https://www.screencast.com/t/CEFH7vSP
2. Usually that is caused by some server and WordPress parameters. These parameters can be seen in the theme system status. This is a guide mentioning the necessary values to ensure the proper functionality of the theme and provided plugins
– https://forum.tagdiv.com/system-status-parameters-guide/
Thanks
Hi,
Visual composer has options to hide columns on specific devices
– https://www.screencast.com/t/xbjl5JK0nc2
But the tagDiv composer does not have any options like this at the moment. If you use it, this could only be done with CSS as you tried, and make the code more specific maybe by setting classes to rows and columns as well
– https://www.screencast.com/t/VC7eHAU8
– https://www.screencast.com/t/RkucMd6Ju4Bq
Thanks
Hi,
A specific option does not exist in the theme for this. You could either remove the category description from the category template files
– https://www.screencast.com/t/nHYeJdm7
Or use some CSS code to hide it. A code like this should do it, just enter it in Theme panel->Custom CSS section.
.category .td-category-description {
display: none;
}
Thanks
Hi,
Please send us the information by email at contact@tagdiv.com not here in the forum. This is public everyone can see this. We will take a look. Also paste a link to this topic in your email. I have edited and removed the sensitive information from your reply.
Thanks
Hi,
You could try to fix the image display problem, by entering this code in Theme panel->Custom CSS section
– https://www.screencast.com/t/80cr47VbCrx
.td-doubleSlider-1 .td-slide-item .td-slide-galery-figure img {
margin-bottom: auto!important;
}
Thanks
Hi,
That is the last element in the breadcrumbs, there is a condition that this will not have a link. If it had, I believe it would link to the same page, and there is no point in that. If you were to remove that condition the last element in the breadcrumbs will have a link
– https://www.screencast.com/t/xBLc2GGn2
I believe you also have article titles in the breadcrumbs disabled
– https://www.screencast.com/t/UPziz6ed
If those were enabled then the category will have a link, since they will not be the last item in the breadcrumbs.
Thanks
Hi,
From what I can tell, the row containing the image is not stretched. Please check if that is the case by editing the page in the composer and checking in the row settings, for the row where the image is placed
– https://www.screencast.com/t/X3SfcaFLx
Thanks
Hi,
It seems there is a bit of misunderstanding here. When you use the mobile theme plugin, content for mobile pages has to be entered in the Mobile editor for each page, just as the guide specifies
– https://www.screencast.com/t/s4CAC0te
Content in pages built with the composers will not be displayed. This is meant to improve the performance on mobile, keep things as simple as possible.
Please note that the mobile theme plugin is optional, you can simply deactivate it. Then the same pages and content from desktop will be displayed on mobile. The main theme is fully responsive and will adapt to every device.
Thanks
Hi,
The easiest way would be to insert that text with CSS code, like in this example
– https://www.screencast.com/t/u88MmnucgSPp
This is the code used in the example, if you decide to use it enter it in Theme panel->Custom CSS section
.entry-crumbs span:first-child:before {
content: 'You are here : ';
}
Thanks
Hi,
The gradient could be removed with some CSS. The bottom box color in that grid style will be the theme accent color
– https://www.screencast.com/t/L4H3XI3z
You could keep the current accent color and change the bottom, box color with a code like this
– https://www.screencast.com/t/hdwUP1xoExy
The color is in rgba format, the last value being the opacity or transparency of the background color. You can use any color or color code format you want. Then enter the code in Theme panel->Custom CSS
.td_block_big_grid_fl_9.td-grid-style-4 .entry-title {
background-color: rgba(75,0,130, 0.7);
}
Thanks
Hi,
1. The latest articles section can only be removed by selecting a different page template. It can be customized in terms of module used and content displayed, and can have a custom sidebar set
– https://forum.tagdiv.com/page-templates-2/
2. You can only chose from the available predefined footer templates. The footer section cannot be edited in a different way. There are a maximum of three columns that can be used in the footer, in which you can add widgets.
3. For blocks there is another setting in the theme panel here
– https://www.screencast.com/t/QxDosamWza92
4. The More articles box can be disabled or customized. This is a guide
– https://forum.tagdiv.com/more-articles-box/
Thanks
Hi,
If you mean these arrows
– https://www.screencast.com/t/z7ZAW1uy
You could remove them with a code like this if that is what you want
– https://www.screencast.com/t/rsZ2jtkZXPz
.td-header-main-menu ul.sf-js-enabled>li>a>i.td-icon-menu-down:before {
display: none;
}
Thanks
Hi,
Yes, I see the issue now. That happens because the initial color of the menu is black. This black color is then overridden by the color set in the theme panel. This is basically CSS code, this works in cascade. First the black color is loaded, then the white color follows
– https://www.screencast.com/t/GAobBzb3O2
This effect or flash can sometimes be noticeable. In this case what you can do is to make a small modification in the theme stylesheet. Modify the initial color to white as well here
– https://www.screencast.com/t/rgVj3orUlUVV
Or remove the background color entirely
– https://www.screencast.com/t/aR7Qt5mehB
Try it like that and check the result. Maybe clear the cache as well.
Thanks
Hi,
So basically you want to replace the category page with a custom page that you created. You could create a redirect to achieve this. When the mentioned category link is clicked it will redirect to the page you want. There are redirect plugins that have this possibility
– http://www.wpbeginner.com/beginners-guide/beginners-guide-to-creating-redirects-in-wordpress/
Thanks
Hi,
That is not supposed to happen. Once an ad is entered in the Header ad section of the theme panel, it will be displayed on the whole website. That is normal behavior. Please provide a link to your website so we can inspect the issue.
Thanks
Hi,
I could give you a code to left align those images on mobile. The theme treats them like normal images in the post content, and automatically centers them on smaller devices
– https://www.screencast.com/t/y2L0SjnOA
@media (max-width: 500px) {
.alignleft {
float:left;
margin-right: 21px;
}}
Enter the code in Theme panel->Custom CSS section, then check if it is working properly. Maybe clear the cache if the code does not apply after entering it.
Thanks
Hi,
Some footer templates have predefined content in their structure, while other templates are blank
– https://forum.tagdiv.com/footer-templates/
The predefined content cannot be removed in the widgets options.
You simply have to choose an empty footer template, and add the desired widgets in the three footer sections
– https://www.screencast.com/t/5E4UUbdY5OyX
– https://www.screencast.com/t/IpJlSvXd
Thanks
Hi,
There is a current issue with the text elements, in the theme. When setting a row background it will be displayed over the actual content, instead of a background.
This issue will be fixed in the next theme update, in the meantime please enter this code in Theme panel->Custom CSS
– https://www.screencast.com/t/vrPcQqSQA2e
.wpb_text_column .td-element-style ,
.td_block_text_with_title .td-element-style {
z-index:-1;
}
Thanks
Hi,
The whole homepage seems to be displaying posts from June and July, even though there is newer content that I can see upon using the block pagination
– https://www.screencast.com/t/8RPdXdwu
– https://www.screencast.com/t/sl5oLrEzEFJF
The category pages also displays posts from around that period of time
– https://www.screencast.com/t/XIdyoaWcy
If this is caching it is pretty strong caching. That would also explain why logged users do not have this problem, while visitors get served with cached pages. Exactly the same content is displayed, refreshing the page will not matter.
Please contact the hosting provider and describe the problem. The server might have it’s own caching implemented, if you do not have caching installed. Deactivate it and install your own, or maybe configure it different if possible.
Thanks
Hi,
You could simply enter the image in a column text or text with title element, this will display the exact image as entered
– https://www.screencast.com/t/ZFSLwVJIn
Then simply stretch the row to full width
– https://www.screencast.com/t/GtVXBAMy
The single image element will be further improved over future updates, and also more elements and options will be added to the tagDiv composer.
Thanks
Hi,
The most recommended method and also guaranteed to work is to regenerate the thumbnails
– https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
This process will recreate thumbnails from the featured images.
The thumbnails are defined in this theme file if you want to change how future thumbnails will be created, in the code
– https://www.screencast.com/t/hQhW0WEf
You will have to modify the module used as well, each module uses one of those thumbnails
– https://www.screencast.com/t/xd6lCHNJSdi3
There will probably be need for additional CSS styling for the module, as other elements displayed on it depend on the current thumbnail size for positioning margins, padding etc.
Thanks