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,

Please provide a link to your site so i can inspect it and the ads. Please also provide more details about the category spacing.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

You do not have to create another forum account. If you already have one, please use the manual activation: https://www.screencast.com/t/Mff5x0WM

Thank you!

Bogdan B.
tagDiv Staff

Hi,

Please use this guide: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Your images must be bigger than the container though. The theme only crops images, it does not enlarge them

Thanks

Bogdan B.
tagDiv Staff

Hello,

It seems there is a problem people are facing with this issue but the visual composer team claim the option workds properly so we can assume it’s not a bug in the visual composer code but rather something else affecting it.
This could be a plugin conflict so please disable all plugins except the visual composer and woocommerce, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.

Thank you!

Bogdan B.
tagDiv Staff

Please contact us on our email address at contact@tagdiv.com and provide a link to your site and wp-admin (login information and admin rights) so we can login and investigate. Please also include a link to this conversation so we can identify you.

Thank you!

Bogdan B.
tagDiv Staff

Hello,

You can add or remove a sidebar from the category settings in the theme panel: https://www.screencast.com/t/W2qP8lJxprF

Thanks.

Bogdan B.
tagDiv Staff

Hello,

The video block you mention is a simple block 15 named latest videos and there is a category filtered there that contains only video posts.
It’s not a particular element, just a theme block filtered that way and with a custom name. You can do that through the block settings: https://forum.tagdiv.com/newsmag-block-settings-tutorial/

Thank you!

Bogdan B.
tagDiv Staff

Hello,

I’m not sure what you mean, but if you need help in creating a video playlist, please use this guide: https://forum.tagdiv.com/video-playlist-2/

Thanks.

Bogdan B.
tagDiv Staff

Hello,

The all menu item cannot be removed entirely. You can remove the word all and the menu item will not be there anymore but the posts corresponding to the all menu item cannot go away. https://www.screencast.com/t/7yk00eALb
In order to remove the ALL menu item you should comment out or remove this line of code:
https://www.screencast.com/t/ua9wHUg6Yu

Thank you!

Bogdan B.
tagDiv Staff

Hello,

I’m not sure what widget you are looking to add. Widgets are blocks on their own. Please provide more details to what you want to achieve,

Thanks

Bogdan B.
tagDiv Staff

Hello,

Yes, if you want to move to the new page builder, you will have to recreate your pages using the tagdiv composer and disable visual composer as both at the same time will not work properly.

Thanks.

Bogdan B.
tagDiv Staff

Hi,

This was an important detail you should have mentioned.

If you want to make just the comments RTL, then remove the previous css and use this one:
.RTL_Post .comments{
direction:rtl;
}

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Please check if your host has the mailing service enabled or disabled. If your host cannot provide a mailing service, you will need to use an email plugin.

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Sorry but the classes cannot be changed now. We will look into it and we will change the classes in future releases as there is no simple solution I can provide except for going in and renaming the classes added to the demo in the theme files. You can maybe use a search and replace in notepad++ for example to change every instance of td-erotic

Thanks.

Bogdan B.
tagDiv Staff

Hello,

Sorry but there is no tutorial available for this. It can be done with an image box element though: https://www.screencast.com/t/xG5FwvaJzc

Thank you!

Bogdan B.
tagDiv Staff

Hello,

This happens when the modal image is not linking to the image file itself but rather an external link. The theme lighbox will not work with external links: https://forum.tagdiv.com/modal-window/

Thank you!

Bogdan B.
tagDiv Staff

Hello,

You can use a bit of css to remove the image from block 11 if you need it without an image. Add this code in the theme panel-> custom css box:

.td_block_11 .td-module-thumb{
display:none;
}
.td_block_11 .item-details{
margin-left:1px!important
}
.td_block_11 .td_module_10 .entry-title{
padding-left: 1px;
}
.td_block_11 .td_module_10 {
padding-bottom:5px
}

Thank you!

Bogdan B.
tagDiv Staff

Please contact us via email at contact@tagdiv.com and provide wp-admin so we can login and investigate. Please also include a link to this topic.

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Thank you for your suggestions. If this request becomes more popular we will consider implementing it into our themes.

Have a nice day!

Bogdan B.
tagDiv Staff

The size is determined in the code I already provided. Change the 410 px to any size you want it to be.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

Sorry for the inconvenience. The speedbooster was not yet adapted to the new theme implementation. IT needs to be updated as well. We will update the plugin in the next theme version.
Until such time you can use this topic to remove the compatibility detect on the speedbooster plugin: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Sorry but our theme does not have such options to change the direction of the text based on specific categories.
You can try to do make a custom code implementation for this process to be easier. It is a simple 2 step process.
You can add a custom body class on the posts belonging to your category and then apply css to the new class like so:

1) Ad this code in functions.php:

add_filter( 'body_class','my_body_classes' );
function my_body_classes( $classes ) {
if ( in_category('Gadgets') ) {
$classes[] = 'RTL_Post';
}
return $classes;
}

Example: https://www.screencast.com/t/xyOvs6S8ESw
Replace ‘Gadgets’ with your category name.
Now all your posts belonging to the category you specified will get a custom class you can target with css.
Now you can use this css to change the direction of the post title and content to right to left.

2) Add this css code in your theme panel-> custom css box:
https://www.screencast.com/t/6FZNA1fsARvk

.RTL_Post .post header .entry-title, .RTL_Post .td-ss-main-content{
direction:rtl;
}

Thanks.

Bogdan B.
tagDiv Staff

Hello,

This is because you are not using the theme specifications regarding the column layout.
Please only use visual composer as suggested here: https://forum.tagdiv.com/how-to-use-visual-composer/
Also please make sure you do not use both visual composer and the tagdiv composer at the same time.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

You can try to increase your loading speed by using this guide: https://forum.tagdiv.com/how-to-make-the-site-faster/
As a note on speedbooster: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/

Thank you!

Bogdan B.
tagDiv Staff

Hello,

No worries, we understand the tediousness WordPress can provide at times. 🙂

If the page speed is still a problem, please use this guide: https://forum.tagdiv.com/how-to-make-the-site-faster/
And please read this topic as note on speedbooster plugin to learn about it;s compatibility function: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/

Thank you!

Viewing 25 posts - 6,601 through 6,625 (of 22,378 total)