Home User profile
tagDiv Staff
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Marius
tagDiv Staff

Hi @salocharly

We have here some recommendation about what type of server you need(depends of what traffic you have): https://forum.tagdiv.com/requirements-for-newspaper/

If you don’t use default elements from VC, SHIM plugin is a good choose to kill the VC. A good server should work fine with VC to, i saw some sites that run super fast on Newspaper 6 with lot of traffic. This one for example: http://www.electrobuzz.fm/

Also you have some js errors on your site: http://screencast.com/t/0COorl84Jrj can you disable some plugins or one by one. Could be from that Speed Booster Pack Plugin

Marius
tagDiv Staff

Hi,
You need to add the code here: http://screencast.com/t/BgKU9Da5HCJ also i commented those 2 lines. I made a test for product post type. http://screencast.com/t/Uovm2OoZgKrk

Thanks!

Marius
tagDiv Staff

Hi,
Can you give us a link with the page?
Thanks!

Marius
tagDiv Staff

Hi,
Please send us your license code via email at contact@tagdiv.com to check it.
Thanks for the message!

Marius
tagDiv Staff

Hi,
You need to edit here for the js: http://screencast.com/t/AtcEqjuaide

I don’t know about google font how to be removed, but you can try to search on google about that:
https://wordpress.org/support/topic/still-getting-eliminate-render-blocking-js-and-css
https://www.igvita.com/2014/01/31/optimizing-web-font-rendering-performance/

Marius
tagDiv Staff

Hi,
Upload this file in Theme folder and create a page with this template: http://cdn.tagdiv.com/wp-content/uploads/2015/06/page-blank.zip

http://screencast.com/t/wCKyvX9j0vsB

Marius
tagDiv Staff

Hi,
On each block you can set what category you want to display as subcategory dropdown. Just edit a block and set the categories ID’s that you want to display: http://screencast.com/t/8kI7zhFGmV

Result: http://screencast.com/t/ZctHcklbC1c

You can read more here about block settings: https://forum.tagdiv.com/block-settings-tutorial/

Thanks for the message!

Marius
tagDiv Staff

Hi,

An east way is to hide it via CSS, add this in Theme Panel -> Custom CSS

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

Thanks for the message!

Marius
tagDiv Staff

Hi,

Just add this code and replace the image link with yours:

http://pastebin.com/7Z9Qkqqx
http://screencast.com/t/guzRPpLnwC

Thanks for the message!

  • This reply was modified 11 years by Marius.
Marius
tagDiv Staff

Hi,

On first post save the theme will get the youtube thumbnail. Then you can remove the featured image and choose another image. http://screencast.com/t/foKkVkka3k

Thanks for the message!

Marius
tagDiv Staff

Hi,

