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

Hi,

You need to comment out the highlighted code and the plugin check function will be removed. SpeedBooster will then work with your active plugins.

Thanks

Bogdan B.
tagDiv Staff

Hello,

There is a tag color in category edit, but it will only apply to posts, not modules: http://screencast.com/t/j719l5DLdJN
You can only target the module category tag with custom CSS:

.td-post-category{
background-color: red
}

This code will apply to all categories at once. If you want to target a specific category you have to change the code and use the specific CSS class for each module/block.

Thanks

Bogdan B.
tagDiv Staff

Hello,

Visual composer elements were not tested on posts. They work but lose their CSS and styling. You need custom work to get them to display like on a page.
As an alternative, you can use a different block to achieve your goals. For example a block 14: http://screencast.com/t/JzduopNO1
and style it with CSS:

.single-post .td_module_mx1{
padding-bottom:5px;
padding-right:1px;
}
.single-post .td_block_14{
margin-top:15px;
}

You can change the padding/margin values to your preference.
Add the code to the theme panel->Custom CSS box.

Thanks

Bogdan B.
tagDiv Staff

Hi,

Please try this demo ad code and see if it still stacks the paragraphs together:
<div class="td-all-devices"><a href="#"><img src="IMAGE PATH HERE"/></a></div>
(You can use a 300×250 image for testing).
Then you can place your ad code inside the div and check if it still affects your paragraphs.
Let me know how it goes.

Thanks.

Bogdan B.
tagDiv Staff

Hi,

You can replicate the slider you use with an image carousel element in visual composer and set it up similar to your plugin: http://screencast.com/t/eEFvzM1VA or you can apply a custom CSS for your slider to make it scroll on the mobile version as well:
@media(max-width: 767px) {
.ult-carousel-wrapper .slick-list {
overflow: visible;
}
.ult-carousel-wrapper .slick-prev {
left: 0px;
}
.ult-carousel-wrapper .slick-next {
right: 0;
}
}

result: http://screencast.com/t/9sBHDo0SPb

Thanks.

Bogdan B.
tagDiv Staff

Hi,

You can change the excerpts type: letters or words globally: http://screencast.com/t/T44KWvW7, but there is no global setting for modules. you have to set them manually for every one you use.

Thanks.

Bogdan B.
tagDiv Staff

Hi,
We are the support team. We make a list of suggestions and fixes needed in future versions and give them to the developers. They decide what gets done and what doesn’t. (We are all part of TagDiv).
Thank you!

Bogdan B.
tagDiv Staff

Hello,
I have checked your website and saw multiple javascript problems.
Please disable all your plugins except visual composer and disable all minifications (if you have any).
You also have a few errors in your console: http://screencast.com/t/lpYXqbYkLSU
Let us know how it goes
Thanks.

Bogdan B.
tagDiv Staff

Hello,
Please make sure you have the latest version of social counter (version 3.0 is the latest) Uninstall your current version and install the one the comes with the theme (if you have not already)
Another thing you can try is to use a different username on your instagram social counter. Place anyone you like, maybe something like cocacola for example and see if it gets the followers from that one. Then revert back to your own so the plugin reloads your account info.
Let me know how it goes.

Thanks.

Bogdan B.
tagDiv Staff

Hello Carly,

The latest version of visual composer was tested with our theme and should not cause any errors. That is why it’s bundled with the theme. Please install the visual composer version that comes with the theme and not other ones.
Here is the guide on how to update the plugin – https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
You can also try to disable all other plugins except visual composer and check if your problem does not originate from a conflicting plugin.
Let us know how it goes.

Thanks you!

Bogdan B.
tagDiv Staff

Hello,

You can try to use a different header style as each behave differently. There are a few header style to chose from: https://forum.tagdiv.com/header-styles/.
We know of a similar issue on header style 8 that is on our bug list (i cannot tell which one you are using based on the screenshot)
If a different header style does not fix the problem or you do not want to change your header, please provide a link to your website so we can take a look and come up with a solution

Thank you!

Bogdan B.
tagDiv Staff

Hello,

In order to place a custom ad in a category page, you will have to alter the theme files. You can use a ‘do_shortcode’ function to use your custom ad spots from the theme panel. For example use the code like this:
<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');?> and place it in the category template you use: http://screencast.com/t/hEJfFrM6 (mine was a style 4)
result: http://screencast.com/t/ZuKiMZmS

Thanks.

  • This reply was modified 10 years by Bogdan B..
Bogdan B.
tagDiv Staff

Hello,

The theme has a few options to insert ads. Please read the doccumentation on how you can use ads: https://forum.tagdiv.com/header-ad/ (there are 8 sections on ads)
For pages you can use visual composer’s ad box element.
Headers have their own ad space you can use. If you want to place another ad besides the one provided by the theme you will have to alter the theme core files.
If you want to use the code method for example in the category pages, you can use a ‘do_shortcode’ function and set it to use one of the custom ad spots from the theme panel:<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');?> and place the code in the corresponding category file: http://screencast.com/t/LgZK8Zys2Uw
I hope this helps.

