Hello,
Unfortunately we have no suggestion for it as we have not made any tests with such a feature. You can maybe find a plugin that has this option but we cannot make any recommendation. Sorry! Maybe one of our users can help out if they have used or experimented with such options.
Thanks.
Hi,
ALL premium themes have custom classes as they bring extra content apart for the WordPress capabilities. As Chris suggests you will have to use the browser inspector to see the classes like so: http://screencast.com/t/8vN0ajjmMr3
There are many classes as there is no single one used in our theme for a specific element. You can try these but i’m not sure it will work:
content container: .td-main-content-wrap (or .td-post-content)
post title selector: .entry-title (or .td-post-title h1)
navigation: .td-post-next-prev-content
comments: .comments
I hope this helps.
Thank you!
Hello,
Unfortunately the sidebar cannot be aligned to your content because they are dynamic elements. The contend gets changed in so many ways that an alignment between the 2 is impossible. You can chose from a large amount of blocks and you can chose the excerpt length which also takes up space. And to top it off, the sidebar can be sticky so the content will scroll with the page. You cannot have it aligned as you showed in the screenshots. Sorry. The same applies to the categories. The theme was not designed to have the sidebars align to the content in any way. You will have to do that from the content if this is what you wish. You can try to have the same block in the page and sidebar so it can have the same amount of space between the articles and use visual composer separator if it helps.
Thank you!
Hi,
Unfortunately it will not work like that. The easiest wqay to do it is to use a visual composer block instead. Create your block on a dummy page and set the sorting option you want to it. Then get the shortcode and implement it like so by replacing the array and the query _post function http://screencast.com/t/EO4kUS1j7
Thank you!
Hello,
Please check your php.ini on your host and check the max_input_vars. The value does not seem to show up in your screenshot. You can contact your hosting provider if you do not have access to the file. You can also let your provider know about this error.
Thank you!
Hi,
The ad will show in the file you place the code from the topic in. That topic showed how to ad custom ads in posts. On pages, you do not need to edit the theme files as there is an adbox element from visual composer: http://screencast.com/t/gyvcnqN1smDm You can use this as every other element and position it to your preference.
Thank you!
Hi,
I can see your button in the left side of the screen that link to the category Sebastião Santos but I still cannot understand your request. You already created your button that links to the category. Please let us know if you require further assistance with this and please try to provide as many details as you can.
Thank you!
Hello,
Unfortunately this modification will not be so easy as the same function is used on all ads so changing it in the theme files will affect all the ads. You will need to hire a freelancer to help you on this one as we have no easy solution for it.
Thank you!
hi,
You are not using the correct code. Please copy the code I provided. You are adding a ‘_’ before the spot id:
http://screencast.com/t/3AAYYFzyMIo
Thanks.
Hi,
Unfortunately there is no option for multiple author boxes in our theme. It will have to be made custom.
In the loop files the get_author function is called: http://screencast.com/t/x0Xs3SePVb4
This function is created here: http://screencast.com/t/JFa2UowoVywS
Maybe you can duplicate this function (give it a different name) and adapt the code to the plugin.
Or alternatively you can maybe find a plugin that has this function.
Thanks.
Hi,
You can follow this topic to see how it can be done:
https://forum.tagdiv.com/topic/banner-at-the-top-of-article/
Thanks.
Hi,
If you delete an image from the media library (delete permanently) it will also remove the thumbnails.
Thanks.
Hi,
Well you can’t actually. The text itself occupies a bit of space so if you add a title, it will move the ad a bit lower. You can cheat it by having a transparent text on one of them. You add a title to both and then apply a transparent color to one of them so the position will remain the same on both but the text only visible on one of them.
Thanks.
P.S. No tip required. All in the day’s work :).
-
This reply was modified 10 years by
Bogdan B..
Hi,
Maybe you did it wrong. Try it like so: http://screencast.com/t/fdqPjCsJk
result: http://screencast.com/t/YXaff1saCqmT (I added it below the crumbs.you can add it above if you want)
If you add it above the breadcrumbs, there will be no margin on top so in this cae you will need to make use of a bit of htm and css and add the code inside a div like for example
<div class="mycustomad"><?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_4"]')?></div>
and then use css to apply a margin-top for positioning:
.mycustomad{
margin-top:10px;
}
I hope this helps.
Thanks.
Hello,
Unfortunately the read more button will only work in module 15 (category templates, tag templates and the latest article on pages) The post templates are custom made and the read more tag will not work. You can however use the nextpage tag and have pagination on your posts as an alternative.
Thank you!
Hello,
This is not a problem but a feature. Our theme uses different thumb sizes for every picture in order to decrease loading times. Here is a list of thumbnails used by our theme: https://forum.tagdiv.com/theme-thumbs/
Imagine if the theme would load the full size image every time it loaded the homepage (which contains lots of small images) that would be a very very slow page to load.
In order to remove the unused thumbnails you need to figure out exactly what elements you use on your website and simply remove the thumbnail from here: http://screencast.com/t/LNrJhB7UeAe After this operation you need to use the “force regenerate” plugin.
I hope this helps.
Thanks.
Hello,
Please make sure you have the latest version of our theme and make sure you only use the plugin version that comes bundled with the theme: http://screencast.com/t/ZjeUZdDVs0E
If you use any other version, please remove it and install it from the theme panel.
For revolution slider, you have to get the latest version from the main theme folder as it is too large to be implemented in the panel: http://screencast.com/t/HvekeePTpk
Thank you!
Hi,
Please understand that we cannot offer any support for plugin implementation. If you want us to provide information about the theme classes/selectors, then you need to be more specific as we cannot understand your request. Please try to provide as many details as you can.
Thank you!
Hi,
You can change the hover color with this css:
.more-link-wrap a:hover{
background-color:red!important;
}
Thanks.
Hello,
If you have a long post, you can use the wordpress tag (without spaces).
http://www.bourncreative.com/how-to-use-the-wordpress-next-page-tag-to-manage-long-content/
Thank you!
Hello,
@both
Please make sure you include the tags, not only the code inside it. If it still does not work and display the code on the front-end, please send us an email at cantact@tagdiv.com and provide wp-admin as well as the analytics code so we can inspect this issue. Also include a link to this topic.
Thank you!
Hi,
You can add your custom ad in an ad box in visual composer and then get the sortcode for it. For example
[td_block_ad_box spot_id="custom_ad_1"]
Then you can use the do_shortcode function like so:
<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]')?>
Then you can insert this code directly in one of the post template files: http://screencast.com/t/XcVZQFqLiS
Add the code where you want it to appear: http://screencast.com/t/JiV0WVpXx
Thanks.
Hello,
Please check the sorting option you added to your blocks. They might not be sorted by ‘latest’
If this is not the case, you can try to increase the system status parameters https://forum.tagdiv.com/system-status-parameters-guide/
If the problem is still there, then please try to disable all plugins except visual composer, clear cache and reset cdn files (if you use it)
Let us know how it goes.
Thanks.
Hello,
1) You simply need to ad the ad title in order to get them aligned: Please use the adbox for your ads:
http://screencast.com/t/pp2ggA0uB5y (It requires the use of the ads section in the theme panel.)
2) You can add a custom css class to a row in visual composer and then use css to style it
for example: http://screencast.com/t/52xQ9CzHPL and then use css to add borders:
.mycustomrow{
border:2px solid black;
}
It will require further customization though
3) That is because you have a different implementation of the title. You use a text with title and since it’s a different element. Again you will have to use a custom class on your row because this css will affect every other text with title:
.td_block_text_with_title {
padding-bottom: 5px!important;
}
after you add the custom class you would use the code like so:
.mycustomclass .td_block_text_with_title {
padding-bottom: 5px!important;
}
4)You can use this css:
.type-post .entry-title a, .type-post textarea{
color:black!important;
}
I hope this helps.
Thanks.
Hi,
You can change the trending now name from the translation area in the theme panel: http://screencast.com/t/YYy19fU8C
Thank you!