Home User profile
tagDiv Member
I love to drive fast cars and to play Need for Speed! I enjoy to help customers tweak their websites for high performance! I’m a proud member of the tagDiv support team!
Andrei L.
tagDiv Member

Hi

Are you referring at tab’s color? That can be set from tabs settings: http://screencast.com/t/4LSVHMnf and should apply like here: http://screencast.com/t/kZuTjj8N There is no option to apply different colors for tabs in case you want something like this, also you can add an extra css class which allow you add css for a different layout than the basic one.
Hope this help but if this is not what you mean please provide more details about this issue so I can provide a more accurate answer.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure what customization do you want to apply for the table but here I found a helpful link with useful information, which may help you customize the table as you want: http://www.w3schools.com/css/css_table.asp
If this is not what you meant or you need further indication, please provide more details.

Hope this help.

Thanks!

Andrei L.
tagDiv Member

Hi

Sorry about that, I provided the right solution but with wrong details. The modification I indicated above disable the sticky menu for desktop, but that remain active for mobile devices.

Thanks for understanding!

Andrei L.
tagDiv Member

Hi

The code from child theme’s functions file is executed in addition at the one from parent theme so make sure that the functions written in child theme have priority higher than the ones from parent theme, also provide more details about the error that you get if this doesn’t help.

Thanks!

Andrei L.
tagDiv Member

Hi

Those target blanks come form theme’s modal/light-box view feature script and they indicate a false positive so you don’t need to worry about it.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

If the site is not live yet, you can make some screenshots which highlights this issue so I can duplicate it on my side, so I can provide a more accurate answer.

Thanks!

Andrei L.
tagDiv Member

Hi

If you have a similar layout with this one: http://screencast.com/t/aiPwJI5rq that happens when the block it’s used into a 1/3 colon: http://screencast.com/t/7v82gUGyqQ so please make sure that you’re using at least a 2/3 layout: http://screencast.com/t/TmSEbfe6UfL
If this does not help please provide a screen pointing the issue and more specific details so I can duplicate it on my side.

Thanks!

Andrei L.
tagDiv Member

Hi

As Chris suggested above make sure that you delete the js_composer folder from /wp-content/plugins deactivate all plugins then try to re-install the plugin from Newsmag-tf.zip\Newsmag-tf\plugins path according to our documentation: https://forum.tagdiv.com/how-to-update-visual-composer-plugin-wpbakery/

If the problem persist please send an email at contact@tagdiv.com and provide wp-admin and ftp access so we can take a look, also paste a link to this topic.

Thanks!

Andrei L.
tagDiv Member

Hi

Try to delete the old plugin, switch to default WP theme and install the plugin from the update path again. Note that we didn’t tested the latest version with the theme yet, so it’s possible to appear some issues with it’s functionality.

Thanks!

Andrei L.
tagDiv Member

Hi

Please check this topic, I have posted a solution here: https://forum.tagdiv.com/topic/facebook-post-comments-above-related-post/ try it and let me know how it goes.

Thanks!

Andrei L.
tagDiv Member

Hi

To remove the author box from posts written by a specific author you need to add a condition in td_module_single_base.php file like here: http://screencast.com/t/AOLLk9j3A

if ($author_id == 3){
return;
}

If you want to remove author name from article top add this condition in td_module_single_base.php file here: http://screencast.com/t/rzD39z79MEPGhttp://screencast.com/t/hxs4uMhoo1Y

if (($this->post->post_author) == 3){
return;
}

To get the author id follow this link: http://screencast.com/t/5kY7lLtFB1MThttp://screencast.com/t/vO2XeRsO4HK7

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

To deactivate the code from mobile devices you will need a script which detects the screen’s width and deactivate the code according by device’s size. This is a complex task and if you don’t know how to do it yourself my advice is to look for a freelancer from sites like http://studio.envato.com/ to do it for you as we cannot offer any custom work at this moment, sorry.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

The the sticky menu it’s controlled by js and to make it visible only for desktop you need to add a condition in tagdiv_theme.js file like here: http://screencast.com/t/d2qjplNGPD Note that this modification will work only if you don’t use the Speed Booster plugin. In case you’re using this plugin the changes must be made in tagdiv_theme.min.js file.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure what you mean so please provide more specific details about this issue, also a screenshot or a link to your site would be helpful.

Thanks!

Andrei L.
tagDiv Member

Hi

Thanks @doucare1971 for your answer!

@Sekhmet
if you still need assistance on this please provide more details.

Thanks!

Andrei L.
tagDiv Member

