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 @RingoD

That seams to be caused by a custom javascript so you can also try to deactivate all plugins except Visual Composer, clear all caches and test again.

Let me know how it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

Please make sure that all theme’s blocks and grids are enabled in Visual Composer: clear all caches and test again.

Let me know how it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

The theme doesn’t control the way google deliver ads, it only render the code ad-sense code. For more details please check this link: https://support.google.com/adsense/answer/9715?hl=en

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi @pearleye

Please check this topic: https://forum.tagdiv.com/topic/wp-booster-error-6/#post-62185 I’ve posted a solution regarding this error.

Thanks!

Andrei L.
tagDiv Member

Hi

That file is not available in WordPress editor. You have to edit it manually on your computer, apply the indicated changes then upload it via ftp in same exact folder.
Before making any changes make sure you do a full backup to your current wp-install and the database. In case something goes wrong you can always get back to the previous version.
If this is not what you mean please provide more details.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure what you mean so please provide more specific details about your issue and also your site url so I can inspect this closer.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not aware how GeoDirectory plugin works but if generate new post type then you can displayed it in blocks by adding its name in block’s filter options like here: http://screencast.com/t/rEne9rFB
Please note that this plugin is not tested with the theme and we cannot guarantee it will work 100%.

Thanks!

Andrei L.
tagDiv Member

Hi @Syams

We will test the current version of Visual Composer with the theme and if the results are good we will include it in the next theme update.

Thanks!

Andrei L.
tagDiv Member

Hi

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

.sf-menu {
display: table;
margin-left: auto!important;
margin-right: auto;
}

That delay appear because the css from theme panel loads after the main css of the theme, loaded from style.css file. To avoid that delay try to insert the css directly in style.css: http://screencast.com/t/kOQTD07V

Thanks!

Andrei L.
tagDiv Member

Hi

Try using a row js from Visual Composer to add your code on the page: http://screencast.com/t/Rruf6yhllR9R This block is designed to render js code and should work fine. Also I’ve test your code with a text block and works fine: http://screencast.com/t/sOHgx4sWhttp://screencast.com/t/NMea4dxUpB

Thanks!

Andrei L.
tagDiv Member

Hi

In order to display some informations about post’s author that must be registered in database as a user. This is the WordPress functionality in this regard and cannot be changed easily.
You can add the authors as users in your WordPress database and use a plugin to limit their’s roles and capabilities. For example you can allow authors to only write and publish posts. Here i found some information which may help you in this regard: http://www.wpbeginner.com/beginners-guide/wordpress-user-roles-and-permissions/https://codex.wordpress.org/Roles_and_Capabilities

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve tested a few posts from your site on different mobile devices including BlackBerry and and Nokia Lumia but I can’t find any issue with the More Article box. Here is a test made with the emulator from Chrome: http://screencast.com/t/CAZsh3HbXm0 but I got the same behavior on any mobile device where I’ve test this.
Try to clear the mobile device cache memory then test again. Also you can try testing on different devices with the same navigation system and check if the problem is still there.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure I understand your issue completely. Are you saying that the theme does not save changes made in translate sections? If this is the case check in browser console if there are any errors while you’re saving the settings in translate panel. Usually should be a 403 or a 404 error. Also try to deactivate all plugins except Visual Composer, clear all caches and test again.
Let me know how it goes and if the problem persist please provide your site url so I can inspect this closer.

Thanks!

Andrei L.
tagDiv Member

Hi

Try this css: http://screencast.com/t/yRso9vRu2i6c

.td-mega-menu ul .td-next-prev-wrap{
margin: 0px 20px 0px 0px;
top: 13px;
}

Thanks!

Andrei L.
tagDiv Member

Hi

An automatically method to multiply the post view number would be to multiply this value with the desired number: http://screencast.com/t/2fTt6BcC

Thanks!

Andrei L.
tagDiv Member

Hi

Please provide your site url so I can inspect this closer.
Thanks!

Andrei L.
tagDiv Member

Hi

Replace the code from header-style-7.php file with this one: http://pastebin.com/MTxJW8zYhttp://screencast.com/t/GiQ05BLPA Place the ad code in custom ads spots from theme panel and replace the required numbers as I indicated in screen.
Also you will need this css in theme panel > custom code > custom css: http://screencast.com/t/s7ovP3m4n

.td-header-sp-ads-left{
width: 35%;
float: left!important;
}
.td-header-sp-ads-right{
float: right!important;
width: 35%;
}
.td-header-style-7 .td-header-sp-logo{
width: 30%;
}
.td-header-sp-ads-left .td-a-rec img {
margin-left: 5px;
}
.td-header-sp-ads-right .td-a-rec img{
margin-left: -5px;
}
@media(max-width: 768px){
.td-header-sp-ads-left, .td-header-sp-ads-right{
width: 49%;
}
}

Note that I’ve tested this only with header style 7. For others header styles you will need additional customizations.

Thanks!

Andrei L.
tagDiv Member

Hi

Please check this link, I posted a solution here: https://forum.tagdiv.com/topic/default-image-per-category/
Thanks!

Andrei L.
tagDiv Member

Hi

Indeed the last css don’t apply at the category tags for each post, sorry about that I missed some selectors. To achieve that replace that css with this one: http://screencast.com/t/OsUfXSWnCl

.td_mega_menu_sub_cats .block-mega-child-cats a, .td_block_mega_menu .td-post-category{
height: inherit;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Thanks @Chris for your feedback!

@gmaio
you can load the css and js conditional by adding a hook in functions.php file like here:

add_action( 'wp_enqueue_scripts', 'dequeue_unwanted_scripts', 2000 );

function dequeue_unwanted_scripts(){
	if (is_page(array('page-id1', 'page-id2'))){
		wp_dequeue_style( 'file-id' );
	}
	if (is_single(array('page-id1', 'page-id2'))){
		wp_dequeue_style( 'file-id-' );

	}
 }

Note that this is just a basic example. You have to replace the page-id with the numeric id of your page and the file id with the specific id for each specific resource. To get the page id follow this link: http://screencast.com/t/9V7zgx6WK and to get the file id use the indicated file function in our page-speed guide: https://forum.tagdiv.com/how-to-make-the-site-faster/http://screencast.com/t/EYWMMocPrN The required conditions for your resources may differ then the ones I’ve indicated in above example and also you have to make sure that by removing some resources the page load won’t be affected.
Please consider that this is a complex task which require advanced coding skills, also many customization and tests. If you can’t do this by yourself my advice is to look for someone which can help you with this or hire a freelancer to do it for you as we can’t offer any type of custom work at the moment.

Thanks!

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

Hi

Please provide your site url so I can inspect this closer. Meanwhile make sure that your browser is set to default zoom settings because if the zoom is smaller then 100% the layout will be affected: http://screencast.com/t/slc8smhO

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site on a tablet with Windows 8 as operating system and I have not encountered any problems with more article box but i found a js error in browser’s console on desktop: http://screencast.com/t/zEGTDEviD I am not sure what causes this error but you can try to deactivate all plugins except Visual Composer just to be sure that there is no conflict, clear all caches and test again.

Let me know how it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

Unfortunately the theme does not any widget which automatically embed tweets. To achieve that most likely you will need a plugin with a similar functionality. I can’t recommend a specific plugin for this but I found here some informations which may help you in this regard
https://premium.wpmudev.org/blog/3-wordpress-embed-tweets-plugin/
http://www.wpbeginner.com/plugins/how-to-embed-actual-tweets-in-wordpress-blog-posts/

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

Please provide your site url so I can inspect this closer.
Thanks!

Viewing 25 posts - 3,951 through 3,975 (of 6,511 total)