Home User profile
tagDiv Staff
I'm passionate for computers, sports and games. I spend a lot of time playing around with divs, scripts, codes, containers. I also coordinate the support team to make sure every customer is properly treated.
Emil G
tagDiv Staff

Hi,

Wordpress doesn’t compress images by default, you have to compress them yourself before upload, or use a plugin which can add such functionality, or add the following code in functions.php:

add_filter( 'jpeg_quality', create_function('', 'return 50;' ) );

This will compress all images to 50%, you can change that value, after you add the code you have to regenerate all thumbs – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

It’s possible with modifications on code and css, unfortunately it’s not an easy task, ex. : – http://screencast.com/t/MR2Aa3Td

@media (max-width: 767px){
.mobile-logo-wrap img {
right: auto;
left: 5px;
top: 0px;
}
.td-menu-header{
position: relative;
}
#td-top-mobile-toggle {
float: right;
}
#td-top-search {
position: absolute;
top: 2px;
right: 50px;
}
.header-search-wrap .dropdown-menu {
right: -10px;
left: auto;
}
.header-search-wrap .dropdown-menu:before {
left: auto;
right: 27px;
}
}

The menu still opens from the left, if you want to make it open from the right i suggest that you hire a professional developer to make that modification for you, it’s not an easy task.

Thank you, Emil G.

  • This reply was modified 11 years by Emil G.
Emil G
tagDiv Staff

Hi,

For external resources you cannot set the browser leverage, ex. google js/css. Do you use a CDN? if you do you have to configure the leverage cache from cdn settings panel (if available).

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

Do you use a mobile redirect plugin? check on it’s settings it may be configured to also redirect tablets or look for an alternative.

Thank you, Emil G.

Emil G
tagDiv Staff

Salut,

Din pacate nu putem sa oferim suport la telefon, poti sa ne trimiti o lista cu problemele intalnite pe contact@tagdiv.com , eventual o sa cerem access wp-admin ftp daca e cazul.

Multumesc, Emil G.

Emil G
tagDiv Staff

Hi,

How is the inline ad set on your side?

The ad code breaks content into paragraphs, counts until it reaches to the paragraph specified in the settings and displays the ad – http://screencast.com/t/Bt7rNHz3Psd
The code may require modifications to make it compatible with the plugin or the plugin may require modifications.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

The search page by default it’s set to use the search module – td_module_search.php – http://screencast.com/t/lSc3dbRLw
This module displays the featured image for each post, if something else is returned it displays the default placeholder image. To make it display avatars for authors it requires modification on the code and it’s not an easy task. If you don’t have programming experience my advice is to hire a professional developer to modify it for you. I’ve added this on our list but for the moment it’s not a priority, sorry, we have over 200 features on the list and we have to chose carefully which one get’s implemented next.

The image placeholder can be disabled from Theme Panel – http://screencast.com/t/ZDh4yHSQ

Thank you, Emil G.

  • This reply was modified 11 years by Emil G.
Emil G
tagDiv Staff

Hi,

We use a custom function for translations – http://screencast.com/t/yuNAwmkg – i suspect wpml requires something else, you could search for it in the theme and replace it with wpml required function – http://screencast.com/t/3zbHIZdj – or modify the function itself.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

Check if the redirect is properly set, here’s a hint – https://productforums.google.com/forum/#!topic/webmasters/t24OIiO9Swk

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

I’ve checked your site, your images are not optimized, reducing their size will lower bandwidth usage. You also have to set the browser leverage cache, some resources will be cached on user browser meaning they will be downloaded only once reducing the number of requests. If you don’t have a cache plugin i recommend that you use W3 Total Cache, enable only page cache (do not enable the other options) – http://screencast.com/t/lOI30ncGfK8 . You can check this guide on how to fix those issues – https://forum.tagdiv.com/how-to-make-the-site-faster/ – and this one – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/ – and the discussions here – https://forum.tagdiv.com/topic/pagespeed/

In case this is not enough you could try to disable the view counter, it will lower the number of database queries. You can also check the plugins and remove the unused ones.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

