HI
You can remove or change that text from theme panel > footer sub footer settings: http://screencast.com/t/HlZ6jOdCAJK5
Thanks!
Hi
Please provide your site url so we can inspect this closer and get back to you with a more accurate answer.
Thanks!
Hi
Please try to uypdate Visual COmposer plugin at V3.1 which in included in theme’s path: https://forum.tagdiv.com/newsmag-how-to-use-visual-composer/ clear all caches then test the site again.
Let us lkn ow how it goes.
Thanks!
Hi
Yes this is possibel with some changes in theme’s code files. Edit page-pagebuilder-latest.php and replace the original code with this one: http://screencast.com/t/xiLoE5SCq – http://pastebin.com/DWuuv9bY
Thanks!
Hi @Chris
The crown is back 🙂
Regarding coments on module since V 3 we added an option in theme panel which allows you to enable/disable meta info: http://screencast.com/t/KmbFN7Kr5 If you want to remove the coments count for all modules then disable the indcated option. However if you want it only for module 11 then bet way is to edit td_module_11.php and delete this line: http://screencast.com/t/pb7vytiOFs
Hope this helps.
Thanks!
Hi
I am not realy sure where you want to add those informations so please provide more specifc details about the desired reslt, also a screen pointing to it would be helpsful, and maybe I can help.
Thanks!
Hi
Try this css in theme panel cosutm code > custom css to change the subtile color: http://screencast.com/t/MrW84bqmCq
.td-post-sub-title{
color: red!important;
}
Thanks!
Hi
By adding the inidcared code in style.css yopu won’t change theme’s colors. The code I’ve give you is from site’s page source and is all custom cass generated by the theme according with your customizations from theme panel.
Thanks!
Hi @Chris
We’re glad you have managed do sort this out.
Thanks for letting us know, for the message and for all your help here 🙂
Have a nice day!
Hi
Please provide your site url so we can have a closer look at thi issue and we will get back to you as soon as possible. Meanwhile make sure that you have a menu set for mobile devices: http://screencast.com/t/v2J3etMMV More details about theme how to create a menu can be found here: https://forum.tagdiv.com/main-menu/
Thanks!
Hi
The theme displys post settings option only for users which have the capabilty to publish posts. According to wordpress documentation a user must be at least author in order to have the ability to publish posts. For more detaisl in this regar please check this link: https://codex.wordpress.org/Roles_and_Capabilities#publish_posts
You can also change the capability in theme’s code: http://screencast.com/t/dYVxjWyxx
Hope this helps.
Thanks!
Hi
You just need to upload Newsmag-child.zip file in your wordpress install and the theme will be installed: http://screencast.com/t/Q5of9Zof5F – http://screencast.com/t/nM9vvcEHL
Thanks!
Hi
You did not set the priority for the action in your code. Try to replace the last line with this one and check how it goes:
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles', 1001 );
Thanks!
HI
We didn’t tested W3 Total Cache with the theme and as a cache plugin we recommend WP Super Cache which which tested and works fine: https://forum.tagdiv.com/cache-plugin-install-and-configure/ However you can try to use Jetpack with Total Cache and check how it goes.
Thanks!
Hi
Check this ink as a reference about how this can be achieved: https://forum.tagdiv.com/topic/how-to-add-more-custom-ad-spots/
Thanks!
Hi
I assume that you want to move post’s title to the top of slide block. To achieve that try this css in theme panel > custom code> custom css: http://screencast.com/t/uTJjm4qD6g
.td-theme-slider .slide-meta {
top: 16px;
}
To reduce slide’s height you can use this css:
@media(min-width: 768px){
.td-theme-slider.iosSlider-col-3 {
height: 500px!important;
}
}
To reduce the font size on mobile try this code: http://screencast.com/t/OP5LVsoJ
@media(max-width: 768px){.td-theme-slider.iosSlider-col-2 .td-module-title a, .td-theme-slider.iosSlider-col-3 .td-module-title a {
font-size: 15px!important;
line-height: 17px!important;
}
}
I hope this helps.
Thanks!
Hi
I can’t access the given url as it’s from your dashboard and I don’t have permissions if I am logged out.
I assume that you’re referring at that delay which appears on page’s load until the settings from theme panel are applied. That happens because the custom css generated by the theme is moved by Speed Booster plugin at page’s bottom. To avoid the delay you can try to insert all custom css generated by the theme directly in style.css. That code can be found in page’s source but you have to be very careful with it. Currently you have this custom css: http://pastebin.com/ZmyuCBNU Try to paste it in style.css here: http://screencast.com/t/HxwVJnudgGK clear the caches then test the site again.
I hope this helps.
Thanks!
HI
Unfortunately unique article option is not available on mobile theme for the moment, sorry. The mobile theme displays three posts from Featured category then a list with latest articles. If Featured category does not contains any posts you will have unique article on mobile pages. For the moment this is the only solution.
Thanks!
Hi
Basically you will need a function which pass the value from url as a tag in block’s shortcode. Here is an example code which insert a custom value in shortcode:
$v = $_GET['val'];
$block = '';
if (isset($v)){
$block .= do_shortcode('[vc_row][vc_column][td_block_11 tag_slug="' . $v . '" limit="3"][/vc_column][/vc_row]');
}
This code can be used as a function in fuctions.php then you can try to generate a new shortcode for that block using add_shortcode() function. For more details about add_shortcode function check this link: https://codex.wordpress.org/Function_Reference/add_shortcode After you generate the shortcode can be used in visual composer. This link may also help: https://codex.wordpress.org/it:Riferimento_funzioni/do_shortcode
Note that you will need some codeing skills in order to complete this task. I’ve offered just a basic example above but if you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you as we can’t offer customization services at the moment.
Thanks!
Hi
I’ve checked your site and seems that there is a custom css which change the link’s color: http://screencast.com/t/tPzH8YFHypqC It seems that the css is generated by a plugin so try to deactivate all plugins except Visual Composer, clear all caches then test the site again: http://screencast.com/t/pwFQcuXus
Thanks!
HI
Try this css in theme panel > custom code > custom css: http://screencast.com/t/DJxBx56KmDvj
@media screen and (min-width: 768px){
.td-header-style-1 .td-header-sp-logo {
width: 43%!important;
}
.td-header-sp-recs {
width: 55%!important;
}
.td-header-style-1 .td-header-sp-logo img {
width: 500px;
}
Thanks!
HI
Yes it could be a cache issue so try to clear all caches then test the page again. If the problem persist try to regenerate the shortcode for playlist using Visual COmposer and check how it goes. You can also try to use the shortcode on a new test page as there is no cache and it should display the right title.
Thanks!
Hi
Both task involve many customizations in theme’s core files and unfortunately I can’t provide a solution at the moment. Mobile theme does not have any options to filter posts and to implement them is required a specif approach.
We can’t offer customization services at the moment so if you really need this and you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you. Also you can deactivate the mobile theme plugin and all content displayed on desktop will also be displayed on mobile devices.
Thanks!
Hi
I am not very sure what you’re trying to do so please provide more details about the desired result, also your site url, so we can inspect it closer and get back to you with a more accurate answer.
Thanks!
Hi
Thanks @Chris for your help!
@Bakti you can delete the theme from Appearance > Themes but first you need to activate another theme: http://screencast.com/t/ADFEAZn5i
Thanks!