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

Please check this topic, I’ve provided a solution at this question: https://forum.tagdiv.com/topic/selective-content-for-mobile/

Thanks!

Andrei L.
tagDiv Member

Hi

Try this guide and regenerate the thumbnails for all your images: https://forum.tagdiv.com/how-to-fix-strange-thumbnails/ clear all caches and test again.

Thanks!

Andrei L.
tagDiv Member

Hi

The function which must be modified is get_date: http://screencast.com/t/QGvoQiNv but this is a complex task which require lots of customization in theme core files and I can’t provide an answer now. A way would be by adding a set of conditions which display a specific type of date depending by the post published time.
Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.

Thanks for the message!

Andrei L.
tagDiv Member

Hi

I can’t made a recommendation in this regard as I am not aware of script’s functionality. Try to contact the provider and ask him about the best way to implement the script on the page. In our theme the body tag begins in header.php file: http://screencast.com/t/i15A0Wnxgy and ends in footer.php: http://screencast.com/t/0eHLVA7jeT

Thanks for the message!

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

Hi

Please check our page speed guide: https://forum.tagdiv.com/how-to-make-the-site-faster/ Also you will find some useful information in this regard here: https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/https://forum.tagdiv.com/topic/speed-booster-questions/

Hope this help!
Thanks!

Andrei L.
tagDiv Member

Hi

1. Try this custom css to change the category tag color: http://screencast.com/t/durWDli6

.td-post-category{
background-color: red;
}

2. You can customize the category page individually for each category from theme panel > categories: http://screencast.com/t/MfHsmVqWbc If this is not what you mean please provide more details so I can provide a more accurate answer.

3. When you update the theme the old files are rewritten by the new ones so this customizations will be lost, except the css from theme panel. You need re-add the changes in the indicated files after update.

Thanks!

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

Hi

Visual Composer plugin was not intended to work on posts with our theme and some features will not work fine in that case. When this plugin it’s used on posts the html structure change and the css code no longer applies as usually, that’s why the text doesn’t warp around the image.
As you suggested using a text block could be a solution to warp text around the image when VC it’s enabled for posts: http://screencast.com/t/EhVcxFeDxVchttp://screencast.com/t/CgKaaxQxI5

Thanks!

Andrei L.
tagDiv Member

Hi

You can select a header style which is full width from theme panel > header style. For more information regarding the header styles please check our documentation: https://forum.tagdiv.com/header-styles/
The theme have a full with layout only for a few header styles, the other page content have a boxed layout with fix width as can be seen on our demo: http://screencast.com/t/swRuYUva

Thanks!

Andrei L.
tagDiv Member

Hi

Visual Composer plugin has been updated because of some security vulnerabilities. The 4.7.4 version of the VC plugin, is already available in latest theme version package (6.5.1) so you should make sure you download the latest theme version from your themeforest account, downloads section: http://themeforest.net/downloads then update the Visual Composer plugin: https://forum.tagdiv.com/how-to-update-visual-composer-plugin/

Thanks!

Andrei L.
tagDiv Member

Hi

I guess it must be a google share issue, I found here a topic regarding this issue, please check it maybe will help if this happens again – http://stackoverflow.com/questions/28957215/google-plus-share-dialog-showing-wrong-image-using-opengraph-meta-tags

Thanks!

Andrei L.
tagDiv Member

Hi

Sorry for misunderstanding you.
I thought that you want to transfer your site from domain A to B. You can use the license on domain B if domain A become inactive. Envato specifies in theirs policies that the license can be used for only one domain/project: http://themeforest.net/licenses/standard

Thanks!

Andrei L.
tagDiv Member

Hi

First you need to register a new thumb size in td_config.php file: http://screencast.com/t/gcfWyyUBENLg You can check our documentation for more details about this process: https://forum.tagdiv.com/api-thumbnail-introduction/. If you’re referring at the post from related articles area: http://screencast.com/t/zEAgudRP – then the file that must be edited is td_module_related_posts.php http://screencast.com/t/fOxkxFzU5T1d
Note that you may need some css customizations such that the new thumbs to fit well on the page.

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

You need to use Page Builder + latest article as a page template to have the loop settings available: http://screencast.com/t/Ov52HBSmXJI
Regarding the main menu please check our documentation for more details: https://forum.tagdiv.com/main-menu/

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and noticed that the html structure of the page is affected, that’s why the elements are not displayed correct. If you made some changes in theme files try to revert them, also remove any custom code added in theme ads spots, row html, row js if you’re using, deactivate all plugins except Visual Composer, clear all caches and test again.

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and the problem appear on Chrome too. Also I noticed that the html structure for your menu is different then the one from the theme. Try deactivate all plugins except Visual Composer, clear all caches and test again. Also you can try this css in theme panel > custom css: http://screencast.com/t/x5SM3UGB