Hi

You can add tabs from Visual Composer page builder: http://screencast.com/t/j4SppqG2NXMn and customize it as you want. The page you indicated have the following layout in VC: http://screencast.com/t/CEtdzJuO4Ph

Let me know how it goes.

Thanks!

Andrei L.
tagDiv Member

Hi

WordPress won’t enlarge images, only crops them, so please make sure that your using an image at least by thumb size where the image will be displayed, otherwise will appear a grey space like here: http://screencast.com/t/naiqV53KvQ
If this is not what you mean please provide more details.

Thanks!

Andrei L.
tagDiv Member

Hi

You can chose how the image will be aligned from image details: http://screencast.com/t/YcLnH2gNcehttp://screencast.com/t/xjmRPmp1 More details about float property, which is used to display more elements on the same line, can be found here: http://www.w3schools.com/cssref/pr_class_float.asp
The result should be like here: http://screencast.com/t/z83yxHQSbp

Let me know how it goes and if you need further instructions please provide more details and a link if possible!

Thanks!

Andrei L.
tagDiv Member

Hi

Please make sure that you don’t use any formats on the text that should be near featured image: http://screencast.com/t/VH9o8oCiS
To place the featured image on the right add this custom css in theme panel > custom css: http://screencast.com/t/D4g56UxW

.td-post-template-1 .td-post-featured-image{
float: right;
margin-left: 21px;
margin-right: 0;
}

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

You need to edit the file corresponding with the post template used and add this line of code like here: http://screencast.com/t/Lsi1uJjNRywE

<?php echo do_shortcode('[fbcomments]'); ?>

Also you need to disable the plugin from post content to avoid duplication: http://screencast.com/t/OgQkRKyDk The result should be like here: http://screencast.com/t/jpaR7ItXa99

Let me know how it goes and provide more details if you need further instructions on this.
Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

I am not sure what you mean, please provide more details and also your site url if possible, as I need to inspect this closer.

Thanks!

Andrei L.
tagDiv Member

Hi

The subcategories from blocks are displayed by js which calculate how many items can be displayed on top and the others are hidden in the drop-down menu. A possible solution would be to add this custom css in theme panel > custom css:

.td-subcat-filter .td-subcat-list .td-subcat-item {
 margin-left: 430px;
}

Note that I didn’t test this for every block so I can’t say if will work fine for all, also the changes will affect every block added on the site.

The theme doesn’t have an option to change the More button only from one block, it can be chanced from Theme Panel > Translations section, but this change will affect all blocks: http://screencast.com/t/lXFpVOffCVzZhttp://screencast.com/t/yrAuK74QIzhU

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

The theme was designed to add only one article inline ad in post content using the spot from theme panel. To add multiple ads after a specific number of paragraphs, it’s need additional customization for the ads system. Those customizations involve custom work and unfortunately we cannot offer it for the moment as we work hard on the development, updates, fixes and support. If you need this my advice is to look for a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Also you can try a plugin with a similar functionality or if this does not help also you can paste the ad’s shortcode into post content: http://screencast.com/t/vi2FEYbCq5wc To get the shortcode add an ad box into a blank page then switch in backend editor copy and paste this code where you want to display it in post: http://screencast.com/t/qBFgo9bxfFG

Thanks for the message!

Andrei L.
tagDiv Member

Hi

1. Are you referring at the main menu which is full width: http://screencast.com/t/DhgHeJVmhcmY If you want to modify it’s size like here: http://screencast.com/t/cZZWcAIMPTn please try this custom css in theme panel > custom css:

.td-header-style-10 .td-header-menu-wrap{
height: 44px;
width: 1021px;
margin-left: auto;
margin-right: auto;
}

If this is not what you mean please provide more details and your site url so I can provide a more accurate answer.

2. You can add the page in menu from Appearance > Menus: http://screencast.com/t/HO1Q56N4ag Also you can find more details about how menus can be customized, in our documentation: https://forum.tagdiv.com/main-menu/https://forum.tagdiv.com/mega-menu/

Thanks!

Andrei L.
tagDiv Member

Hi

Try this custom css: http://screencast.com/t/e4cuaWgl1tRa

.single .alignleft, .archive .alignleft {
float: left;
margin-right: 23px;
margin-top: 6px;
margin-bottom: 6px;
}
.single p a, .archive p a{
border-bottom: 1.5px dotted #FFD700;
color: #FFD700;
}

Let me know how it goes!

Thanks!

Viewing 25 posts - 5,601 through 5,625 (of 6,511 total)