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 theme was tested on Opera browser and works fine. Also I’ve tested your site on this browser and works fine: http://screencast.com/t/b3YnpJuaZy Please provide more specific details if you still have this issue so I can inspect it.

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve posted a solution in this topic: https://forum.tagdiv.com/topic/mega-menu-7/ Please try it and let me know how it goes.

Thanks!

Andrei L.
tagDiv Member

Hi

Try to save your permalinks in Settings > Permalinks: http://screencast.com/t/RbUS9kyW Also try to clear all caches, deactivate all plugins except Visual Composer and test again.
If the problem persist please send an email at contact@tagdiv.com and provide wp-access and we will inspect this issue, also include a link to this topic.

Thanks!

Andrei L.
tagDiv Member

Hi

To remove those information only for the homepage you need to add home class like here:

.home .td-module-meta-info, .home .meta-info {
display: none!important;
}

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

By default the theme doesn’t have on option for that but you can use custom css to hide the author name and date from blocks only for the homepage:

.home .td_block_wrap .td-post-date {
display: none;
}
.td_block_wrap .td-post-author-name {
display: none;
}

Let me know how it goes and provide more details if this is not what you mean.

Thanks!

Andrei L.
tagDiv Member

Hi

Replace the previous css with this one (just the one from point 3):

.page-nav-post .td-icon-menu-right:before {
position: relative;
top: -4px;
left: 4px;
float: right;
}

.page-nav-post .td-icon-menu-left:before {
position: relative;
right: 4px;
}

Let me know how it goes.

Thanks!

Andrei L.
tagDiv Member

Hi

The example was for custom ad, but you can use the article top or bottom shortcode to display those ads too. To get the ad’s shortcode add an ad box into a page, switch in backend editor, copy this code: http://screencast.com/t/5Daycu08 and inset it inside the function.
Using this solution you can ad only top and bottom ads in smart list like here: http://screencast.com/t/rzbedxvYY5H to add an ad inside the content you will need custom modification and I cannot provide a quick solution, sorry.

Thanks!

Andrei L.
tagDiv Member

Hi

Make sure you added the ads code according with our documentation: https://forum.tagdiv.com/ads-system-full-guide/ Also note that will take a while until google will provide you ads as its shown in their’s documentation: https://support.google.com/adsense/answer/9715?hl=en&vid=1-635775569174798412-2288929648

Thanks!

Andrei L.
tagDiv Member

Hi

Please check the plugin’s documentation about seo breadcrumbs implementation: http://kb.yoast.com/article/245-implement-wordpress-seo-breadcrumbs You will need to edit the file corresponding with the page template used for posts: http://screencast.com/t/jit0lGoBt

Thanks for the message!

Andrei L.
tagDiv Member

Hi

The theme uses the style.css file while runs on deploy mode, and to use the less files you need to switch on dev mode like here: http://screencast.com/t/29Z50apqX Note that if you will switch on dev mode the style.css file it’s not used anymore and all customization that you made must be added in less files. By default all code from less files is compiled in style.css file and I suggest you to use that file because the page will load only one file.
Before you do any changes make sure you backup your database and especially for the style.css file, in case something goes wrong: https://codex.wordpress.org/Backing_Up_Your_Database

Thanks!

Andrei L.
tagDiv Member

Hi

You can use do_shortcode function to display article inline, bottom and top ad, in smart lists template file: http://screencast.com/t/8w1MOQwuhttp://screencast.com/t/BYfH4ztNhttp://screencast.com/t/rzbedxvYY5H

$buffy .= do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');
Add this line whee you want to display the ad.

Thanks!

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

Hi

Glad you could mange to solve the problem and thanks for letting us know!

Thanks for the message!

Andrei L.
tagDiv Member

Hi

The theme wasn’t designed to add Visual Composer elements on post, so it’s possible to appear some layout issues with that. You can try this solution: http://screencast.com/t/jtZVnLZSpuchttp://screencast.com/t/ZbtHsY1j

[vc_row][vc_column][vc_single_image image="130"][vc_column_text]

I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

