Hi
The theme is written according with WordPress standards and it’s optimized for best performances. However there are many factors which can influence site’s load time. In terms of page-speed we made a guide which covers most important aspects google notifies you about, you can find it here: https://forum.tagdiv.com/how-to-make-the-site-faster/
I’ve checked your site with google page-speed and from its reports i’ve noticed that there are a few images which slow the load time. Try to optimize the images following google’s docs: https://developers.google.com/speed/docs/insights/OptimizeImages Also you can use leverage browser cache to reduce the size of the css/js resources served by the server: https://gtmetrix.com/leverage-browser-caching.html
To move render-blocking resources in page’s footer you can use Speed Booster plugin. We covered in our documentation at point 5 how this plugin can be used.
Other useful information about page speed can be found in these topics: https://forum.tagdiv.com/topic/help-moving-style-css-and-fonts-googleapis-com-to-footer/ – https://forum.tagdiv.com/topic/speed-booster-questions/ – https://forum.tagdiv.com/topic/mobile-view-problem-3/
Hope this helps.
Thanks!
Hi
Do you want to load a different logo depending by site’s language? If so that can’t be don using the current theme’s implementation because the logo from theme panel will be displayed on the site even if chose a different language. The container which keeps the logo is td-header-sp-logo and logo’s css class is: td-main-logo http://screencast.com/t/V81IcWoRuZ
If this is not what you mean please provide more detail about what you re trying to do and we will get back to you Tuesday.
Thanks!
Hi
I’ve checked your site and the theme works fine also the widgets from sidebar are displayed fine: http://screencast.com/t/BMzG8wKS
Let us know if you still need assistance on this.
Thanks!
Hi
We didn’t made any testes with Awesome Weather plugin and we can’t provide an accurate answer in this regard. Try to contact plugin’s author and ask him about this as he may be able to provide more informations on this.
Thanks!
Hi
I’ve tested our weather widget in sidebar an it works fine: http://screencast.com/t/AinIexLDVFYd I am not sure why is not displayed properly on your site but id could be due to a conflict with some other widgets added on the page. Try to deactivate all plugins except Visual Composer, clear all caches then test again. Also try adding the widgets in sidebar like here: http://screencast.com/t/a7H9kpOfoFcq
I’ve added your suggestion on our todo list and when the time comes the developers will consider them. This may take some time as we have a long list with feature requests and we have to take them one by one.
Thanks!
Hi
The theme does not have any options to shrink urls. You could try to use a plugin with a similar functionality bu I can’t make any recommendation in this regard as we didn’t made any tests with such plugins and we can’t say how they will work with the theme.
Thanks!
Hi
From what I can see you deleted a semicolon which shouldn’t be deleted. PHP includes conditions between semicolons and in indicated code you have one opened semicolon and two closed semicolons. Make sure you delete only the code which shows author’s meta, not other code.
Thanks!
Hi
On indicated demo we use module 15. This module can be used only with loop part so you have to use page-builder+title as a page template: http://screencast.com/t/umQaFZ4kvnv
I hope this helps.
Thanks!
Hi
The above code will work for any module, I pointed mega menu only as an example how to call the function. To display tags on modules just call the function in the file corresponding with the module used: http://screencast.com/t/odbhQ3jl2vl
Thanks!
Hi
The mobile theme is a plugin included in Newspaper theme and you won’t get any notification from codecanyon in this regard. The mobile theme is available with V 7.1.1 of Newspaper so try to update to that version following our documentation: https://forum.tagdiv.com/how-to-update-the-theme-2/ Also you can check our documentation for more details about plugin’s usage: https://forum.tagdiv.com/the-mobile-theme/
Hope this helps.
Thanks!
Hi
You can chose the module for tag page from theme panel > template settings: http://screencast.com/t/S53nOirZkHJI
Thanks!
Hi
1. Please provide your site url so I can inspect this closer and get back to you with a more accurate answer.
2. You can set a logo from theme panel > header > logo: http://screencast.com/t/eVCV3grQ
Thanks!
Hi
I’ve checked your site with google’s page-speed tool and noticed that the site gets penalized because of some big imaged used. Try to optimize the images following the indication from google docs: https://developers.google.com/speed/docs/insights/OptimizeImages You could also use leverage browser cache to reduce the file size send by the server to browser: https://developers.google.com/speed/docs/insights/LeverageBrowserCaching#recommendations – https://gtmetrix.com/leverage-browser-caching.html
Thanks!
Hi
You will need a custom function which get post id as parameter in order to display tags on blocks or in mega menu. Add this code: http://pastebin.com/9tum1brx in td_module.php: http://screencast.com/t/8WEQxscsu then call the function in td_module_mega_menu.php file like here: http://screencast.com/t/2yerRhrJC
Also you have to use this css in theme panel > custom code > custom css: http://screencast.com/t/EQSYQSxQUih
.tags-mega-menu ul {
display: block;
margin-left: 18px;
}
.tags-mega-menu .td-tags li {
width: auto!important;
}
Hope this helps.
Thanks!
Hi
I assume that you want to customize the archive page for this post type. In this case you can use pre_get_posts filter. Please check this link for more detail about filter’s usage: https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts also this thread may help: http://wordpress.stackexchange.com/questions/192557/changing-posts-per-page-and-offset-with-pre-get-posts
I hope this helps.
Thanks!
Hi
The theme is tested and ad-sens ads works fin with it. The theme don’t change the data from ad-code, it only adapt it to screen’s width: http://screencast.com/t/D8pMXAwiv PLease make sure that the code from google it’s identical with the one pasted in theme panel. Google won’t reject your site because of theme’s ad system. You can test the ad-code within a js-row from Visual Composer and check how it goes: http://screencast.com/t/R4gBbIa1U Using this method theme’s ad-system won’t touch the ad code and will be rendered in its original form
Thanks!
Hi
Replace the code from tag.php with this one: http://pastebin.com/g7QCsfcS Also add this css in theme panel > cystom code > custom css: http://screencast.com/t/hCIxzoJ4
.tag .entry-content{
font-style: italic;
}
Thanks!
Hi
Thank you for your generous thoughts! We’re glad you like our theme. We invest a great amount of time and effort to create and permanently develop and improve our themes. This is why we truly appreciate your feedback.
Thanks!
Hi
You can set a redirect link for that category using this code: http://screencast.com/t/UXUdvgvE
if (!current_user_can('publish_posts')) {
if (is_category('cat-slug/id')) {
wp_redirect(home_url());
}
}
Just add category slug or id in indicated condition and any user which will attempt to access the page will be redirected to home.
Thanks!
Hi
Yes you can edit td_templates_settings.php file and change the permission here: http://screencast.com/t/HABTLhb0dxgk
Let me know how it goes.
Thanks!
HI
Please address us via email at contact@tagdiv.com including a link to this conversation and also give us wp-access so we can have a closer look at this and we will get back to your as soon as possible.
Thanks!
Hi
I’ve checked your site again but theme’s update is not made properly. Try to deactivate all plugin except Visual Composer then update the theme again following the ftp method: https://forum.tagdiv.com/newsmag-install-via-ftp/ clear ll caches, purge cdn files then test again.
Let us know how it goes and if the problem persist please send us an email at contact@tagdiv.com with your login credentials and also give us ftp access. We will inspect this issue as soon as possible,and will get back to you with an answer, also include a link to this topic.
Thanks!
Hi
Mobile theme plugin is available only for Newspaper theme. We didn’t included this feature for Newsmag theme yet.
Thanks!
Hi
Yes this is correct, by adding your code after do_action theme’s ad-spot will be loaded first.
Thanks!
Hi
I’ve checked your site and the theme seems to works fine. However I’ve noticed that you’re using V 3.0 but the css loaded comes from V 2.3.7: http://screencast.com/t/REpPde7fSiIM Try to clear all caches, purge cdn files then test again,
Also provide some specific detail about your issue if still persist as I am not sure I understand it very well.
Thanks!