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

To remove this filter: http://screencast.com/t/w9f88Cpv590m edit the td_category_template.php file like here: http://screencast.com/t/6HRjmLAZEDwhttp://screencast.com/t/xflCwbwN

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

To hide the ads from multiple post you need to add is_single(ID) for each post like here:
if (is_single(134) || is_single(135) || is_single(136))

You need to modify every file corresponding with the post template used, for example for post template 4 the file that needs to be modified it’s loop-single-4.php

When you update the theme the old file are overwritten by the new theme’s files, except the one from child theme, so if you want to keep your changes a solution would be to move the modified file in child theme: https://forum.tagdiv.com/child-theme-support/

Thanks!

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

Hi

We tested the theme many times because we want to make sure we deliver a good quality product to our clients that serve their needs and so far we didn’t receive any security complains. I don’t know how accurate are the results provided by Exploit Scanner tool, but if the theme would had major problems we should already have lots of complains regarding this as we have over 10000 customers.
You can try a different tool like https://sitecheck.sucuri.net// and see if those errors still appear. Also check the WordPress official security guide: http://codex.wordpress.org/Hardening_WordPress

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure what you mean but if you’re referring at theme’s login widget there is no option to change it’s colors, but you can use custom css and target the the sepcific id/class for the part you want to change like in this example: http://screencast.com/t/iNVNDfZrXWi

#login-form{
background-color: red;
}

Here are some useful information about css: http://www.w3schools.com/css/default.asp

Let me know how it goes and provide more details if you need additional assistance on this.

Thanks!

Andrei L.
tagDiv Member

Hi

To add the widget below the content you need to place the code in the file corresponding with the post template used: http://screencast.com/t/zQfkk9vaL7aQ We don’t use the the_content(); function in our post templates because wont’t allow ads, so we use a custom function: get_content();

Thanks!

Andrei L.
tagDiv Member

Hi

Try this custom css in theme panel > custom css: http://screencast.com/t/P0W3YHvZpweI

