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

The big grids were designed to be displayed on a full width row. If you want a 2/3+1/3 layout for the entire page you can’t use grids because theirs content will override other content from the right side of the page.
Sorry for inconvenience.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

First step in this process is to get the files ids so please follow this link: https://forum.tagdiv.com/how-to-make-the-site-faster/ At point 5 are explained the steps you need to take in this regard.
After you get the ids edit the td-speed-booster.php file (located in /your-wp-install/\wp-content\plugins\td-speed-booster) and add this lines of codes like here:
– for css files: http://screencast.com/t/GiBcnLERoj
– for js files: http://screencast.com/t/GAWqy0Bb6gE

Note that the Speed Booster plugin disable itself when an incompatible plugin it’s installed. We added this measure to avoid conflicts with the plugins that won’t allow to move their css/js resources at page bottom. Check in System status if the plugin is active: http://screencast.com/t/slBN4kNf To keep it always activated comment or delete the indicated lines from td-speed-booster.php: http://screencast.com/t/RZLIOPUNdqh You can check this topic for more information about sped booster usage: https://forum.tagdiv.com/topic/speed-booster-questions/

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

You can use theme’s slide block which have an option to auto-play slides at x seconds: http://screencast.com/t/lFH9rmML Just set the seconds between the slides and they will run automatically.

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

There are lots of factors that influence the site’s page-sped. I’ve checked your site with PageSpeed Insights tool and noticed that you have a slow server response time and lots of css/js resources which also slow the page load: http://screencast.com/t/zbHS570RMiK
To improve your server response time you can try to reduce the number of queries (fewer plugins, fewer blocks on page, reduce the elements which use ajax requests/pagination like mega menus/load more/infinite load), also consider using a cache plugin and to improve the loading speed look the mysql query cache: http://dev.mysql.com/doc/refman/5.1/en/query-cache.html We also use it on our demo.
Also you can use the speed booster to move the js and css at the bottom of the page, eliminate render-blocking, but not for all plugins. Check the System Status if the speed booster is active if you use other plugins than the tested ones. You can find some useful information regrading speed booster usage in this topic: https://forum.tagdiv.com/topic/speed-booster-questions/
Also you can read this guide, it may help – https://forum.tagdiv.com/how-to-make-the-site-faster/

Thanks!

Andrei L.
tagDiv Member

Hi

Glad I could help.
Have a nice day!

Andrei L.
tagDiv Member

Hi

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

.page-template-page-pagebuilder-title-php .td-page-title {
display: table;
margin-left: auto;
margin-right: auto;
margin-bottom: 0!important;
font-size: 35px;
}
.page-template-page-pagebuilder-title-php .td-page-content{
margin-top: 0;
}

3. I am not sure what you mean as the page title have h1 tags. If you want to increase the font size for it just modify the value from the above css.

Let me know how it goes and provide more details if you need a different approach on this.
Thanks!

Andrei L.
tagDiv Member

Hi

When a featured video it’s set for a post WordPress generate new images for each thumb size used by the theme. For example block 3 use a 300×160 px thumb for image, and when you add the block on page the image used is your-image-name-300×160.jpg. This is not a theme issue, that’s the way how WordPress works, that’s why you have lots of duplicate images in media library.

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

You need to edit td_config.php: and add the code here: http://screencast.com/t/WF6xJyP8lKSb

Thanks!

Andrei L.
tagDiv Member

Hi

Unfortunately we don’t plan to implement such a feature, sorry. We may change our mind in the future if more people will make similar requests, but I cannot promise anything.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and noticed that you have an offset set on your STRIPBOEKEN block which means that the first post from that category will be excluded: http://screencast.com/t/oX7KMQDZg so try remove that offset: http://screencast.com/t/chmQCKfYi9S2 clear all caches and test again.

Thanks!

Andrei L.
tagDiv Member

Hi

We haven’t tested cloudflare’s rocket loader with the theme but usually the rocket loader or automatic compression of js resources cause this. We don’t recommend using an autominify tool as this could generate js conflicts and break features that use js to function as in your case mobile menu and search did.
Please make sure you deactivate all plugins including cloudflare and cache you use, leaving just the Visual Composer active and empty all cache then purge files and check this again.

Let us know how it goes!
Thanks!

Andrei L.
tagDiv Member

Hi

Alin replied you via email!
Thanks!

Andrei L.
tagDiv Member

Hi

Your code is missing the loop part which check if there are any post to be displayed on the page. A basic loop example it’s in this code:

<?php if ( have_posts() )  ?>
<?php while ( have_posts() ) : the_post(); ?>
    <div class="td-container">  //the theme uses this classes for
    <div class="td-container-border">  //post/page content
        <?php the_content(); ?>
        //you can place a custom code here, depending by your needs 
    </div>
    </div>