Thanks.

  • This reply was modified 10 years by Bogdan B..
Bogdan B.
tagDiv Staff

Hello,
Please try to increase the system status values as suggested in the other topic and let us know if your problem persists.
Thanks.

Bogdan B.
tagDiv Staff

Hello,

Unfortunately the theme does not have an option for it, so you have to use the code method. You can use a ‘do_shortcode’ function: <?php echo do_shortcode('your shortcode here');?> and place it in the post template you use on your post (loop_single.php if it is the default one)
Every post template has a file to go with it. The default is without a number to it. The others correspond to their post template number.
You can add for example a trending now block in posts by editing the file template corresponding with the post template used, and add this line of code like here: http://screencast.com/t/Jf5SKCFx5Pkahttp://screencast.com/t/7j8xHNyc6
<?php echo do_shortcode('[vc_row][vc_column][td_block_trending_now][/vc_column][/vc_row]'); ?>
As for the ads, the theme uses adsense code and every other custom ones have to be done by using this method here: https://forum.tagdiv.com/using-other-ads/
I hope this helps

Thanks!

  • This reply was modified 10 years by Bogdan B..
Bogdan B.
tagDiv Staff

Hi,

You need to get all of those entries green for the theme to work as intended (except the cache that is not a vital requirement). Please increase the values by using this tutorial: https://forum.tagdiv.com/system-status-parameters-guide/
Let us know if the problem is still there after you get all the values in the right parameters:http://screencast.com/t/3PM2n72UN

Thank you!

Bogdan B.
tagDiv Staff

Hello,

The easiest way to achieve this is to change your permalinks to not display date https://codex.wordpress.org/Using_Permalinks. Unfortunately WordPress relies on the publish date to get the permalinks and it will not be an easy task to change that behavior. Maybe you could find a plugin that has such an option.

Thank you!

Bogdan B.
tagDiv Staff

Hello

The Newspaper grid wasn’t built with borders in mind so even if you add some they won’t look as the ones on Newsmag. You could try some custom css, ex – http://screencast.com/t/Mm1NwtGk

.vc_row.wpb_row, .td-pb-row{
border: 1px solid #e6e6e6;
}
.td-pb-span8{
border-right: 1px solid #e6e6e6;
}
Some elements may get broken and on some areas the borders may appear on the wrong location – http://screencast.com/t/Zq10e1Acf

You will need custom work to do it for the whole site, and at the moment we cannot provide it. You can hire a freelancer to do it if you really need these borders.
As for the width of the site, if you reduce it, blocks and grids will become broken. All the elements of the theme reside on the width of the site, and every pixel counts. Again, you will need custom work to modify width.

Thank you!

  • This reply was modified 10 years by Bogdan B..
Bogdan B.
tagDiv Staff

Hello George,

If you hide blocks with CSS you can try to add the !important attribute to them. CSS stands for cascading style sheets so the first display property gets overwritten by the display:none attribute so if the connection is slow, the blocks will appear at first then disappear from view. Unfortunately this cannot be controlled.
Unfortunately we could not access your mobile site to inspect the issue: http://screencast.com/t/xckx9bNjjy
Please check your server configuration.

Thank you

Bogdan B.
tagDiv Staff

Hello Anand,

You need to be more specific with your css code. To target footer elements, you need to add a footer class to your code so it will target just the footer area:

.td-footer-wrapper .td-icon-facebook{
background-color:blue;
}

As for the hover, use this css to change the color:

.td-footer-wrapper .td-social-icon-wrap i.td-icon-twitter:hover, .td-footer-wrapper .td-social-icon-wrap i.td-icon-facebook:hover, .td-footer-wrapper .td-social-icon-wrap i.td-icon-vimeo:hover, .td-footer-wrapper .td-social-icon-wrap i.td-icon-vk:hover, .td-footer-wrapper .td-social-icon-wrap i.td-icon-youtube:hover {
color: white;}

Thank you!

Bogdan B.
tagDiv Staff

Hello,

You need to remove the custom ads div’s because for adsense these are not required. You simply place the adsense code and then use the sliders to disable the ad on the viewport you chose: http://screencast.com/t/Jvo7GdouKNkE
The div’s provided were for other ads than adsese.
http://screencast.com/t/6ugwh5FB
Thank you

Bogdan B.
tagDiv Staff

Hello,

Please try to disable all your plugins except visual composer, clear your cache and purge CDN if you use it. If the problem is still there, check your system status to see if any of the parameters there need to be adjusted: http://screencast.com/t/yrsLFrV3M1q. You can follow this tutorial: https://forum.tagdiv.com/system-status-parameters-guide/
Let us know how it goes.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

I cannot access your website it just redirects to the maintenance page. There should be only one related posts by default. Let us know when we can access your site.

Thanks.

Bogdan B.
tagDiv Staff

Hi,

Please send us an email at contact@tagdiv.com and provide your login information so we can take a look at your page setup. Please also provide a link to this topic so we know who you are.

Thank you!

Viewing 25 posts - 21,476 through 21,500 (of 22,378 total)