- TutorialsDefault Block Settings Guide
Hi,
Is look that the code for background color on live search is not apply if the search is set on top bar, sorry! you can use a custom css to change the color
-> https://www.screencast.com/t/Qf0Y877qD
.td-header-wrap .td-drop-down-search.td-drop-down-search-open{
background-color: red;
}
The code need to be set in Theme panel>Custom code>Custom css
Hope this will help you!
Thanks.
Hi,
Please check the following useful guide from here -> https://forum.tagdiv.com/header-ads-adsense/ if you want to create your own ad banner.
Thank you!
Hi,
Form what I can see you still have set a withe logo -> https://www.screencast.com/t/jfT8A4Bi0MU please make sure that you change the white logo from theme panel and header manager too ( if you are using header template from tagDiv Cloud Library) also please clear all cache after you make the settings.
Thank you!
Hi,
Indeed there is still a problem with one header path, ( header-style-4.php) please send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you for your understanding!
Hi,
If you want to change the date format on the top bar you need to go in Theme panel>Header>Top bar -> https://forum.tagdiv.com/top-bar-templates/ -> https://www.screencast.com/t/1MLnxjg8rjZ please make sure that you clear all cache after you make the settings.
Thank you!
Hello… There is the extra space showing on the header ad… I am using Header Style-2
Please me me solving the issue.
Check the screenshot: https://prnt.sc/nni2l9
It is not required for theme to function properly.
cloud library is compilation of templates (for headers, footers, posts, pages etc.) which you can import and use directly. you will not have have to build everything from scratch. though you will have to do some changes in those templates to fit your needs.
After installing the Newspaper theme I found my load times for the landing page were at least 24-seconds and went as high as 40-seconds. That’s just unacceptable. So, I did some digging online for .htaccess tricks to decrease load time. Now my landing page load time is 4-seconds or less. Target pages are 3-4 seconds, and back to the main landing page from another page is 2-3 seconds. I’d still like to shave off another second or two, but it’s a far cry better than what I had before.
Pasted here is the total code I put into my .htaccess file. The impact was immediate and I’m very pleased. I thought others might find this useful. See below.
Blessings,
Tom Terry
—–
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
<IfModule mod_deflate.c>
<filesMatch “\.(js|css|html|php)$”>
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>
# BEGIN Expire headers
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault “access plus 5 seconds”
ExpiresByType image/x-icon “access plus 604800 seconds”
ExpiresByType image/jpeg “access plus 604800 seconds”
ExpiresByType image/png “access plus 604800 seconds”
ExpiresByType image/gif “access plus 604800 seconds”
ExpiresByType application/x-shockwave-flash “access plus 604800 seconds”
ExpiresByType text/css “access plus 604800 seconds”
ExpiresByType text/javascript “access plus 604800 seconds”
ExpiresByType application/javascript “access plus 604800 seconds”
ExpiresByType application/x-javascript “access plus 604800 seconds”
ExpiresByType application/x-font-woff “access plus 604800 seconds”
ExpiresByType application/x-font-svg “access plus 604800 seconds”
ExpiresByType image/svg+xml “access plus 604800 seconds”
</ifModule>
# END Expire headers
# TN START GZIP COMPRESSION
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>
# TN END GZIP COMPRESSION
# TN START DEFLATE COMPRESSION
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE “application/atom+xml” \
“application/javascript” \
“application/json” \
“application/ld+json” \
“application/manifest+json” \
“application/rdf+xml” \
“application/rss+xml” \
“application/schema+json” \
“application/vnd.geo+json” \
“application/vnd.ms-fontobject” \
“application/x-font” \
“application/x-font-opentype” \
“application/x-font-otf” \
“application/x-font-truetype” \
“application/x-font-ttf” \
“application/x-javascript” \
“application/x-web-app-manifest+json” \
“application/xhtml+xml” \
“application/xml” \
“font/eot” \
“font/otf” \
“font/ttf” \
“font/opentype” \
“image/bmp” \
“image/svg+xml” \
“image/vnd.microsoft.icon” \
“image/x-icon” \
“text/cache-manifest” \
“text/css” \
“text/html” \
“text/javascript” \
“text/plain” \
“text/vcard” \
“text/vnd.rim.location.xloc” \
“text/vtt” \
“text/x-component” \
“text/x-cross-domain-policy” \
“text/xml”
</IfModule>
# END DEFLATE COMPRESSION
# TN START ENABLE KEEP ALIVE
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
# TN END ENABLE KEEP ALIVE
# TN – START EXPIRES CACHING #
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css “access 1 month”
ExpiresByType text/html “access 1 month”
ExpiresByType image/gif “access 1 year”
ExpiresByType image/png “access 1 year”
ExpiresByType image/jpg “access 1 year”
ExpiresByType image/jpeg “access 1 year”
ExpiresByType image/x-icon “access 1 year”
ExpiresByType image/svg+xml “access plus 1 month”
ExpiresByType audio/ogg “access plus 1 year”
ExpiresByType video/mp4 “access plus 1 year”
ExpiresByType video/ogg “access plus 1 year”
ExpiresByType video/webm “access plus 1 year”
ExpiresByType application/atom+xml “access plus 1 hour”
ExpiresByType application/rss+xml “access plus 1 hour”
ExpiresByType application/pdf “access 1 month”
ExpiresByType application/javascript “access 1 month”
ExpiresByType text/x-javascript “access 1 month”
ExpiresByType text/x-component “access plus 1 month”
ExpiresByType application/x-shockwave-flash “access 1 month”
ExpiresByType font/opentype “access plus 1 month”
ExpiresByType application/vnd.ms-fontobject “access plus 1 month”
ExpiresByType application/x-font-ttf “access plus 1 month”
ExpiresByType application/font-woff “access plus 1 month”
ExpiresByType application/font-woff2 “access plus 1 month”
ExpiresDefault “access 1 month”
</IfModule>
# TN – END EXPIRES CACHING #
# TN – BEGIN Cache-Control Headers
<ifModule mod_headers.c>
<filesMatch “\.(ico|jpe?g|png|gif|swf)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(css)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(js)$”>
Header set Cache-Control “private”
</filesMatch>
<filesMatch “\.(x?html?|php)$”>
Header set Cache-Control “private, must-revalidate”
</filesMatch>
</ifModule>
# TN – END Cache-Control Headers
# TN – ENABLE MOD PAGESPEED START
# COMBINE CSS, COMPRESS IMAGES, REMOVE HTML WHITE SPACE AND COMMENTS
<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters rewrite_css,combine_css
ModPagespeedEnableFilters recompress_images
ModPagespeedEnableFilters convert_png_to_jpeg,convert_jpeg_to_webp
ModPagespeedEnableFilters collapse_whitespace,remove_comments
</IfModule>
# TN – ENABLE MOD PAGESPEED END
# END WordPress
Good evening everyone,
I just realized that there is one blanc line above and below my top header on my website http://www.daily-cuba.com
Does anyone know why this is and how I can remove it?
Greetings
Yann
Hello, I use the header from Cloud Templates, Template 39 Header – but when I use it as the default site header, the icon does not appear.
So I’ve started using the Header manager, which is a very cool tool. I successfully got my desktop header (regular and sticky) to work correctly.
However, I cannot figure out how to get the mobile menu and the logo on the same row. I’m sure it’s something simple, but I’ve messed with it for an hour and can’t get it. Thoughts?
Hey,
I have an issue when I activate the header #4 on my staging website: https://travelstage.wpengine.com/
When I activate it, I see this: https://screencast.com/t/CmtWNt7BnBGR and in error_log file I see this error:
[Fri May 10 18:56:38.396489 2019] [php7:error] [pid 4186] [client 77.127.19.222:49652] PHP Fatal error: require_once(): Failed opening required ‘header/ads.php’ (include_path=’.:/usr/share/pear/php:/usr/share/php’) in /nas/content/live/travelstage/wp-content/plugins/td-composer/legacy/Newspaper/parts/header/header-style-4.php on line 27, referer: https://travelstage.wpengine.com/wp-admin/admin.php?page=td_theme_panel
I tried to change the header style to another one for ex. #3 and it works and when switch back to #4 it doesn’t work at all
Hi,
You can check this file -> wp-content/plugins/td-cloud-library/shortcodes/header/tdb_header_mega_menu.php
Hope this will help you!
Thank you!
i have been using the header manager on the site https://theknaphillian.co.uk but when viewed on phone and tablet the header and menu are no longer there – please advise
Hi,
You can use this custom css
-> https://www.screencast.com/t/EigRAmyvhc0
.menu-main-header-menu-container{
margin-left: 100px;
}
Set the code in Them panel>Custom code>Advance > iPad
Hope this will help!
Thanks.
Hi,
Is look like you have set a header from tagDiv Cloud Library ;m you need to go in Cloud templates and edit the Header Template 3 -> https://www.screencast.com/t/FkAe80JsuCo and you need to edit the header template and check the sticky menu, scroll until you see the sticky menu and click on logo -> https://www.screencast.com/t/o6Z8zoJoWbFY
Thank you!
Hello,
In tagdiv Composer – Header Manager button.
1) PhP.ini setting are ok.
2) WP setting are ok.
Still get this error
Hi,
You can try this custom css -> https://www.screencast.com/t/O8Hjs4ovsPT
#td-header-menu{
transform: translate(40%);
}
You can change the pro-cent if is need
You need to set the code in Theme panel>Custom code> Advance css > Desktop
-> https://www.screencast.com/t/SufMAegiBzFQ
Thank you!
Hello !
In order to change the Title text you need to edit it with the tagDiv Composer like here: https://www.screencast.com/t/7tttyqNV8eL.
Also for having or not a sticky menu you can edit that option from Newspaper – Theme panel – Header – Main menu: https://www.screencast.com/t/uopC7rqOL
Thank you !
Hi,
Please set this custom code in Theme panel>Analytics/JS Coidex
-> https://www.screencast.com/t/8xrqDYUm9
<style>
.td-header-style-7 .sf-menu > li > a {
line-height: 48px;
}
ul.sf-menu > .td-menu-item > a, .td-theme-wrap .td-header-menu-social {
font-size: 11px;
font-weight: normal;
}
</style>
Let me know how it goes!
Thank you!
Hi,
If your header menu is make with header manager you need to edit the header template and check the sticky menu, scroll until you see the sticky menu and click on logo -> https://www.screencast.com/t/o6Z8zoJoWbFY
If you are not using header from tagDiv Cloud Library please check the logos from theme panel> Header > Logo & Favicon and in Logo for mobile ->https://forum.tagdiv.com/logo-favicon/
Thank you!
Hi,
In mega menu you can show only the category and subcategories of post you can not show pages in mega menu, sorry, but you can show pages in menu -> https://forum.tagdiv.com/page-menu/
Now you can have more control over the mega menu using the header manager -> https://tagdiv.com/newspaper-theme-customize-the-header-manager/
Thank you!
Hi team! My website is working fine on iPad but the logo in the header is overlapping the menu options. I need to decrease the size of it (only for tablet devices) so that it fits properly. Can you help me with this issue?
Website – http://www.thewrestlepost.com/
Hi,
Indeed there is still a problem with one header path, ( header-style-4.php) is look like this one was not fixed for the current version; I check the package for the coming update and this fix is include.
Thank you for your understanding!
I have tried in the header manager of TD composer to add logo, remove logo etc but nothing changes.. I always see the news9logo image
I have set it to use a sticky menu but it doesn’t work either, it’s not showing up