You have to take the categories from the current post, use get_the_category( $this->post->ID ); , it returns an array. Create a variable, ex. named $excluded_cat , and set it to 0 (zero), use foreach to compare each element with the category you want to eclude, if it’s present set the $excluded_cat to 1.
Add a condition like – if (($excluded_cat == 0) and is_single()) { ..

You can see something similar here – http://screencast.com/t/ClZqqdqaJ1

If you don’t know how to build this i advise that you look for a professional developer to build it for you.

Thank you, Emil G.

  • This reply was modified 11 years by Emil G.
Emil G
tagDiv Staff

Hi,

The issue appears because you load the font file (which contains those icons) from another host/url – http://screencast.com/t/fKy2k43k9kc , the solution would be to load them from the same url as the site, or check this solution – http://webmasters.stackexchange.com/questions/71630/font-blocked-from-loading-by-cross-origin-resource-sharing-policy-no-access-co

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

You don’t need to select a template and it’s not necessary to create a page, you could access the forum by adding /forums to your url (ex, http://www.yoursite.com/forums), if you still want to create a page you can doit like this – http://screencast.com/t/GemPXMcO7gD3

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,


@ShinAkuma5
– You have to compress the images and enable gzip compression – http://screencast.com/t/DrmfFEsgf4sT
Check this guide – https://forum.tagdiv.com/how-to-make-the-site-faster/https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/https://forum.tagdiv.com/topic/pagespeed/


@Christopher
– It looks like an empty before element, you could use css to remove it: – http://screencast.com/t/u8Q6ppLOD0h

.widget_recent_entries ul li:before {
display: none;
}

Thank you, Emil G.

  • This reply was modified 11 years by Emil G.
Emil G
tagDiv Staff

Hi,

The issue seems to come from line breaking – end of line special characters interpretation. Try to replace (overwrite it) the td_panel_categories.php file – http://screencast.com/t/rnRNRNL1Ri with the one provided in the following link – https://www.dropbox.com/s/tegdpkwb43z9air/td_panel_categories.zip?dl=0

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

The images are uncompressed – http://screencast.com/t/v6T2UouocG
After optimization you can also try to disable all plugins, enable only visual composer and check if the issue is still there.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

Sorry about this issue, we made a lot of tests before the release on our side but this issue didn’t occurred.
I’ve tried to replicate this on our side but no luck yet, it must come from an old parameter which is still kept in the cache. Please try to delete the cache and the browser cache and check again. If it doesn’t work please provide the url so i can inspect it and see what may be the cause of this.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

We plan to add an option in one of the next theme updates, until then you can disable it by commenting the following code:

http://screencast.com/t/EeZtG9ZaeYc4
http://screencast.com/t/lyoT2JJOyO
http://screencast.com/t/car27MpH

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

Try to modify the code like this – http://screencast.com/t/vMwhbgBbmKmT

http://pastebin.com/h8nSVS1Y

Let me know if it works for your.

Thank you.

Emil G
tagDiv Staff

Hi,

Try to modify the code like this – http://screencast.com/t/vMwhbgBbmKmT

http://pastebin.com/h8nSVS1Y

Let me know if it works for your.

Thank you.

Emil G
tagDiv Staff

Hi,

Replied via email.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

You have to look into the plugin documentation to see how you can integrate it. Usually the script goes in the header or footer and the div in the template. The theme current buttons code is located here – http://screencast.com/t/imnr0bxIB

Thank you, Emil G.

  • This reply was modified 11 years by Emil G.
Emil G
tagDiv Staff

Hi,

Try to disable all plugins, enable only Visual Composer and this plugin and check if the issue is still there. If the issue is still there you may have to look for an alternative.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

You mean you want to rotate different banners? the theme doesn’t have such a function, you have to use a plugin like Adrotate or Simple Ads Manager.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,

I’ve added it on our list, we’ll fix it as soon as we find the solution, thanks for reporting this.

Thank you, Emil G.

Viewing 25 posts - 701 through 725 (of 1,285 total)