#mega_main_menu.direction-horizontal > .menu_holder.sticky_container > .menu_inner{
width: auto!important;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Try to save your permalinks under Settings > Permalinks: http://screencast.com/t/rsr73GLl deactivate all plugins except Visual Composer, clear all caches including browser’s cache then test again.

Let us know how it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

Thanks for the suggestion, I’ve added it on our list and we will consider it for the next theme updates. We will be very grateful if you could send us a link with google policy in this regard.

Thanks!

Andrei L.
tagDiv Member

Hi

The theme is optimized such that works well on mobile devices but if you want a different implementation you can use media queries in order to hide some content according with screen’s width. Here is an example:

@media (max-width: 767px) { //screen width; //
.element-to-hide { //the css class of the element that you want to hide/change, in some cases may be needed more classes for a more specific target //
display: none; //css properties; //
}
}

Fore more details about css coding you can check this link, it contains some useful information: http://www.w3schools.com/css/default.asp

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

1. Try this custom css i theme panel > custom css: http://screencast.com/t/sI4dZ4mylrz

.category .td-subcategory-header a.td-current-sub-category,
.category .td-subcategory-header .td-category a:hover {
background-color: transparent !important;
position: relative;
border-radius: 0;
}
.category .td-subcategory-header .entry-category a.td-current-sub-category:before,
.category .td-subcategory-header .entry-category a:hover:before {
content: '';  
background-color: #222;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
-webkit-transform: skew(-30deg);
-moz-transform: skew(-30deg);
-o-transform: skew(-30deg);
-ms-transform: skew(-30deg);
transform: skew(-30deg);
}

2. To add the published time you need to edit the file corresponding with the post template used and add this line of code like here: http://screencast.com/t/qLlMiEp0rkphttp://screencast.com/t/NyGF96PyB

<?php echo get_the_time('g:i a'); ?>

To move the Via Name and Via url on top follow this link: http://screencast.com/t/F2JZR7VU1A Also you need to add this css in theme panel > custom css: http://screencast.com/t/YGgeR18Imem5

.td-post-source-via{
display: inline-block;
    margin-left: 10px;
}

Thanks!

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

Hi

1. I am not sure what you mean but if you want to count the post’s shares you would need a plugin as the theme doesn’t have an option for that. The theme wasn’t designed to display the social sharing buttons on pages, you will need custom modifications in theme core files ton achieve that. You can find some useful information in this topic: https://forum.tagdiv.com/topic/can-i-edit-block3/ Please note that this is complex tacks and you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you as we can’t offer custom services at the moment.

2. You can remove the Pintrest share button by editing td_module_single.php file and delete this line: http://screencast.com/t/4s5kcUCsEvrhttp://screencast.com/t/OM5SNSEPnnhttp://screencast.com/t/SV7modnT3 In order to add a new sharing button please follow this tutorial: https://forum.tagdiv.com/add-a-new-linkedin-button/

3. Please make sure that you enabled the social icons in top bar: http://screencast.com/t/som0EZIfwQ clear all caches and test again.

Thanks!

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

Hi

Try to remove and this meta value: http://screencast.com/t/BzPDqpTGQLXp clear all caches and test again.

Let us know how it goes!
Thanks!

Andrei L.
tagDiv Member

Hi

The only recommended and tested plugin for SEO with Newsmag theme is SEO by Yoast. We test this plugin and works fine with the theme, also it’s the most recommended plugin by the seo experts.

Thanks!

Andrei L.
tagDiv Member

Hi

You can use the license key on the domain B if you moved your site from domain A. Just follow the steps indicated in our documentation: https://forum.tagdiv.com/newsmag-how-to-activate-the-theme/

Thanks!

Andrei L.
tagDiv Member

Hi

1. Please make sure that you follow our documentation in order to add a new menu item: https://forum.tagdiv.com/newsmag-main-menu/

2. I’ve checked a few posts from your site an noticed that the featured images are missing. Try to same the permalinks under Settings > Permalinks: http://screencast.com/t/qdJQQSawVo regenerate your thumbs: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/ clear all caches, deactivate all plugins except Visual Composer and test again. Note that we didn’t test the theme with re-post/cloning plugins so I can’t say how will work with them. Also the theme does not set automatically a featured image for posts, you will have to do this manually.

3. The images are displayed fine now. If this happens again try to deactivate lazy load animation and all others plugins except Visual Composer then test again.

Thanks!

Andrei L.
tagDiv Member

Hi

Sorry for the delay but we don’t work in weekend!
Unfortunately there isn’t a simple way to add a hock in child theme for that change, but you can simplify this process by adding this parameter in td_module_single_base.php: http://screencast.com/t/5RUbuKghh

Thanks!

Viewing 25 posts - 5,351 through 5,375 (of 6,511 total)