About hide different ad slots from different post types, is possible via code, using a php condition. You need to read the post template style and make a condition like here(if you are on template style 3 the ad will be displayed: http://screencast.com/t/iZMLs0j2O

Code: http://pastebin.com/L7tXuJcf

—————————-

About IF the article inline ad does show up, that the article bottom is hidden? I’m not sure i understand your question.

—————————-

Can the inline ad only be enabled on certain post templates?
Similar to header ad code, with a php condition to hide the ad.

—————————-

About Social Counter: https://forum.tagdiv.com/how-to-set-social-counter/

—————————-

About child theme issue.. is solved in the latest theme version 6.1

Thanks for the message!

Marius
tagDiv Staff

Hi,
Firstly please deactivate/turn off the minify/compression for a better debugging. You have some js errors in console, see here: http://screencast.com/t/LevmjCWG6Lv

You need to inspect it to see where your css is loaded. Reply back when you turn them off.

Thanks for the message!

Marius
tagDiv Staff

Hi,
Please can you try with this CSS, add it in Theme Panel -> Custom CSS

.td-post-template-7 .td-read-down {
display:none;
}
.td-post-template-7 .td-parallax-header {
transform: none !important;
opacity: 1 !important;
}
.td-post-template-7 .td-post-header {
height: 560px;
}
@media (min-width: 1019px) and (max-width: 1140px) {
.td-post-template-7 .td-post-header {
height: 530px;
}
}
@media (min-width: 768px) and (max-width: 1018px) {
.td-post-template-7 .td-post-header {
height: 480px;
}
}
@media (max-width: 767px) {
.td-post-template-7 .td-post-header {
height: 400px;
}
}

Marius
tagDiv Staff

Hi,
Here is the SHIM plugin, if you want to make a try: https://forum.tagdiv.com/files_for_users/

Marius
tagDiv Staff

Hi,
Please remove the -css from each section http://screencast.com/t/vrKbSEO2UJ and see if work.

Marius
tagDiv Staff

Hi,
Depends of what you want to modify. You can modify or create new things using the theme API, without losing anything on an update. Here is the API documentation if help: https://forum.tagdiv.com/the-theme-api/

Thanks for the message!

Marius
tagDiv Staff

Hi,
You can add the code directly in files, like here: http://screencast.com/t/3PwdK4kOdThx
Then add this CSS in Theme Panel -> Custom CSS for a better alignment

.td-sub-footer-container .dmca-badge {
margin-right: 18px;
display: inline-block;
line-height: 1;
vertical-align: middle;
}

Result: http://screencast.com/t/QQUJ8TEX

Thanks for the message!

Marius
tagDiv Staff

Hi,

What you can do is to disable some plugins or all(without VC) and see how much memory consume. You can use this plugin, for memory usage https://wordpress.org/plugins/wp-memory-usage/

or try with this one: https://wordpress.org/plugins/p3-profiler/ that show for all plugins the memory usage.

or try with latest theme version, we had improved the performance, that works fine with large taxonomies(before this please backup all files/database)

or try to increase the memory limit to 256 in wp-config.php

Thanks for the message!

Marius
tagDiv Staff

Hi,
Just edit the post and choose post template style 5 http://screencast.com/t/MjkTKoNQH8cc

Thanks for the message!

Marius
tagDiv Staff

Hi,
You have that error because you have disabled the post date to be shown on posts. http://screencast.com/t/zzEuG6FAz1c6

Just go to Theme panel and enable the post date http://screencast.com/t/dLGieHVUTN and if you want to hide it without having trouble with Google Structured Data, you can hide it via CSS, add this in Theme Panel -> Custom CSS

.single .td-post-date {
display:none;
}

Thanks for the message!

Marius
tagDiv Staff

Hi,
Try with this CSS, add it in Theme Panel -> Custom CSS

@media (max-width: 767px) {
#td-outer-wrap .td-header-menu-wrap.td-affix {
position: relative !important;
}
}

Thanks!

Marius
tagDiv Staff

Hi,
You have modified the theme files? I see that on some post where is missing the menu bg you doesn’t have on body the td-full-layout and some CSS depends on that, what you can try is to add that class, class="td-full-layout" manually on body, like here: http://screencast.com/t/6Ys8fwd0 and see if works.

Thanks for the message!

  • This reply was modified 11 years by Marius.
Marius
tagDiv Staff

Hi,
We have it on our suggestion list, we will try to add it in the following updates!

Thanks for your suggestion!

Marius
tagDiv Staff

Hi,

1. Try ith this CSS:
.td-post-header-holder {
margin-bottom: 10px !important;
}

2. Use this:
.author-box-wrap {
margin-bottom: 10px !important;
}

3. Use this:
@media (max-width: 767px) {
.author-box-wrap {
display: none;
}
}

4. This section http://screencast.com/t/P0rOkwz2zw work only for Adsense Ads, do you use adsense or just an image ad?

Marius
tagDiv Staff

Hi @AffinityFM,
Have you tried the Chris advice?
About the logo issue, i have tested your site and works fine on all pages.

Thanks for the message!

Viewing 25 posts - 76 through 100 (of 3,236 total)