Hello,
This can be achieved in 2 ways. The first one is choosing a different grid style. Take a look at our demo and switch between grid styles here: http://demo.tagdiv.com/newspaper/big-grid-1/ Style 4 is the brightest one. This style can be selected in visual composer: http://screencast.com/t/wF53pOxdCQb
If you do not wish to change the style and you use style 1 (i assume) then you can use css to remove the gradient:
.td-grid-style-1.td-hover-1 .td-module-thumb a:last-child:before{
display:none!important
}
Thank you!
Hello,
Our theme does not have such an option. It can be added in 2 ways. Either by a plugin , or by hard-coding it. Here are a few resources to help you in this matter:
http://www.wpbeginner.com/wp-tutorials/how-to-add-youtube-subscribe-button-in-wordpress/
http://stackoverflow.com/questions/2564084/how-do-i-get-the-same-buttons-as-youtube
Thank you!
Hello,
In order to hide adsense on specific posts or categories, you will need to edit the theme files and add conditions:
https://developer.wordpress.org/reference/functions/is_single/
https://developer.wordpress.org/reference/functions/is_category/
Please follow this topic to see how it can be done:
https://forum.tagdiv.com/topic/hide-adsense-ads-from-a-single-post/
Thank you!
Hello Vishal,
Unfortunately the theme does not have such an option. We have lots of requests for the infinite scroll option but unfortunately it’s not so easy to accomplish. There are many implications in adding such a feature. This being the case, we cannot provide a quick solution for it at the moment. We have this request on our list of updates and in a future version we hope we can implement such a feature. Untill then you can maybe find a plugin that has this option.
Thank you for your understanding.
Hello,
In order to increase your site speed, you need to follow this guide: https://forum.tagdiv.com/how-to-make-the-site-faster/
you will have to use the speedbooster plugin to move render blocks to footer. Speedbooster will not work with all your plugins as it has a compatibility list in it’s code and some of your plugins are not compatible with it. There is a workaround however. you can remove this code: http://screencast.com/t/RZLIOPUNdqh
As for cdn and minify, we also use cludflare.
I hope this helps.
Thank you!
Hello,
Unfortunately we cannot inspect your website: http://screencast.com/t/c0D07bsK
Please make sure you disable all plugins except visual composer and clear your cache. The update should not affect your grid or images. if you updated from newspaper 4, then you will need to run the update script as this guide shows: https://forum.tagdiv.com/how-to-update-the-theme-2/
Thank you!
Hello,
Sorry about that, you will need to add an extra padding to compensate for the top part: please add this to the code:
padding-bottom: 530px;
Now the full code should look like this:
.home .td-main-page-wrap{
position:relative;
top:530px!important;
padding-bottom: 530px!important;
}
Thank you!
Hello,
It is normal to see only one image in the library and many thumbnail created for that particular image. The theme creates different thumbnails and different sizes for a single image that are used in it’s modules and blocks. This affects loading times a great deal as the featured image on modules and blocks does not need to load the full size image. Instead it simply loads the smaller thumbnail created for that particular image.
You can read more about thumbnails here: https://forum.tagdiv.com/theme-thumbs/
You can see a list of thumbnail getting generated here: http://screencast.com/t/OqgLsiUG5xlW
In order to save some space on your server, you can select just the thumbs you want to use from this list and uncheck the others so no unused thumbs will get generated. Then you can use a plugin that deletes the old thumbnails and creates the new ones you chose called ‘force regenerate’
I hope this helps.
Thank you!
Hello,
You could add a custom css class to the row in visual composer: http://screencast.com/t/PEo4GXo5
And then use this class with css and apply some changes to it. You can add a max-height if you want like for example:
.customrow{
max-height:800px
}
I’m not sure how the content underneath it will display, but you can use different selectors and attributes in css to position them.
You can use the .home class if just the homepage is affected by this rotating containers so you will not accidentally affect the rest of your site with the custom css.
I hope this helps.
Thank you!
Hello,
This can be done with css. Every menu item has a specific class that can be targeted. You can use this code to increase the font a bit:
.menu-item-2144 a, .menu-item-2145 a{
font-size:16px!important
}
result: http://screencast.com/t/k7SD68oMb
Thank you!
Hello,
Thank you for appreciation.
You can try to add your content inside the smartlist file in the child theme: You will have to create the smartlist path and move these files over to your child theme: http://screencast.com/t/0RKJoBNqJT
Then you can edit the smartlist you use and add the shortcode with a do_shortcode function like so:
http://screencast.com/t/JnFFBrDSt2l
$buffy .= do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');
This was an example for an ad on smartlist 7. I assume the comments have a shortcode as well so you can use the same function to make them display inside a smartlist.
I hope this helps.
Thank you!
Hello,
As far as we know the current version of newsmag has no issues with the latest version of wordpress. We have not encountered any bugs or issues with it so it.
Thank you!
Hello,
Unfortunately as the plugin is not tested, we are not sure if it will work properly or not. At the moment we cannot offer support for plugin implementation but we are open to suggestions. Maybe in a future version of our theme we will be able to provide support for it but at the moment this does not represent a priority.
Thank you for your suggestion and your understanding.
Hello,
Please send us an email at contact@tagdiv.com and provide login information (wp-admin) so we can take a look. Please also include a link to this topic so we can identify you.
Thank you.
Hello,
Unfortunately we have not tested the polylang plugin and we have no idea of it’s functionality. If the plugin does not provide the list you require, then it means it can only be made custom. If you truly need this customization, we recommend you get some hired help on this one as we cannot provide a solution for it.
Thank you for your understanding.
Hello,
Unfortunately the theme has no control over the product category, but maybe this guide will help:
https://docs.woothemes.com/document/woocommerce-shortcodes/ or as an alternative maybe a plugin could do the trick https://wordpress.org/plugins/woocommerce-product-archive-customiser/
Thank you!
Hi,
If you want to remove the category tag on that particular big grid, you can use this code:
.td_block_big_grid_7 .td-post-category{
display:none!important;
}
I hope this helps.
Thank you!
Hello,
I have also checked these links and they seem to work and display fine. Please let us know if you still have this problem and provide more details if you do.
Thank you!
Hello,
If you are referring to speedbooster, that compatibility issue can be disabled if you want by removing this code from the plugin files: http://screencast.com/t/RZLIOPUNdqh
Now the plugin should work with every other plugin you might use.
Thanks.
Hello,
Unfortunately the theme has no such options as our theme uses the default wordpress comments, just styled differently.
You can follow this tutorial on how to limit the comment length: http://www.wpbeginner.com/wp-tutorials/how-to-limit-comment-length-in-wordpress/
As for the phone filed:
http://www.wpbeginner.com/plugins/how-to-add-custom-fields-to-comments-form-in-wordpress/
https://wordpress.org/support/topic/adding-an-extra-field-to-the-comments
I hope this helps.
Thank you!
Hi,
In order to implement google search in our theme, you can follow this topic: https://forum.tagdiv.com/topic/how-to-create-a-google-custom-search-page/ and follow the tutorial there.
Thank you!
Hi,
If you want to change the links color on the homepage, you can use this css:
.home h1>a, .home h2>a, .home h3>a, .home h4>a, .home h5>a, .home h6>a {
color: #378EDF;
}
Thank you!
Hello,
If you disable the loading effect from the theme panel, then the lazyload will not apply anymore. Pl;ease try it with your ad and let us know if it still affects the ad if the option is disabled. http://screencast.com/t/ibRw2YS5f9r
Thank you!
Hi,
We sent you an email with the appropriate patch you need to use.
Thank you!
Hello,
Here is a tutorial on how to create a new thumbnail in our theme:
1) Access td_config.php and add the new thumbnail code like so: http://screencast.com/t/06jMvMcJjKl
In this case we are adding this thumbnail:
td_api_thumb::add('td_280x173',
array(
'name' => 'td_280x173',
'width' => 280,
'height' => 173,
'crop' => array('center', 'top'),
'post_format_icon_size' => 'normal',
'used_on' => array(
'Module 10'
)
)
);
2) After you added the code for the thumbanil and renamed it to match the sizes you want, you will need to access the module you want the thumbnail to be used in: http://screencast.com/t/UaYgy9aX
3) If everything went right, you should now have a new thumbnail in the theme panel which you need to activate: http://screencast.com/t/tfpPcacE
4) Now you need to regenerate your thumbnails: http://screencast.com/t/KvlRwhBY7
5) Now your new thumbnail will display in the module you set it to: http://screencast.com/t/WOP0f7yp
In most cases it will need a few css ajustments in order for it to display properly.
For this particular example you can use this code:
.td_module_10 .item-details{
margin-left:295px!important;
}
Final result: http://screencast.com/t/4gF43GDos
WARNING: A module will be used in different places, not just one block so when you modify a thumbnail you need to be careful where the module is used. Please refer to this section to see where a module is used to know what blocks will be affected by the modification: http://screencast.com/t/SAcFVXNDL7
Thank you!