[/vc_column_text][/vc_column][/vc_row]
<!--nextpage-->
[vc_row][vc_column][vc_single_image image="130"][vc_column_text]

I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

[/vc_column_text][/vc_column][/vc_row]
<!--nextpage-->
[vc_row][vc_column][vc_single_image image="130"][vc_column_text]

I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

[/vc_column_text][/vc_column][/vc_row]

Notice that I haven’t test this with all theme’s blocks so I cannot grantee it will works for each one.

Thanks!

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

Hi

You can increase the font size for the sub-categories items using custom css in theme panel > custom css: http://screencast.com/t/ZMmTJII8

.td_mega_menu_sub_cats a{
font-size: 15px;
}

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

To hide the author name and date for a specific category page try adding this code in td_module.php file like here: http://screencast.com/t/a0NTeGRu just replace the category name:

and !in_category('vogue')

To hide those info from posts that belongs to a specific category you need to add a condition in the file corresponding with the post template used: http://screencast.com/t/5JHbRQVHtv0http://screencast.com/t/pDeoshW9OH The same condition must be added if you want to hide the author box: http://screencast.com/t/BHNB4FJ7lVVx

<?php
if (!in_category('vogue')) {
echo $td_mod_single->get_author();
}?>

Also you will need this custom css in theme panel custom css:

.td-post-views {
display: inline-block;
margin-left: 0!important;
}

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

Sorry for misunderstanding you!
The top menu date it’s set in top-menu.php file so you need to modify this parameters like here: http://screencast.com/t/mkZYyoS076fYhttp://screencast.com/t/iQeaCm6ZbRs

Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

The max_input_vars values is in php.ini file, if you don’t have access to it contact your host provider and let him know about this situation.

Thanks!

Andrei L.
tagDiv Member

Hi

That it’s a field we added in top menu, but you can remove it if you want from Appearance > Menus: http://screencast.com/t/VWl1chHOPS

Please let us know if this is not what you mean.

Thanks!

Andrei L.
tagDiv Member

Hi

We didn’t tested this plugin with the theme so I cannot provide an accurate answer in this regard as I am not aware of its functionality. You need to customize theme’s category label/tag system in order to have those icons integration. This changes require custom work for which we aren’t available at the moment so we advice you to look for a freelancer from sites like: http://studio.envato.com/ to help you with this.

Thanks!

Andrei L.
tagDiv Member

Hi

Try to clear the all caches, also make sure you’re using ajax view counter if you’re using cache: http://screencast.com/t/m8JOOqcEUg

Let me know how it goes!

Andrei L.
tagDiv Member

Hi

Not sure what you mean, but I noticed that on your site the modal images are not displayed. If this is the problem you pointing, notice that you need to set link to: Media File: http://screencast.com/t/2mka2HaCYL1 if you want to use theme’s modal image, otherwise the image will not be displayed.

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

Thanks!

Andrei L.
tagDiv Member

Hi

The theme’s blocks are designed to work only with Newsmag/Newspaper themes and they are not available for sale as an Add-On or plugin, sorry.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

The theme wasn’t designed to display pages in modules/blocks you will need custom modification or a plugin to achieve that functionality. Basically the theme uses taxonomies to display articles on blocks so a possibility would be to add a specific taxonomy for pages and use it in this scope. That it’s a very complex task and my advice it’s to hire a developer from sites like http://studio.envato.com/ to do that for you as we cannot offer any type of custom work for the moment.

Thanks for the message!

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

Hi

Some browsers requests this file but you can avoid this by removeing this code from style.css file: http://screencast.com/t/fVdghqja6

Thanks!

Andrei L.
tagDiv Member

Hi @hoarr

Try to increase the memory allocated to php in wp-config.php file, here it’s a guide regrading this
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP If you still get this behavior also test this by disabling all plugins, also check in system status if the max_input_vars values, this should be over 2000: http://screencast.com/t/FDC4K3PJOCME

@ctrlinternet
we didn’t tested the theme with any Cloud Flare plugin and I am not aware of its functionality, you may try an alternative to it.

Thanks!

  • This reply was modified 10 years by Andrei L..
Viewing 25 posts - 5,801 through 5,825 (of 6,511 total)