- NewspapertagDiv Composer – Website Manager
- NewspapertagDiv Opt-In Builder – Emails
- NewspaperModules Builder in Newspaper Theme
- NewspaperWooCommerce: Happy “Add to Favorites!”
- NewspaperCloudflare (CDN)
Hello,
Unfortunately when moving to https you will lose the likes as the post url is different. There is no simple way to get the back. You can try a solutiuon similar to: https://really-simple-ssl.com/knowledge-base/how-to-recover-facebook-likes-after-moving-to-httpsssl/
Thanks.
I actually found the problem. It actually IS SSL! After changing the default X-Frame Option in /etc/httpd/conf.d/ssl.conf from DENY to SAMEORIGIN, I managed the TagDiv Composer to load.
If you’re not on a VPS but on a Shared Hosting, you can achieve this by adding the following lines to your .htaccess:
<IfModule mod_headers.c>
Header always append X-Frame-Options SAMEORIGIN
</IfModule>
Hi i’m working through the speed optimisations and have put the following code in my ht access but i still get this error on gtmetrix
Enable compression for the following resources to reduce their transfer size by 1008.4KiB (89% reduction).
Compressing https://seekpretty.com/wp-content/themes/Newspaper/style.css?ver=8.7.4 could save 1008.4KiB (89% reduction).
please let me know what I need to do, On my last site I made a lot of changes and i cant remmeber what exactly i did. thanks
# BEGIN LSCACHE
# END LSCACHE
# BEGIN NON_LSCACHE
# END NON_LSCACHE
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# BEGIN WP Rocket v2.6.11
# Use UTF-8 encoding for anything served text/plain or text/html
AddDefaultCharset UTF-8
# Force UTF-8 for a number of file formats
<IfModule mod_mime.c>
AddCharset UTF-8 .atom .css .js .json .rss .vtt .xml
</IfModule>
# FileETag None is not enough for every server.
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
# Since we’re sending far-future expires, we don’t need ETags for static content.
# developer.yahoo.com/performance/rules.html#etags
FileETag None
<IfModule mod_alias.c>
<FilesMatch “\.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml)$”>
<IfModule mod_headers.c>
Header set X-Powered-By “WP Rocket/2.6.11”
Header unset Pragma
Header append Cache-Control “public”
Header unset Last-Modified
</IfModule>
</FilesMatch>
<FilesMatch “\.(css|htc|js|asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$”>
<IfModule mod_headers.c>
Header unset Pragma
Header append Cache-Control “public”
</IfModule>
</FilesMatch>
</IfModule>
# Expires headers (for better cache control)
<IfModule mod_expires.c>
ExpiresActive on
# Perhaps better to whitelist expires rules? Perhaps.
ExpiresDefault “access plus 1 month”
# cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
ExpiresByType text/cache-manifest “access plus 0 seconds”
# Your document html
ExpiresByType text/html “access plus 0 seconds”
# Data
ExpiresByType text/xml “access plus 0 seconds”
ExpiresByType application/xml “access plus 0 seconds”
ExpiresByType application/json “access plus 0 seconds”
# Feed
ExpiresByType application/rss+xml “access plus 1 hour”
ExpiresByType application/atom+xml “access plus 1 hour”
# Favicon (cannot be renamed)
ExpiresByType image/x-icon “access plus 1 week”
# Media: images, video, audio
ExpiresByType image/gif “access plus 1 month”
ExpiresByType image/png “access plus 1 month”
ExpiresByType image/jpeg “access plus 1 month”
ExpiresByType video/ogg “access plus 1 month”
ExpiresByType audio/ogg “access plus 1 month”
ExpiresByType video/mp4 “access plus 1 month”
ExpiresByType video/webm “access plus 1 month”
# HTC files (css3pie)
ExpiresByType text/x-component “access plus 1 month”
# Webfonts
ExpiresByType application/x-font-ttf “access plus 1 month”
ExpiresByType font/opentype “access plus 1 month”
ExpiresByType application/x-font-woff “access plus 1 month”
ExpiresByType application/x-font-woff2 “access plus 1 month”
ExpiresByType image/svg+xml “access plus 1 month”
ExpiresByType application/vnd.ms-fontobject “access plus 1 month”
# CSS and JavaScript
ExpiresByType text/css “access plus 1 year”
ExpiresByType application/javascript “access plus 1 year”
</IfModule>
# Gzip compression
<IfModule mod_deflate.c>
# Active compression
SetOutputFilter DEFLATE
# Force deflate for mangled headers
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
RequestHeader append Accept-Encoding “gzip,deflate” env=HAVE_Accept-Encoding
# Don’t compress images and other uncompressible content
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png|rar|zip|exe|flv|mov|wma|mp3|avi|swf|mp?g)$ no-gzip dont-vary
</IfModule>
</IfModule>
# Compress all output labeled with one of the following MIME-types
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE application/atom+xml \
application/javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
application/x-font-ttf \
application/xhtml+xml \
application/xml \
font/opentype \
image/svg+xml \
image/x-icon \
text/css \
text/html \
text/plain \
text/x-component \
text/xml
</IfModule>
<IfModule mod_headers.c>
Header append Vary: Accept-Encoding
</IfModule>
</IfModule>
<IfModule mod_mime.c>
AddType text/html .html_gzip
AddEncoding gzip .html_gzip
</IfModule>
<IfModule mod_setenvif.c>
SetEnvIfNoCase Request_URI \.html_gzip$ no-gzip
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} on
RewriteRule .* – [E=WPR_SSL:-https]
RewriteCond %{SERVER_PORT} ^443$
RewriteRule .* – [E=WPR_SSL:-https]
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* – [E=WPR_ENC:_gzip]
RewriteCond %{REQUEST_METHOD} GET
RewriteCond %{QUERY_STRING} =””
RewriteCond %{HTTP:Cookie} !(wordpress_logged_in_|wp-postpass_|wptouch_switch_toggle|comment_author_|comment_author_email_) [NC]
RewriteCond %{REQUEST_URI} !^(.*/feed/?)$ [NC]
RewriteCond %{HTTP_USER_AGENT} !^(facebookexternalhit).* [NC]
RewriteCond “%{DOCUMENT_ROOT}/wp/wp-content/cache/wp-rocket/%{HTTP_HOST}%{REQUEST_URI}/index%{ENV:WPR_SSL}.html%{ENV:WPR_ENC}” -f
RewriteRule .* “/wp/wp-content/cache/wp-rocket/%{HTTP_HOST}%{REQUEST_URI}/index%{ENV:WPR_SSL}.html%{ENV:WPR_ENC}” [L]
</IfModule>
# END WP Rocket
# 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 font/truetype “access plus 604800 seconds”
ExpiresByType font/opentype “access plus 604800 seconds”
ExpiresByType application/x-font-woff “access plus 604800 seconds”
ExpiresByType image/svg+xml “access plus 604800 seconds”
ExpiresByType application/vnd.ms-fontobject “access plus 604800 seconds”
ExpiresByType text/html “access plus 600 seconds”
ExpiresByType application/xhtml+xml “access plus 600 seconds”
</ifModule>
# END Expire headers
<IfModule mod_deflate.c>
<filesMatch “\.(js|css|woff|html|php)$”>
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>
I have been trying to fix it but the problem is from theme. Your icon fonts are loading from non SSL ? How do i fix that ?
Mixed Content: The page at ‘https://creativetacos.com/wp-admin/options-general.php?page=redis-cache’ was loaded over HTTPS, but requested an insecure font ‘http://creativetacos.com//includes/wp_booster/wp-admin/images/font/tagDiv.ttf?m8e83u’. This request has been blocked; the content must be served over HTTPS.
options-general.php?page=redis-cache:1 Slow network is detected. See https://www.chromestatus.com/feature/5636954674692096 for more details. Fallback font will be used while loading: https://creativetacos.com/wp-content/themes/Newspaper/includes/wp_booster/wp-admin/images/font/tagDiv.woff?m8e83u
options-general.php?page=redis-cache:1 Mixed Content: The page at ‘https://creativetacos.com/wp-admin/options-general.php?page=redis-cache’ was loaded over HTTPS, but requested an insecure font ‘http://creativetacos.com//includes/wp_booster/wp-admin/images/font/tagDiv.woff?m8e83u’. This request has been blocked; the content must be served over HTTPS.
Yes , google also tells ON LIVE VERSION AMP TEST .. NO ERROR, BUT it says
Missing embedded videos
Video 1
also says Affected pages 1 which is :- https://www.androidssl.com/gaming/pc/warrock-online-multiplayer-game.html/amp
Is there anything we can do to correct it? or AMP Requires only one Video, not a playlist? or It requires a Full link like https://www.youtube.com/watch?v=K8Mo0W__AQc to validate?
Please help me regarding and please check from your side experimenting or creating a post with youtube videolist and submitting it to google search console if possible for testing and improving your theme Sir.
Hi There,
Everything was working fine and now we have mixed content issues and the problem is from these fonts:
1. http://creativetacos.com//images/icons/newspaper.woff?14
2. http://creativetacos.com//images/icons/newspaper.ttf?14
Please let me know how to fix this issue
Thanks
I am using Googles search Console to submit my pages. As I got this warning for one of my latest page.
link:- https://www.androidssl.com/gaming/pc/warrock-online-multiplayer-game.html/amp
I have added this code for videos to my post [td_block_video_youtube playlist_title=”Watch War Rock Gameplay” playlist_yt=”K8Mo0W__AQc, KY84qM6Sk1I, pNQKOdf2iSo” playlist_auto_play=”0″]
but google says it an error and will not show in search and asking me to rectify it(i will paste the image that you can see here):- https://ibb.co/ghoM8c
https://ibb.co/bTxsEH
and
what should i do ? should i disable amp ? or amp does not support videos? Please help me regarding this to solve my problem
Hi,
So the composer is not working properly for you. The elements once placed in the page should look exactly as they will be on the actual saved page
– https://www.screencast.com/t/lpUkkG199t
I would suggest to first deactivate all plugins except theme plugins and clear all caching. Try the composer on a new page and see if this still happens. Check the theme system status section
– https://forum.tagdiv.com/requirements-for-newspaper/
If needed ask your hosting provider to increase the parameters mentioned in the guide, especially the WP memory.
Also try deactivating and removing the composer plugin, and install it again from the theme plugins section
– https://www.screencast.com/t/cGq95nssL3i5
Let us know the results.
New Accelerated Mobile Pages issue detected for site https://www.androidssl.com/
To owner of https://www.androidssl.com/,
Search Console has identified that your site is affected by 1 new Accelerated Mobile Pages related issue. This means that Accelerated Mobile Pages may be negatively affected in Google Search results. We encourage you to fix this issue.
New issue found:
Invalid URL for HTML attribute ‘href’ in tag ‘a’
Please anyone help me to solve this
I have tried updating everything that I could possibly find in previous complaints about this issue and nothing has changed the problem. I’ve gone in and added lines of code to make sure everything in my system status is showing up as green and still nothing works. Whenever I click on the Edit with TD Composer button it just takes me to a blank screen (and yes I’ve also made sure the ssl addresses match like was suggested to someone else). Quite disappointed that I’ve paid for a theme which has given me more grief than any free one I’ve used previously.
Hello Aline,
Please read the following topic from here -> https://wordpress.org/support/topic/how-to-fix-the-problem-your-connection-is-not-private/
Please make sure SSL is properly implemented on your site.
In order to properly implement SSL please follow these tutorials:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/
Hope this helps!
Thanks for the message!
This doesn’t have anything to do with the theme. The problem is that your site has an SSL (https://) certificate and the background that you have put in the footer has an http:// url. If you replace the url from http://elysiumpost.com/wp-content/uploads/2017/11/footer_bg.jpg to https://elysiumpost.com/wp-content/uploads/2017/11/footer_bg.jpg in the theme options, it will render the correct background and eliminate the mixed content error you are getting.
Salut Robert90,
Setarile de SSL nu tin de tema noastra iar noi nu te putem ajuta in acest caz deoarece nu oferim suport pentru customizari suplimentare. Ar trebui sa contactezi host-ul tau deoarece s-ar putea sa te ajute ei cu acest serviciu (care poate este oferit de catre ei) iar daca nu, ai putea incepe sa te documentezi despre cum se poate face acest lucru, consultand urmatoarele link-uri ->
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/
Sper sa te ajute!
O zi faina si spor!
Cine ma poate ajuta si pe mine va rog frumos … deoarece detin domeniul http://www.vdtonline.com si cand tastez domeniul in google cu https://www.vdtonline.com imi apare ceva asa http://prntscr.com/j60g6c ma poate ajuta cineva va rog frumos ? deoarece vreau sa cumpar un certificat ssl si sa imi apara asa e nasol rau pe mobil la fel apare. Multumesc frumos
Hello,
Please make sure ssl is properly implemented on your site.
In order to properly implement ssl please follow these tutorials:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/
I hope this helps.
Please help me that after installing the newspaper theme, my site became insecure despite having SSL certificate. My SSL certificate is not expired yet. I also had changed my WordPress Address and Site Address in General Setting into https. So what I need to do to make my site secure again?
Hi Simion,
My problem is with the site SSL. Its prevent me from downloading the plugin. After the SSL is fixed, I reinstall the plugins and its worked.
Thanks!
Thanks Bogdan. Its all resolve now. The culprit is the SSL
I was able to fix my issue – I’m running WordPress Multisite and it was due to SSL configuration error. Had to make sure the sites were listed as https instead of http under Network -> Sites. Also, required editing MYSQL database (_option, _sites, _blogs, and _sitemeta) to make sure all entries referring to a full http URL said HTTPS.
Hello,
The blank white screen is caused in most cases by poor ssl implementation. Most likely your site url is not the same as the home url. After you make the move to ssl, please make sure these 2 boxes show the same link with https in front: https://www.screencast.com/t/ouiuuHe7UaNh
The system status screen will usually let you know about this: https://www.screencast.com/t/rFGJQ7woAb
Let us know if you still have trouble with the composer.
Hello,
Please make sure ssl is properly implemented on your site.
In order to properly implement ssl please follow these tutorials:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/
I hope this helps.
Hello,
The blank white screen is caused in most cases by poor ssl implementation. Most likely your site url is not the same as the home url. After you make the move to ssl, please make sure these 2 boxes show the same link with https in front: https://www.screencast.com/t/ouiuuHe7UaNh
The system status screen will usually let you know about this: https://www.screencast.com/t/rFGJQ7woAb
Thank you!
Hi,
Our site betweencarpools.com has been going down at random times throughout the day, I have spoke to wpsitecare – our maintenance team as well as siteground – they say there seems to be issue with theme. Can you see their response below.. and let me know what can be done. This is big issue for us.
Hello Shaindy,
Thank you for contacting our Help Desk.
I have carefully revised the server logs and found it was overloaded the last time at:
[Tue Feb 20 09:41:52.629698 2018] [:error] [pid 31827] Execute of /home/shaindy7/public_html/index.php stopped because of load 33.55
I have found that at that time and hour 121 HTTP requests were generated by the following website:
Code:
root@c38433.sgvps.net [/usr/local/apache/domlogs]# cat shaindy7/betweencarpools.com-ssl_log | grep 20/Feb/2018:09:41 | wc -l
121
I have analyzed what kind of requests these were and from what I noticed the requests were mainly related to the Newspaper theme and were calling the admin-ajax.php script:
Code:
root@c38433.sgvps.net [/usr/local/apache/domlogs]# cat shaindy7/betweencarpools.com-ssl_log | grep 20/Feb/2018:09:41 | grep admin-ajax.php | wc -l
51
Here is a log of such a request:
Code:
68.197.246.165 – – [20/Feb/2018:09:41:38 -0600] “POST /wp-admin/admin-ajax.php?td_theme_name=Newspaper&v=8.0 HTTP/1.0” 503 – “https://betweencarpools.com/?s=Nut+brittle” “Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1”
I have also found that all of these requests related to the theme, which caused the execution of the admin-ajax.php script were coming from this IP:
55 — 68.197.246.165
Which belongs to external provider:
Code:
htodorsavov@Todor-Savov:~$ host 68.197.246.165
165.246.197.68.in-addr.arpa domain name pointer ool-44c5f6a5.dyn.optonline.net.
I am not sure what this behavior is due to but it seems to be related to the theme as I mentioned.
I would recommend you to revise it and its functionalities or contact the theme developers to revise them for you.
Should you need our further assistance, do not hesitate to contact us back at anytime.
Best Regards
Todor Savov
Technical Support Team
Is it possible to get the normal stretched row with wpbakery streched row? It doesnt seem to work… Aswell as 6 colums etc. Is it dependend on a certain version or so?
Is it possible to use the tagdiv builder options while beeing in the backend? Frontend builder are such a hassle with drack and drop…
I just installed the Newspaper theme and using the TD composer for the first time. When I try to delete an element and click on “yes” in the “delete current element” message, I get the same message below the original. If I click “yes” in the new one, I get another box message.
I am working on a staging environment that doesn’t have an SSL certificate but I don’t think that would be the issue.
thanks,