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

As @Chris mentioned the theme does not control the pagination in back-end: http://screencast.com/t/nVcSATZ23 If you want to change its layout or functionality you will need a custom implementation.
Thanks!

Andrei L.
tagDiv Member

Hi

Use this css: http://screencast.com/t/BPKx2Hrtbp2g

@media(max-width: 768px){
.td-header-sp-rec,
.td-header-style-1 .td-header-row {
width: 100%!important;
}
.td-main-menu-logo img{
width: 75%;
}
}

Thanks!

Andrei L.
tagDiv Member

Hi

That delay is caused because the custom css from theme panel is loaded after theme’s main css. This is not an issue from the theme, we decided that way becasue the css is applied in cascade and the last code loaded makes the final layout is more precis the the previews code.
The “fix” would be to paste the custom css directly in style.css file: http://screencast.com/t/LPC0LV5h

Thanks!

Andrei L.
tagDiv Member

Hi

Indeed there is no option to sort posts by views and for the moment we don’t plan to add such an option, sorry. However I’ve added this suggestion o our todo list an if more people will make similar requests we will implement it in future. As and alternative you can make a private page and sort it to display most popular posts: http://screencast.com/t/RuwOHWlQ38G A private page is not visible for visitors, only the admin can see it: https://codex.wordpress.org/Content_Visibility

Thanks!

Andrei L.
tagDiv Member

HI

I’ve checked your site ad the menu works fine on my side: http://screencast.com/t/qv2Exzf4 If you still have this issue please provide more specific details about it, also a screen would be helpful.

Thanks!

Andrei L.
tagDiv Member

Hi

yes indeed I meant that you can use the above css, sorry for that mistake.
In addition you need to include the header container so try this code, it should work fine:

#td-outer-wrap {
pointer-events: none;
}
.td-header-container,
.td-container{
pointer-events: auto;
}

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked the code and works fine on my end: http://screencast.com/t/CgSW0amd1Da9 Please make sure that you added the code like here, clear the caches then test the site again.
Thanks!

Andrei L.
tagDiv Member

Hi

If you want to change the titles for ad boxes you need to edit td_config.php file and change this text: http://screencast.com/t/7XNkTQQno

Thanks!

Andrei L.
tagDiv Member

Hi

Yes it may affect the lower containers: but you can’t use this css to prevent that:

.td-container{
pointer-events: auto;
}

Thanks!

Andrei L.
tagDiv Member

Hello,
Unfortunately the plugin is not tested to work with the theme and we cannot guarantee it will work 100%. We have not tested this plugin and we have no idea of the plugin functionality in order to provide an answer. Unfortunately time does not allow us to provide plugin implementation support.
If you really want to use this plugin we suggest you hire a freelancer to help you with implementation. You can hire one from studio.envato.com
Thank you for your understanding.

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css:

.td_normal_slide .td-image-gradient:before {
height: 40%!important;
}

Thanks!

Andrei L.
tagDiv Member

HI

There is no configuration panel for Speed Booster plugin. You will need to edit plugin’s file and add there the code to move the render blocking resources to footer as we indicated in our documentation.
Note that you will need some coding skills to complete this task. For more details about Speed Booster and how to use it please check these links: https://forum.tagdiv.com/topic/speed-%E2%80%8B%E2%80%8Bbooster-akismet-php-problem/https://forum.tagdiv.com/topic/page-speed-95100-but/

Thanks!
Andrei L tagDiv!

Andrei L.
tagDiv Member

Hi

Please check our documentation for more details in page speed regard: https://forum.tagdiv.com/how-to-make-the-site-faster/ You can also follow the recommendation from gtmetrix report to improve the score: http://screencast.com/t/s7KitOZNA

Thanks!

Andrei L.
tagDiv Member

Hi

It could be a temporary problem with envato’s API so you can try a few times and check how it goers. You can install the tech demo from this panel: http://screencast.com/t/Ohl59YT5

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and Social Counter works fine now: http://screencast.com/t/SN7TZFpKfo If you need further assistance on this please provide more details about it and we will get back to you as soon as possible.
Thanks!

Andrei L.
tagDiv Member

Hi

Yes you can use that layout with no problem. By default that template is missing from Visual Composer and can be used only if is added as a custom template.
Thanks!

Andrei L.
tagDiv Member

Hi

Do you you want to remove the main menu from header style 6. If so you can try this css in theme panel > custom code > custom css:

.td-header-style-6{
display: none;
}

Let me know ho it goes and if this is not what you mean please provide your site url and more details about the desired result so I can get back to you with a more accurate answer.
Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and video posts works fine on my end. If you still need assistance on this please provide more specific details about your issue so we can inspect it closer and get back to you with a more accurate answer.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not very sure what you’re trying to do so please provide moire details about the desired rezult and maybe we can help.
Thanks!

Andrei L.
tagDiv Member

Hi

You can try to use a media query in the css like this:


@media
(min-width: 1021pc){
.td-header-style-8 .td-header-sp-logo {
margin-bottom: 0;
margin-top: 0;
width: 100%;
}
}

If the problem persist please provide your site url so I can have a closer look and get back to you with a more accurate answer.

Thanks!

Andrei L.
tagDiv Member

Hi

You can use one of theme’s blocks and add an extra class on it then use hide it on desktop using css: http://screencast.com/t/BD6Bptsy

@media(min-width: 768px){
.mobile-block{
display: none;
}
}

Thanks!

Andrei L.
tagDiv Member

Hi

Do you get a 503 error when Visual Composer is deactivated? This is a server side error and is not related with the theme, please check this link for more details about it: http://www.checkupdown.com/status/E503.html Make sure that the parameters from system status have the values indicated in our documentation: https://forum.tagdiv.com/system-status-parameters-guide/ and your server meets theme’s requirements: https://forum.tagdiv.com/requirements-for-newspaper/
Let us know how it goes and if the problem persist please send us an email at contact@tagdiv.com with your login credentials and also provide ftp access. We will inspect this issue as soon as possible, also include a link to this topic ion your message.

Thanks!

Andrei L.
tagDiv Member

HI

Try to add the code in loop.php file like here: http://screencast.com/t/sdVRDjceg
Thanks!

Andrei L.
tagDiv Member

HI

Current version of Newspaper theme if V 7.4 available now on themeforest. In theme’s path is also included V 4.12.1 of Visual Composer. The best way to make a clean update is via FTP method for both theme and plugin. Follow our documentation to update the theme via ftp https://forum.tagdiv.com/install-via-ftp/ and do the same with Visual Composer plugin. Please folow this link for more details about how to install a plugin via ftp: http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/

To add new icons in theme’s fonts you will need a bit of codeing. Please check this link for more details in this regard: https://forum.tagdiv.com/topic/social-share-buttons-in-blog-posts/ My colleague Alin pointed a way here: http://screencast.com/t/7iiTHUHY

Hope this helps!
Thanks!

Andrei L.
tagDiv Member

Hi

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

Thanks!

Viewing 25 posts - 201 through 225 (of 6,511 total)