.td-ss-main-sidebar .td_block_1 .meta-info .td-post-category{
font-size: 8px;
margin-right: 0;
}
.td-ss-main-sidebar .td_block_1 .td_module_6 .item-details{
margin-left: 115px;
}
.td-ss-main-sidebar .td_block_1 .td-post-date{
margin-right: 0;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Glad you could manage to solve this.
Some files can’t be moved in child the and td_module.php it’s one of them, that’s why the changes don’t applies.

Thanks!

Andrei L.
tagDiv Member

Hi

1. The theme does’t have a specific widget for that but you can try a text block from to achieve something similar: http://screencast.com/t/eiwoclWJEiDGhttp://screencast.com/t/P0gaARiRIvSV You can use html code to add images, also you may need some css for layout. Here are some useful information abut css: http://www.w3schools.com/css/default.asp

2. You can use a single image block from VC: http://screencast.com/t/NgKxJO3ij8Uthttp://screencast.com/t/kICbT35jz9w

Let me know how it goes and provide more details if you still need assistance on this!

Thanks!

Andrei L.
tagDiv Member

Hi

Emil replied you via dashboard.
Thanks for the message!

Andrei L.
tagDiv Member

Hi

Not sure what you mean but if you’re referring at this subcategories: http://screencast.com/t/mhvhRhlc their’s number it limited at 5 but you can increase it by modifying this value http://screencast.com/t/yOEz5TC7x

If this is not what you mean please provide more details and your site’s url if possible.

Thanks!

Andrei L.
tagDiv Member

Hi

Try this custom css to remove the margin below the slider: http://screencast.com/t/kYGW4e6aP0oJ

.flexslider{
margin: 0 0 0!important;
}

Regarding the image size you also can use custom css to re-size it but the slide container will remain by post content width’s which is 640px:

.flexslider .slides img{
width: auto!important;
}

If this is not what you mean please provide more details.

Thanks!

Andrei L.
tagDiv Member

Hi

I suppose that you’re using a translation plugin, as the theme doesn’t have an option for that. Check in plugin’s settings if there is an option to add images beside links.

Thanks!

Andrei L.
tagDiv Member

Hi

The code affect the featured images from all post templates. If you want to apply only for post template 4 try like this:

.single_template_4 .td-post-featured-image img {
width: 100% !important;
height: auto !important;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Try to clear all caches, deactivate all plugins, leave just Visual Composer active and test again, also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
If the problem persist try to increase max_execution_time at least at 300 and the max_input_vars should be bigger than 2000. Those values are set in php.ini file so try to access it but note that some hosts may restrict the access at this file, if you don’t have access to it contact your host provider and let him know about this situation.
The WP_MEMORY_LIMIT from default-constants.php file it’s overwritten by the value from wp-config.php so try to modify the value from that file, here it’s a guide regrading this
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

The pages are built with Visual Composer blocks and you have settings for each block to display one or more categories: http://screencast.com/t/cC3N7pxF5cy In case you’re using the loop also have the post loop settings where you can apply different filters: http://screencast.com/t/QVqhcIPqz
You don’t need to recreate the whole page, just edit the block you want to change in Visual Composer or the loop settings, as necessary.

Thanks!

Andrei L.
tagDiv Member

Hi

A. To hide the ads in specific post/pages you need to ad a condition in td_block_ad_box.php
http://screencast.com/t/5uninsYLV1

if (is_single(134) || is_page(44)) {
return;
}

Use is_single() for post is_page() for pages. To get the post/page id follow this link: http://screencast.com/t/zXmGYcsp

C. If you want to move the review or duplicate it on the post it’s need to modify the file corresponding with the post template used like here: http://screencast.com/t/uxt9QzSQ0QDhttp://screencast.com/t/BhDgzo2J0Pe8

Thanks!

Andrei L.
tagDiv Member

Hi

WordPress doesn’t have an option to add a profile picture, you will need a plugin like https://wordpress.org/plugins/wp-user-avatar/ or to use gravatar: https://codex.wordpress.org/How_to_Use_Gravatars_in_WordPress

Let me know how it goes and provide more details if you still have this issue.

Thanks!

Andrei L.
tagDiv Member

HI

Thanks for the suggestion, its already on our feature requests lists and we will consider it for the theme’s future updates, meanwhile if you want to use this sizes I have posted here a temporary solution: https://forum.tagdiv.com/topic/new-adsense-size/

Thanks!

Andrei L.
tagDiv Member

Hi

The theme uses logo for mobile on afix (when you scroll up or down and have the sticky menu) so you need to change that too: http://screencast.com/t/e2JQV6fpjfi

Let me know how it goes.

Thanks!

Andrei L.
tagDiv Member

Hi

By default Revolution Slider get the UTC time zone even if you set a different time zone in WordPress settings: http://screencast.com/t/BZ6Wqc8d To change that you need to edit revslider_slide.class.php file from /your-site-name/wp-content/plugins/revslider and add this line like here: http://screencast.com/t/JWlf8J5Z8DGr

$postDate = get_the_time(get_option('date_format'), $postID);

The result should be like here: http://screencast.com/t/Wh9VowbPepLM

Thanks!

Andrei L.
tagDiv Member

Hi

On your site the header ad section appear as empty: http://screencast.com/t/gjvBk8fese I am not sure what code you inserted in header ad spot, please provide your code via pastebin.com if is possible. The theme was designed to work with ad-sense code, and in case you’re using banner ads here it’s a guide about that: https://forum.tagdiv.com/ads-system-full-guide/

If this is not what you mean please provide more specific details.

Thanks!

Andrei L.
tagDiv Member

Hi

Glad I could help!
Thanks for the message!

Andrei L.
tagDiv Member

Hi

I’ve checked you site and the social icons works fine now: http://screencast.com/t/Hm7meTjR5J If you still have this issue please try to clear all caches and test again. Let me know how it goes and provide more specific details if you still need assistance on this.

Thanks!

Andrei L.
tagDiv Member

Hi

You can use a post grid block from Visual Composer, there are different types of grids: http://screencast.com/t/Ltxz6tXfWU For a different implementation you can try a plugin with a similar functionality or if this does’t help you can always find a freelancer on sites like: http://studio.envato.com/ to do it for you as we cannot offer any type of custom work at the moment.

Thanks!

Andrei L.
tagDiv Member

Hi

You can deactivate the Speed Plugin but the custom css will still be loaded in page’s header. If you added your custom css in style.css file, to avoid its duplication you can remove all custom modification made in theme panel, so the custom css will not be generated, but your custom modification are still loaded from style.css file. The theme generate custom css for every modification made in theme panel even if the same code is present in main style file, it works like that.

Thanks!

Viewing 25 posts - 5,751 through 5,775 (of 6,511 total)