Home User profile
tagDiv Staff
Passionate for gaming, mountain biking and traveling. I face every task as a new challenge to bring my skills to the next level.
Bogdan B.
tagDiv Staff

Hello,
It could be a plugin conflict. I have checked your website again but everything seems to display fine. If you still encounter this error, please clear your cache and reset CDN if you use it. You can also try to disable all your plugins except visual composer.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
If you use a text editor and do a search through the theme files you will see every place a schema information is mentioned in the code like so: http://screencast.com/t/oOiGZJH9u3ui
Thank you!

Bogdan B.
tagDiv Staff

Hi,

I’m not sure exactly what you mean but you could apply effects to the block elements like so:
.td_module_wrap:hover{
opacity:0.5;
}

You can search for more effects for the hover attribute if you wish to change the effect.

Thank you!

Bogdan B.
tagDiv Staff

Hi,
What about those links? The code provided by Catalin works for them also. Simply add it in the theme panel and ALL category tags will become blue.
http://screencast.com/t/JHooBnhR
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Unfortunately placing an image block is harder than css as the category pages do not have visual composer editing options. You cannot add elements from the theme panel in the category pages. It can only be done by editing the theme files and using PHP functions that are more difficult to implement than css.
Thank you!

Bogdan B.
tagDiv Staff

Hello,

If you do not want a particular item in the social counter you need to remove the id from the plugin settings:
http://screencast.com/t/GfjzgtUQPCFB
Make sure you have Facebook, Twitter and G+ set in your settings then use this css (replace the other one)
I think this should do it:

.td_social_facebook .td_social_info, .td_social_facebook .td_social_info_name{
display:none!important;
}
.td_block_social_counter .td_social_facebook {
font-size:10px!important;
}
.td_social_facebook{
width:26%!Important;
}
.td_social_googleplus .td_social_info, .td_social_googleplus .td_social_info_name{
display:none!important;
}
.td_block_social_counter .td_social_googleplus {
font-size:10px!important;
}
.td_social_googleplus{
width:32%!Important;
}
.td_social_twitter .td_social_info, .td_social_twitter .td_social_info_name{
display:none!important;
}
.td_block_social_counter .td_social_twitter {
font-size:10px!important;
}
.td_social_twitter{
width:32%!Important;
}
.td_social_type{
display:inline-block!important;
}
.td_social_type .td_social_button a:after{
width:80px!important;
}

Thanks.

Bogdan B.
tagDiv Staff

Hello,
The social counter has been changed and will require a bit of extra settings than the old version. Please follow this tutorial: https://forum.tagdiv.com/tagdiv-social-counter-tutorial/
Please make sure you remove the old version of the social counter and install the one that comes with your download package. (this applies to all plugins that come with the theme)
Thank you!

Bogdan B.
tagDiv Staff

Hello,
This could be from the script tag the theme places by default. You can try to remove this tag like so:
http://screencast.com/t/Yk0Gd9CuKtp6 Also remove the dot and add ;. It should look like this: http://screencast.com/t/57pTES8MZHTx
After this modification you will need to ad your own script tags or else it will not work at all.
I hope this helps.
Thanks.

Bogdan B.
tagDiv Staff

Hello,
First please clear your cache and cdn and then disable ALL your plugins except visual composer. Then check your website. If there is a plugin issue this should rule it out. Then please try to check your system status parameters: https://forum.tagdiv.com/system-status-parameters-guide/
If the problem is still there fterwards, please send us an email at contact@tagdiv.com and provide wp-admin so we can take a look. Also provide a link to this topic.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Your sidebar does not work with the code above as it’s not a default sidebar from the sidebars section of WP. It is created using row settings in visual composer.
Please use this code to do it:
@media (max-width:767px){
.td-pb-span4{
display:none!important
}
}

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Unfortunately the theme does not have such an option but you can however do a css trick and hide menu elements on specific pages. you can have a menu with all the elements at once (in the same menu) and simply hide or show them where you wish with display:none and display:block
For example:
I added these 2 custom menu items: http://screencast.com/t/iVdrTjtnvnB
I want to only show one the first one on the homepage and the other one on another page.
So i will go on and hide the second menu item for the homepage like so:
.home .menu-item-3146{
display:none!important;
}

