Hello,
Unfortunately the featured video does not allow embed options. What you can do is embed your video in the post and set the featured image manually. Then you can control the embed code and you could even use an embed plugin in order to have more control over your content.
Thank you!
Hello,
Please update your plugins as well. I see you use an old version of visual composer. Try to update the plugin https://forum.tagdiv.com/how-to-update-visual-composer-plugin/ and if the problem is still there,
please send us an email at contact@tagdiv.com with your login information so we can take a look and figure out a solution. Also include a link to this topic so we know who you are and what the problem is.
Thank you!
Hello,
You can follow this tutorial on facebook sharing: https://forum.tagdiv.com/facebook-share/
I hope it helps
Thanks.
Hi,
You can use this custom css to do it:
#wpadminbar .ab-top-secondary{
float:left!important;
}
.wp-admin-bar-root-default{
float:left!important:
}
.quicklinks{
display: table;
margin-left: auto!important;
margin-right: auto!important;
}
Thanks.
Hi,
Unfortunately the theme does not have an option for that, but you could try a redirect plugin for it.
Thank you!
Unfortunately yes.
The theme does not have an option to use the yoast breadcrumbs instead of the theme ones so you will have to manually insert them in every file and every template you wish to use.
Thank you!
Hello,
I cannot suggest you to use a page instead of a category and also it is not good to have duplication on your site (the same name even it is category, page or post). The theme doesn’t have such an option but you could try to use a redirect plugin.
Thank you!
Hello,
Please try to disable all your plugins except visual composer and woocommerce to check which plugin is in conflict with the woocommerce one. You can also try to disable the lazy load animation from the theme panel:
http://screencast.com/t/CJOjBxXe44D0
Let us know how it goes.
Thanks.
Hello,
The grids use the post feature image you set. you will have to make sure these images you set as featured images have a bigger size than the container you want them to display in. The theme crops the image is the image is bigger, but it will not enlarge an image to fit the container if it’s smaller. For this you will have to use a plugin named thumbnail upscale if you cannot upload bigger images.
If this is not what you mean, please provide more details (a link to your website) so we can see the problem.
Thank you!
Hi,
You can follow this guide to see how you can use speedbooster: https://forum.tagdiv.com/how-to-make-the-site-faster/
You said it yourself above. Simply do not add that code (soccer-engine/index.php) to speedbooster.
Thank you!
Hello,
You will have to check the screen options to see if the homepage latest articles is ticked: http://screencast.com/t/AUo1q1edbG If it is. just deselect and select it again to refresh the option.
As for the pagebuilder under latest articles i cannot provide a quick solution for it. You could use the do_shortcode function to add content below the latest articles section:
For example use this code:
And add it here: http://screencast.com/t/dzWVQcfiD
This will force a VC block you set to it to display below latest articles.
I hope this helps
Thank you.
Hello,
1) Unfortunately the theme does not have an option for that and plugins usualy do not work with our blocks/modules as they are custom made. You will need custom modification of the core files to achieve your goal. Unfortunately i cannot provide a quick solution for it as the functionality of the big grid will have to be changed. You can hire a freelancer to do it for you if you really need this modification from sites like studio.envato.com
2)The big grid element was not meant to show excerpts. It can be done with custom modification.
3)You can update the theme with the envato toolkit: https://forum.tagdiv.com/how-to-update-the-theme-2/
If a major update will take place, some settings could not work anymore. But colors posts,pages and other panel settings are stored in the database and will not be affected by an update.
4)The text box from the theme panel (copyright) does not support html code by default. It gets removed by the theme so a link inserted here will not work without customization.
Modify the code in footer.php – http://screencast.com/t/bUR2WvmmY
echo stripslashes($tds_footer_copyright);
And also remove this code – http://screencast.com/t/dkdikkHCAJD1 so the html will not be removed from the panel.
Then you can add your link in the text box as before and it should work.
5)Please make sure you only use normal text characters in the widget title. Other characters such as – or _ or other symbols or language specific characters will make your widgets disappear.
Thank you!
Hi,
In order to use the Yoast breadcrumbs and remove the theme’s you will first have to enable them from the plugin settings: http://screencast.com/t/qN2p9Ft2
Then you have to replace the code in the core files with the one provided by YOAST: http://kb.yoast.com/article/245-implement-wordpress-seo-breadcrumbs
There are multiple places breadcrumbs are added. You need to do this for every type of page/post/category where breadcrumbs are specified in the code. You need to make the same changes for pages and other templates to. If you want you can use an editor like Notepad++ and search in all files to see where the breadcrumbs are defined for each template and make the changes.
As an example, just for posts, you need to edit every post template you use and replace the code: http://screencast.com/t/ayW3UwAs1
I hope this helps.
Thank you!
Hi,
The links older than an year old do not work anymore because screencast gets filled up in this period and removes the old links. On the other hand modification made an year back will not apply to the current version of the theme as code was changed on the many updates the theme had since then.
Thank you.
Hi,
I have checked your website and shared the exact same post and it worked on the first try. No errors. http://screencast.com/t/A7PalH8b6D
Facebook sometimes gets overloaded and displays such errors.
Thanks.
Hello,
The comment section can only be targeted with css:
#reply-title{
font-family:MY CUSTOM FONT!important;
}
.logged-in-as{
font-family:MY CUSTOM FONT!important;
}
#commentform input[type=text],
#commentform input[type=url],
#commentform input[type=tel],
#commentform input[type=email],
#commentform textarea{
font-family:MY CUSTOM FONT!important;
}
.form-submit input[type=submit] {
font-family: MY CUSTOM FONT!important;
}
Use this code in the theme panel->custom css box and add the font you want to use to it.
I hope this helps.
Thank you!
-
This reply was modified 10 years by
Bogdan B..
Hello,
Unfortunately speedbooster is an optional plugin and is not compatible with every other plugin. Sometimes it can cause errors when using it with certain untested plugins. It even has the disable function when detecting untested plugins (which people bypass). In your case it is the soccer-engine that creates the issue. Good thing you figured out the culprit. You can use speedbooster without adding the soccer-engine render blocks to it.
Thank you for your understanding.
Hello,
Unfortunately the theme does not have such an option at this moment. The only method to do it is hard-coding it. CSS is not very hard to figure out. It is better than the alternative which involves altering the PHP files and adding conditionals to td_category_template.php.
You can use css without altering core files and you can have control over it from the theme panel which is a big plus.
You can set the code Catalin gave you to apply to a specific category only. Every category has an custom class set to it. You can get this class by inspecting the category page with your browser inspector: http://screencast.com/t/5uS8nYlTc6u
For example mine is category 66. So i would add this to the beginning of the code like so:
.category-66 .td-category-header.td-image-gradient-style8 {
background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b5/Winnersh_Meadows_Trees.jpg');
background-repeat: no-repeat;
}
Now the code will only apply to that specific category. So if you need to use the code for another category you can simply copy and paste it and change the category number and the image.
I hope this helps.
Thank you!
Hello,
If you want to keep the default template and create a custom one, you can create your own page template in the root of the theme and copy the code from page.php(as an example) and just add this comment instead – http://screencast.com/t/UdDaIQhr The theme pulls the name from the comment on the top of the file.
It should appear on template options as an extra page template – http://screencast.com/t/cONiVSlbjH7 Then you can add your custom modification to the new template and still have the default templates present.
Thank you!
Hi,
For the tweeter button you need to use this code instead:
.td-social-twitter{
display:none!important;
}
For the css box, please make sure you have the child theme set up properly. I have tested the css box via child theme and it works as expected. Try it with the main theme and see if modifications apply.
Also make sure you use the child theme version that comes bundled with your theme. Every version of our theme comes with an included child theme you can use.
Let us know how it goes.
Thanks.
Replied via email.
Thanks.
Hello,
You can use the theme without visual composer. It is required only if you use it’s features. It will not affect your category pages or posts because these get their layout from the theme not the plugin. You will have to create pages without visual composer though.
Thank you.
Hello,
Unfortunately we have not tested the app you mentioned and cannot provide a precise answer. You can try different plugins to use with your website. Here is a top of the most popular ones: https://85ideas.com/plugins/best-wordpress-rss-feed-plugins/
These are not tested with the theme so we cannot say for sure which one you should use.
Thank you for your message!
Hello,
Please try to regenerate your thumbnails using the force regenerate plugin.
You can also try to disable all plugins except visual composer to rule out a plugin conflict.
If the problem is still there please send an email at contact@tagdiv.com with your login information so we can take a closer look. Please also include a link to this topic so we know who you are and what the problem is.
Thank you
Hello,
Unfortunately there is no option in the theme to filter these buttons and I cannot offer a quick solution for this. The code for the next and previous article below posts is located here: http://screencast.com/t/CNk6rR1p
You will need to alter this file in order to get the result you desire. It will require a bit of coding knowledge. You can hire a freelancer to do it for you if you want from sites like studio.envato.com as we cannot offer any custom work at the moment
Thank you!