Hi,
1) The code works on my side: http://screencast.com/t/9uIu6ljUJd Please provide a link to your site so I can inspect it and see why the code does not apply.
2) Unfortunately it will have to be made custom and we cannot provide any custom work at the moment. We suggest hiring a developer to help out
Thank you!
Hello,
We do not recommend editing the demo content. We created the demo content for users to have a visual representation of the theme with a bit of content, but this content will be removed if you decide to change demos.
VERY IMPORTANT: if you edit the demo content and then switch demos, your edited content will be removed.
We suggest installing the demo without content and start creating your own content. You can use page templates to help out on pages: https://forum.tagdiv.com/homepage-how-to-build-and-set-it/
I hope this helps.
Thank you!
Hello,
Please disable all plugins except visual composer, clear cache and reset cdn files if you use it. If you have wordfence please put the firewall in learning mode.
Let us know if you still have trouble with this.
Thank you!
Hi,
As I have replied above, we have not tested this add-on so we are not certain of it’s functionality. Our featured videos have a made implementation so probably the add-on cannot recognize them as a standard video. We are not aware of this add-on or it’s functionality so unfortunately I have no solution to provide as plugin implementation is not covered by the theme support.
Thank you!
Hello,
The easier way to do it is with do_shortcode. THe news ticker is a rendered visual composer shortcode so using the function directly in the post template files is easier.
you cna set up your ticker the way you want it on a dummy page like so: http://screencast.com/t/iIKBu50mv and set all of it;s options.
The you can use the shortcode generated in classic mode and text mode: http://screencast.com/t/yLkdt8nsfK
Then you can place a do_shortcode function on each post template and add the shortcode inside: https://developer.wordpress.org/reference/functions/do_shortcode/
<?php echo do_shortcode('[td_block_trending_now style="style2" header_text_color="#dd3333" header_color="#1e73be" category_id="1048" sort="random_posts" limit="20" offset="2"]'); ?>
I hope this helps.
Thanks
Hello,
The best thing to do in this case is for us to take a look at your back-end so please contact us via email at contact@tagdiv.com and provide wp-admin so we can investigate this matter. Please also include a link to this topic.
Thank you!
Hello,
1) Stretching the logo is a bad idea as it will loose lots of it;s quality .if you want a bigger logo, you will have to create a bigger logo in your photo editor. The theme cannot stretch it and prevent quality loss.
Here is an example of such a logo: http://demo.tagdiv.com/newspaper_cars/
Here is the size of your logo: http://themidfieldgeneral.com/wp-content/uploads/2016/08/Untitled-design-10.png and here is the size of the cars logo: http://demo.tagdiv.com/newspaper_cars/wp-content/uploads/2015/08/header-red-contrast.jpg
Here is an example of what happens if I try to stretch the logo: http://screencast.com/t/TKNCnSgWEeV
2) For mobile you are using the mobile theme plugin so there is a special footer location for the m,obile footer menu and the desktop footer menu, Please access the manage locations section of the menu and select menus for each location: http://screencast.com/t/AFl9HaVgM
Thank you!
Hello,
Well for a custom ad it will display in the size you upload it. It will automatically be responsive if you wrap it inside the provided div’s like this one for example:
<div class="td-all-devices"><a href="#"><img src="#"/></a></div>
The div’s are created to be responsive so they will position properly. Please provide an example of such an ad that does not position properly. Provide a link to your site so we can inspect it.
Thank you!
Hi,
Sorry, i have not checked the shortcode itself. It’s the wrong shortcode (old) as this topic is kind of old and the solutions above are provided with the old custom ad shortcodes. Here is how the current shortcodes look like:
[td_block_ad_box spot_id="custom_ad_1"]
Sorry for the dumb mistake.
Hello,
Custom ad positions and conditions must be added in the php files directly as our theme has no such options.
you can use a do_shortcode function and a is_category function to check for the category itself.
Here is an example: http://screencast.com/t/maoyrOlqc
<?php if (is_category( 'Gadgets' )){
echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');
}; ?>
Thank you!
Hello,
Our theme does not have any blank template created officially but we can provide it via email if you make a request for it. Please contact us via contact@tagdiv.com and we will provide the blank template there.
Thank you!
Hi,
We only tested the standard version of seo yoast. We have not tested video seo so I cannot say for sure how it will work or not. The featured video is a custom made element and plugins cannot recognize the code for them as plugins are built on the standard wordpress code. Please use the standard seo yoast plugin as that is the tested and recommended one to use.
Thank you!
Hello,
Yes I meant a single semicolon. Sorry. if a css code that you add in the custom css area dos not apply, then you need to check the code above for any open tags. Please make sure every tag in the code above the one you want to insert is closed properly. Also test without the child theme. Activate the main theme as if the child theme was not updated properly it could create issues. When we create css code we use the browser inspector and a chrome extension called live css editor. When you create a css and add it to the live css editor and it works, it should also work from the theme panel->custom css box: http://screencast.com/t/XutAAsbZ6H8
I hope this helps.
Thanks.
Hello,
1) You can change the bubble color and font size with a bit of css. Try this code:
.td-module-comments a{
background-color:Red;
}
.td-module-comments a:after{
border-color: red transparent transparent transparent;
}
.td-module-comments{
font-size: 12px;
}
2) Unfortunately our theme does not have any such detect options to show the count only if it’s >1 it will have to be custom made. This is the wordpress function used to grab the comments count: https://developer.wordpress.org/reference/functions/get_comments_number/ in this file here: http://screencast.com/t/OZ5JGVxvWw7 You will have to change the function or add conditions to it if you know your way around coding.
Thank you!
Hello,
Please disable all plugins except visual composer,clear cache and reset cdn files. Maybe there is a plugin conflict affecting the topic page.
Let us know if you still have trouble with this.
Thanks
Hi,
Please read this guide: https://forum.tagdiv.com/using-other-ads-non-adsense-ads/
Thank you!
Hello,
Our theme does not have this option to remove the sharing widget on specific posts so it will have to be made custom .luckily it;s not very hard to do it. you can use this function: https://developer.wordpress.org/reference/functions/in_category/ This will check if the post belongs to a specific category. Then you can add a condition to the social widget like so: http://screencast.com/t/jjiJbOcjZg You will have to do this for every post style that you use. Further down the file shown is the social sharing bottom code you can also place inside such a condition.
<?php if (in_category('gadgets')){
echo $td_mod_single->get_social_sharing_top();
} ?>
This will result the sharing to only be enabled for the gadgets category. The reverse is !in_category like so:
<?php if (!in_category('gadgets')){
echo $td_mod_single->get_social_sharing_top();
} ?>
I hope this helps.
Thanks
Hello,
Our theme uses the default registration of wp only styled differently. This is the standard registration method of wp by emailing the password and then allowing users to change it from the user settings. We did not change this functionality. If you want to change this, you will have to either use plugins and use a redirect rule to eliminate the theme login screen or customize the login if you have the proper coding skills. If you do not know the steps you need to take in this regard we suggest hiring a developer to help out with the code as we cannot provide any custom work at the moment.
Thank you!
Hello,
Our theme has no such option so you will have to use plugins for it. Maybe a redirect rule will do it. Our theme does not change the post title link that wordpress assigns to it so if you want to change the post title behavior, it will have to be done through WP not the theme.
Thank you!
Maybe this will help:
https://forum.tagdiv.com/topic/gernerate-auto-thumbnail-from-youtube-or-vimeo-video/
Thank you!
Hello,
@both please create new topics if you have a request
@CollectiveM In order to use custom ads please use this guide: https://forum.tagdiv.com/using-other-ads-non-adsense-ads/
You can choose different ad sizes for each viewport from here:
http://screencast.com/t/EbC7jWX3
The mobile footer ad does not have sizes added to it. All mobile ads are responsive ads as mobile phone screens are very different and a fixed width in a responsive layout will break the design.
Thank you!
Hello,
The method Andrei posted works but you need to also make the modification in the logo h1 file as well: http://screencast.com/t/QhMAKH410 Newspaper 7 introduced a few extra files that need to be modified as well using the same method.
I hope this helps.
Thank you!
Hello,
The method Andrei posted works but you need to also make the modification in the logo h1 file as well: http://screencast.com/t/QhMAKH410 Newspaper 7 introduced a few extra files that need to be modified as well using the same method.
I hope this helps.
Thank you!
Ok,
Try this code instead:
.td-social-font-icons .td_social_facebook .td-sp:before, .td-social-font-icons .td_social_twitter .td-sp:before, .td-social-font-icons .td_social_youtube .td-sp:before{
color:grey;
}
Thanks.