<?php endwhile; ?>

The theme display the page content using this classes: td-container, td-container-border You can replace them if you want but in this case you need to create your own css for layout. Also you can use your classes within theme’s classes like this:

<div class="td-container">  //the theme uses this classes for
    <div class="td-container-border">  //post/page content
        <div class="img-header-home">
        <div class="container mt-130 z-index100">
          My static content
          <?php the_content(); ?>
        //you can place a custom code here, depending by your needs 
        </div>
        </div>
   </div>
</div>

You can check this example code here: http://pastebin.com/8E0XZ8de which produce this result: http://screencast.com/t/p8SsR9P2x9Whttp://screencast.com/t/N95ikdPhHY
This is a basic example, but you can customize your page template as you need by ading different conditions in that file. For more information regarding WordPress loops you can check the official documentation: https://developer.wordpress.org/themes/basics/the-loop/

Hope this help.
Thanks!

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

Hi

You can use theme API to modify the current thumbs available on the theme, or add a new one: https://forum.tagdiv.com/td_api_thumbadd/ Also you can use this css in theme panel custom css to increase the height oh the image: http://screencast.com/t/XBwaLIpm

.td_block_16 .td_module_mx4 .entry-thumb{
min-height: 200px!important;
}

Thanks!

Andrei L.
tagDiv Member

Hi

We will investigate this issues and hope we can came up wit a solution soon. Meanwhile try this css, it should work sine: http://screencast.com/t/7foyTZkfx9

.groups #buddypress div#item-header div#item-actions{
left: 0;
top: 62px;
}
#buddypress div#item-header ul {
display: block;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Glad you figured it out! Please check our documentation, we have added there information and guides which can help you on developing your site and understanding theme’s settings and features: :https://forum.tagdiv.com/newsmag-newsmag-documentation/ also we have a youtube channel: https://www.youtube.com/watch?v=TUdVeZ1pbuc&list=PL6CsDkMaejhpWFcFNOIDfdp5nIT0NbUbj
If you will need further information regarding theme’s functionality please let us know.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

You can add a icon for your web browser window by adding this line of code in header.php file:
http://screencast.com/t/dl442uHQxhttp://screencast.com/t/ADNm0zIr1

<link rel="icon" type="image/png" href="your-icon-image-url">

Let me know how it goes.
Thanks!

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

Hi @yash3339

Please address us via email at contact@tagdiv.com including a link to this conversation and also give us wp-access so we can have a closer look at this and we will get back to your as soon as possible.

Thanks!

Andrei L.
tagDiv Member

Hi

You can define a new ad size by modifying td_panel_ads.php file and add this line like here http://screencast.com/t/ETjfreY9http://screencast.com/t/Ag2iucQPoo

array('text' => '970 x 250' , 'val' => '970 x 250'),

Let me know how it goes.
Thanks!

Andrei L.
tagDiv Member

Hi @stuartmasson

Please make sure that you disable html/css/js minify option because usually the automatic compression of these resources could cause issues like the one you describe above.
We don’t recommend using an autominify tool as this could generate js conflicts and break features that use js to function, like in your case smart sidebar did.

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

You can use theme API to modify the current post templates available on the theme, or add a new one: https://forum.tagdiv.com/api-single-template-introduction/ Please consider that this is a complex task which require many customizations in theme files and also involve good coding skills. If you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer from sites like: http://studio.envato.com/ to do this for you as we can’t offer customization services at the moment.

Thanks!

Andrei L.
tagDiv Member

Hi

The current version of the theme V2.3 have the new G+ logo: http://screencast.com/t/6h2kXs5ONdrhttp://screencast.com/t/HL1yQXlra

Thanks for the message!

Andrei L.
tagDiv Member

Hi

That is WordPress built in widget and to limit the categories displayed in it you need to edit WordPress files. Also you can look for a plugin which allow you to control the number of categories tags displayed on the page.

Thanks!

Andrei L.
tagDiv Member

Hi

If posts 5,4,3,2,1 are in categories A,B,C and categories B,C are excluded from being displayed in block, those posts wont be displayed because they belongs to excluded categories.
A solution would be to add for each post which want to display in block a specific tag, leave the categories filter empty and filter posts by that specific tag. Like that only posts with that tag will be displayed in block: http://screencast.com/t/shN6rwKyu
If you need a different implementation for block’s filters you will need customizations in theme files and unfortunately we can’t offer customization services at the moment. If you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer from sites like: http://studio.envato.com/ to do this for you.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure at what widget are you referring, please provide more details about what you’re trying to do so I can investigate it and provide a solution, if possible.

Thanks!

Viewing 25 posts - 5,051 through 5,075 (of 6,511 total)