Hi
I’ve checked your site and noticed that you’re not using our theme: http://screencast.com/t/gvRck7e3MVj If you have any issues using Newsmag theme please provide a link where I can inspect it and maybe I can help you.
Thanks!
Hi
I am not aware what plugin you use for rating and how this plugin works. Since is not tested with the theme there is a chance to appear some issues with its functionality. Try to deactivate all others plugins, except for Visual Composer and the rating plugin then test again. Also you can test this with a default wp theme to see if you get the same behavior.
Thanks!
Hi
Unfortunately the html structure of the button limit the customization possibility. The text inside the button can’t have a different color with this structure. Now the button can be customized like this: http://screencast.com/t/RkoJYjoC7sma
button, html input[type="button"], input[type="reset"], input[type="submit"]{
width: 100%!important;
border-top-left-radius:10px;
border-top-right-radius:10px;
border-bottom-right-radius:10px;
border-bottom-left-radius:10px;
}
You can modify the radius values as you want. Also if you want to change the button’s background color add this line:
background-color: red;
Hope this help.
Thanks!
Hi
Before making any modifications make sure you do a full backup to the database and your current wp install. This is a safety measure, in case something goes wrong you can always get back to the previous install. However by removing the indicated code the theme’s functionality won’t be affected.
Thanks!
Hi
You can chose which social icons to use for top menu from theme panel > social networks: http://screencast.com/t/AkHDT6NQyEd The ones which you don’t want to use just live them empty.
Let us know how it goes and if you still need assistance on this please provide more details.
Thanks!
Hi
Thanks for the suggestion. I’ve added it on our feature request list and we will consider it for the next theme updates. Meanwhile you can use a plugin like Advanced Custom Fields and use this method to do it: https://forum.tagdiv.com/topic/function-to-hide-ads-and-function-to-show-author/
Thanks!
Hi
Try this css: http://screencast.com/t/gXw93kPe4
.td_block_21 .td-post-author-name{
display: none!important;
}
Thanks!
Hi
Try this css in theme panel > cutom code > custom css: http://screencast.com/t/qZmxLtZAxs
.td_block_21 .td-excerpt{
display: block!important;
}
Thanks!
Hi
Please make sure that you updated the theme and the Visual Composer plugin according with our documentation: https://forum.tagdiv.com/how-to-update-the-theme-2/ – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/ deactivate all others plugins just to be sure that there is no conflict between Visual Composer and one of your plugins, clear all caches and test again.
Let us know how it goes and if you still can’t manage to solve this issue please send us your login credentials via email at contact@tagdiv.com so we can have a closer look at this issue.
Thanks!
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/0AGmVmmocV
.td-grid-style-1 .td-module-thumb a:last-child:before{
background: none
}
Thanks!
Hi
The size that you indicated for your image is to small to fit the entire space from first thumb of big grid slide. As the image to fit well in that thumb must have an size at least by 741 X 486.
The slide it’s built in a different way, meaning that the image is stretched by css and even if is smaller than the slide surface, it will be displayed fine.
You can try this css to stretch the image on the entire surface of the thumb, but this may affect its quality:
.td_block_big_grid_2 .td-big-thumb .td-module-thumb img{
width: 100%;
eight: 100%;
}
Thanks!
Hi
The settings for excerpts are in theme panel > excepts: http://screencast.com/t/9xIIOFfNCa Please note that the limit set in theme panel will work only if you don’t have any content in excerpt field from post editor: http://screencast.com/t/vEUsO180 If you added your custom excerpts in that field they won’t be catted at the value set in theme panel.
Thanks!
Hi
I’ve checked your site and noticed that you’re using an older version of Visual Composer plugin. I am not sure if this affect the way your affiliate link works but you can try to update the plugin at the current version available with the theme on themeforest, V4.9, clear all caches, deactivate all others plugins, leave just Visual Composer active and test again.
If you still can’t manage to solve this issue please provide the code that you’re using via
http://pastebin.com/ so I can inspect this closer.
Thanks!
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/W2iFJOrkCcRf
.widget_text {
margin-bottom: 10px;
}
You can change the margin value as you like.
Thanks!
Hi
I’ve checked your site and the images are displayed fine now: http://screencast.com/t/XHdRG5zKa This issue usually appear because of lazy load animation which’s script conflicts with one of the installed plugins. If this happens again you can try to deactivate all plugins except Visual Composer, then activate them one by one see which one causes the problem.
Thanks!
Hi
@willysawa as @Chris pointed above the theme doesn’t ave an option for that. You can do it manually by inserting the link in post content like here: http://screencast.com/t/zwNq6HDkF – http://screencast.com/t/lAu8XKyf
Thanks!
Hi
First of all make sure you do a backup of your current theme/wp install and database also: https://codex.wordpress.org/WordPress_Backups and in case something goes wrong in the update process you can always go back to the previous working version and try again. Then you have to edit the indicated file on your computer using a text editor. The file can be found in the folder that you downloaded from themforest here: http://screencast.com/t/92Jf4vsBt5QN After you make the changes upload the file via ftp on your server.
Thanks!
Hi
If you want to remove the animation from category page the argument for the function must be changed like here: http://screencast.com/t/F4JaGnzk Also note that if you’re using the Speed Booster plugin then you need to modify tagdiv_theme.min.js file.
Thanks!
Hi
Try to deactivate all plugins except Visual Composer, clear all caches and test again. If the problem persist try this css in theme panel > custom code > custom css: http://screencast.com/t/UoHEgxhtvs
[class*="span"]{
margin-left: 0px;
}
Regarding the posts from big grid 5, they are displayed fine, but you have only four post set to be displayed in that grid: http://screencast.com/t/9OZNzD7Y Please make sure that you have enough post which correspond with the filters that you set for big grid 5, clear all caches and test again.
Thanks!
Hi
Please check our documentation here: https://forum.tagdiv.com/newsmag-using-other-ads/ The code for banner ads should look like this:
<div class="td-visible-desktop">
<a href="#"><img src="img-url"/></a>
</div>
<div class="td-visible-tablet-landscape">
<a href="#"><img src="img-url"/></a>
</div>
<div class="td-visible-tablet-portrait">
<a href="#"><img src="img-url"/></a>
</div>
<div class="td-visible-phone">
<a href="#"><img src="img-url"/></a>
</div>
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
I’ve checked your site and the part with promoted content it’s displayed fine now: http://screencast.com/t/AZl9dYrj If you still have this issue please provide more details about how that sections should be displayed and maybe I can help you.
Thanks!
Hi
You can create a new sidebar from post editor here: http://screencast.com/t/6rPRGcpUgfiV Also you can check our documentation here: https://forum.tagdiv.com/sidebars-tutorial/ It’s from Newspaper theme but it applies and for Newsmag
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
When the child theme it’s used for files customizations it’s a good practice to check update_log.txt file for each update and see what files had been modified so if those specific files are used in the child theme you will have to check your customizations to not break the functionality of the theme.
@rbemerson the way in which child theme works with our theme is by moving the file that you want to modify in Newsmag-child folder. You have to copy every file that you want to edit in child theme folder.
@DSLRMZ I have checked the child theme functionality and works fine. Please make sure that you’re using the child theme from the same package with the main theme: http://screencast.com/t/gwJPjoBUbvZ clear all caches, deactivate all plugins except Visual Composer and test again.
Thanks!
Hi @mefta
The theme’s blocks were designed to work on span12, span8 and span4 which means the you can use this coblinations of colons from Visual Composer: http://screencast.com/t/NQXVPSUdm7Th I’ve checked your site and noticed that you’re usin a combination by span5 + span3 + span4, that’s why the block 14 exceed the allowed space. http://screencast.com/t/MPNgvXjL This issue will be corrected if you use three colons with span4: http://screencast.com/t/CeDSKUe96 – http://screencast.com/t/W4VHr0h94Jq
Thanks!