So now on the homepage i only see this: http://screencast.com/t/xrgmVHlh
In order to make the switch i hide the other one on the other page using the page id (the homepage can be targeted with the home class, for another page you need the page id that can be found here: http://screencast.com/t/QC8pprLGF)
So on the other page we will use this code:
.page-id-3026 .menu-item-3145{
display:none!important;
}

and have this result:
http://screencast.com/t/iyg5I34zWFZe
I hope this helps.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
You can control the length of the titles on every block from the excerpts area: http://screencast.com/t/OoVE5zJ55hgd
Thank you!

Bogdan B.
tagDiv Staff

Hi,

Thank you for posting this solution. I’m sure it will help lots of people who are looking for such a sorting option.
We also appreciate the humor so..2 big THUMBS UP!!! I will add this solution as a feature request on our list for future updates.

Thank you!

Bogdan B.
tagDiv Staff

Hello,
I have checked your website but it seems to be fine. If you modified the code of the theme and cannot revert your modifications you can download the theme again and simply replace the modified file. It will not affect any part of your website or settings.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
You can use a bit of css if you wish to hide the grid on mobile:
@media (max-width:767px){
.home .td_block_big_grid_1{
display:none!important
}
}

Then add the code in the theme pane – > custom css box.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
Please make sure you download the latest version of the theme: 6.6.4 and then please follow this guide in order to update your theme properly: https://forum.tagdiv.com/how-to-update-the-theme-2/
Thank you!

Bogdan B.
tagDiv Staff

Hello,
If you still have problems with the social counter please send us an email at contact@tagdiv.com and provide wp-admin so we can take a look at the issue.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
In order to have an add inside a block you will need to alter the theme files. There is no option for it in the theme panel. You can follow this topic to see how it can be done: https://forum.tagdiv.com/topic/how-to-insert-ads-between-posts-on-the-main-categories-and-in-the-archives/ You will need to adapt this method to your page elements. It will require a bit of coding knowledge.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
The bottom side of this post: http://fightpassport.com/mma-workouts-and-nutrition/supplements-for-muay-thai-bjj-mma/6/ appears to be in full width and this is a big request we always get by our users and everyone wants to have it like so. That is why i assumed you modified the theme to have it like this. If you have not modified anything that means that it could be a plugin compatibility issue.
Please disable all your plugins except visual composer, clear your cache and purge cdn files. Then check the error again.
Let us know if the problem is still there.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
I have checked your website on multiple devices but could not recreate the error. The font displays correctly. Please check it again. It could have been a temporary issue.
Let us know if you require any further assistance.
Thank you!

Bogdan B.
tagDiv Staff

Hi,
For a sidebar ad you will want to go to the sidebars section and change the title from there: http://screencast.com/t/A8xvYd04r3Fr
Or if your sidebar is not from the sidebars section but from a row in visual composer, then you need to change it on that particular page in visual composer.
Thank you!

Bogdan B.
tagDiv Staff

Hello,

On your website just te sub-footer is showing. If you want to hide that one as well, you can use this code:
.td-sub-footer-container{
display:none!important;
}

result: http://screencast.com/t/lqmCIbhiygN4
If this code does not work either, then please check your custom css from the theme panel as there may be an open tag there that prevents any other css from working properly.

Thank you!

Bogdan B.
tagDiv Staff

Hi,
When searching your website in google as i see it, it’s exactly as you point out in your first post: http://screencast.com/t/tDsy8uPP3m Isn’t this how you wanted it to look? Nevertheless, SEO is not theme related and you need to set it up yourself. The theme has no seo options. That is why we recommend using the seo yoast plugin. For further seo questions I believe the plugin documentation should help.
Thank you for your understanding.

Bogdan B.
tagDiv Staff

Hi,
Unfortunately the method will not work with speedbooster as it is because when using speedbooster the theme js will be ignored and instead the theme will use the min js file. You will have to find the part of the code inside the min file and remove it from there as well.
Thank you!

Bogdan B.
tagDiv Staff

Hello,
This issue could be due to a plugin conflict or due to custom modifications you made to the theme. There seems to be a redirect in place on the link: http://screencast.com/t/LEGJAQJi4 Please try to disable all plugins except visual composer and clear cache to rule out a plugin conflict and if the problems are still there, check any rules you might have in htaccess.
Let us know how it goes.
Thank you!

Viewing 25 posts - 19,151 through 19,175 (of 22,378 total)