Home User profile
tagDiv Member
Christopher is a long time WordPress user. Anything else you need to know is private ;-) I *do not* work for TagDiv, but I've been using their themes since late 2013.
simchris
tagDiv Member

Hi,
I think the point of Radu’s answer to my question was actually that he has it setup to switch to calling the external google library files such as jqery via https *if* the page being requested is being served via https.

So, once you have an https page to test, you should see the external link to google pulling in that stuff being https vs http.

I stupidly tested my page with http, not https, and so the page source showed the http link, and so I “presumed” that was hard coded, forgetting Radu is a smart guy 🙂

simchris
tagDiv Member
simchris
tagDiv Member

Once i have everything optimized for ssl i will pass along my adventures…

In meantime for those curious this has some good info…
http://serverfault.com/questions/570288/is-it-bad-to-redirect-http-to-https

Check the entire site for internal links and ensure they are all using HTTPS if you specific your own domain name in links, so you are not causing your own redirects.
Update your <meta property=”og:url” to using the https version of your domain.
If you use <base href= again update to use HTTPS.
Install SPDY protocol if possible
Make sure to use CSS Image sprites where possible, to reduce numbers of request.
Update your sitemaps to indicate https status, so spiders over time learn this change.
Change Search Engine preferences like Google Webmaster Tools to prefer HTTPS
Where possible off-load any stactic media to HTTPS CDN servers.

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

Once you have ssl cert installed, you would likely add a rewrite rule to your htaccess file to gracefully direct old http links to https version. Talk to your hosting provider about activating mod spdy once you have https … And remember to test and update sitemap to ensure links point to https in sitemap, etc.

simchris
tagDiv Member

Hi, mod_spdy is setup on the server; https is setup on your domain (Google “get SSL cert for my website”) or visit the SSL certificates section in your GoDaddy account if you use them for anything. You need to get SSL cert which is installed for your domain, this then allows your site pages to load via https (secure) vs http just like any ecom site or Amazon, GoDaddy, eBay, etc. The “signed” certificate provides some level of security in that a “signing authority” has verified you are who you say you are before issuing the certificate (your hosting provider may even sell SSL certs at discount; check their site).

Mod_spdy doesn’t do SEO or speed up normal http pages, only those loaded via https (secure). Hence “spdy” (short for “speedy”).

So:
1) get SSL cert for your site; this allows pages and content to load https vs http
2) check with your hosting provider on mod_spdy support which speeds up https so it’s not 10x slower than http

SSL and mod_spdy have nothing to so with the theme. SSL authenticates the website domain, not the content itself per se, although you would get a “warning” if some content is not loaded securely, like an external file not being loaded via SSL.

Hope that helps 🙂

  • This reply was modified 11 years by simchris.
  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

FYI, Google News requirements have nothing to do with this “theme” but your site contents, editorial focus, original vs “cloned” content, actual editorial staff, number of updates per week, not violating Google policies (e.g., linking to a software product which allows people to download YouTube videos – for example – is a violation of Google policy), paid text links, spammy anchor links to commercial sites which are not “nofollowed,” etc.

Our various sites have been in GN since it was in beta almost a decade ago, and one of our sites running this theme is in GN now.

ref: (RTFM) – GOOGLE OFFICIAL REQUIREMENTS FOR GOOGLE NEWS:
https://support.google.com/news/publisher/answer/40787?hl=en

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

After playing with sub domains, Amazon CDN, etc., I found it was just simpler to load all the images locally so that things like compression, mod_pagespeed, etc. all actually work. I’d rather have the compression, progressive convert, for faster load than the tiny fraction faster load via subdomain or sub->CDN.

Frankly, a lot of that works if you are CNN or TIME magazine, but for most “small” sites and blogs, not so much.

But, this is the point of testing all the options then evaluating benefits vs drawbacks. I spent the entire month of January this year doing nothing but this kind of thing. Now I’ve gotten a tad cynical about it.

I look forward to all this shite being in the past, as it’s brain numbing. 🙂

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

You likely need to remove the auto generated echo home_url() to the static URL you want in all the header-styleX.php files to be safe.

in the /parts/ folder, try the
header-style-1.php
logo-mobile.php

edit this line

                    <a itemprop="url" href="<?php echo home_url(); ?>">
                        <img width="300" class="td-retina-data" data-retina="<?php echo htmlentities($td_customLogoR) ?>" src="<?php echo $td_customLogo?>" alt="<?php echo $td_logo_alt ?>"<?php echo $td_logo_title ?>/>
                    </a>

need to replace these

href="<?php echo home_url(); ?>"

with

href="http://yoursite.com/directory"

  • This reply was modified 11 years by simchris.
  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

Check with GoDaddy support; they may not have that option activated. Remember their servers host thousands of sites PER server, so they have to limit certain features for anything using system resources.

Hmmm… GoDaddy seems to have removed the page in their support “what features from mod_pagespeed does GoDaddy support….” … not helpful.

When you look at your page source do you even see the mod_pagespeed code at bottom, and signal, etc. ?

You should contact GoDaddy, as mod_pagespeed might not work from sub-domain, or you may need to setup domain mapping in the config file which tells mod_pagespeed it can load stuff from subdomain of main domain.

see stack overflow item on this topic
http://stackoverflow.com/questions/21617388/mod-pagespeed-with-multiple-domains-or-subdomains

and RTFM
https://developers.google.com/speed/pagespeed/module/domains#shard

🙂

simchris
tagDiv Member

Also, anecdotal, smushit doesn’t work with SSL/https, so the ewwoptimizer is better choice if you can compile the correct binaries on server. I have not yet tested this, but was told this the other day as part of our overall testing for moving everything to SSL/https starting October 1 (coming up quick).

simchris
tagDiv Member

You likely have a conflict between the methods being used.

For example when I upload a 745×483 30kb file (size on server; actual size is 24kb); the resize plugin I’m using (to make “larger” images only) along with functions quality setting of “50”, the resulting 700×357 thumb is 23.57kb on server, 1074×483 is 38.25kb; 326×235 is 10.74kb. “Actual” sizes are lower (I’m looking via my ftp tool.)

For example, the orig. 745×483 image is 24.1kb, but 28kb on disk. 30kb on unix server.

I found smushit didn’t help me.

mod_pagespeed does make my images progressive once they are cached (meaning the images seen in the page source have the pagespeed modified file names).

  • This reply was modified 11 years by simchris.
  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

Ssl is implemented at you hosting co., you need ssl cert for your domain, then you load pages via https vs http. Were lucky we have our own server with it installed… Right now testing hookup with mod pagspeed weve been running since dec. typing on ipad, pardon punctuation.

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

I changed all of mine to Open Sans that way, last weekend.

Don’t forget to comment out the Google fonts in your functions.php file so you’re not still loading the PT Sans and such. And ideally put the Roboto css at bottom of your CSS file (but don’t minify that section) vs loading the css file from Google.

simchris
tagDiv Member

Better to do that from the style.css file

simchris
tagDiv Member

Great. As long as you’re newer than Rev Slider 4.1.4 you are secure now 🙂

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

FYI, if you’re using a plugin with timthumb, it usually has a cache folder for creating the thumbs, and the folder “read/write permissions” must be 777; this will generally be reset when moving to new host to 755 or even 750. You can usually set this via ftp, by going to

> wp-content > plugins > yourplug > cache*

(*or “images” or whatever – see docs for plugin you’re using, or find the folder full of images)

Change cache (CHMOD; change command) to “777” so it’s fully writable. Then go back to page using the plug, and the images should be written properly.

The theme doesn’t use timthumb.

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

Ah… I was testing the page via http …. (duh)…. 🙂

simchris
tagDiv Member

I gave up on that for two reasons; I used to think it was cool, but now I kind of think it’s a vanity thing where the site owner is more excited than the people visiting it. Second, it seems to be a resource hog since you need to go grab that info someplace either for every page view, or cache that stuff every hour, which means for a new post a new visitor wouldn’t see the shares anyway, such as coming from Google News when it’s “news.”

I never share something because others have, I share something because I like the post. SO, I guess if it floats your boat, I’d look at that other plugin we talked about a couple of weeks back which used to hook into the third party service, but now won’t … wait for his version, then look at the code to see how he does it. (That is what I’d do.)

simchris
tagDiv Member

Ha! Good luck contacting twitter; they don’t do tech support.
Basically they point you at their developer section to run tests on your site yourself. 🙂

(I have support ticket in with their ad dept. right now as an ad I tried to run wouldn’t “save”… )

simchris
tagDiv Member

Yeah, basically some new features, house cleaning; a lot of wp configuration tools under the hood; but not the big “security panic” updates of some of the recent dot revisions. But always check the codex to see changes, since if there is a notable security fix you SHOULD update to remain secure.

http://codex.wordpress.org/Version_4.0

Highlights
◾ Manage your media and embedded content with style ◾ Explore your uploads in a beautiful, endless grid
◾ A new details preview makes viewing and editing any amount of media in sequence a snap.

◾ The content-editing experience is better than ever ◾ The visual editor now expands to fit your content
◾ A fixed toolbar in the editor when you scroll
◾ Embeddable content previews right in the visual editor

◾ Better workflow for finding and installing plugins ◾ A new grid view adds some visual flair to finding and installing plugins, bringing relevant plugin info front and center

◾ For Developers ◾ Customizer Panels API
◾ Updated external libraries
◾ Better flexibility for WP_Query ORDER BY

simchris
tagDiv Member

Try something other than twitter to test change, since they often “cache it once” even if wrong, so a new tweet might just keep showing the original with error, and won’t update (at least that is what I’ve seen.)

Be sure to check the page source and ensure the og and twitter tags are populated; which you likely already have done.

I came in late on this, so might not be relevant at this point.
Was just popping in to see if anybody was crashing with WP 4.0 🙂

simchris
tagDiv Member

anecdotal

so far have updated to 4.0 with no trouble
– 4 year old theme; worked fine, asked to update dbase
– 4 year old theme; worked fine; just completed
– 2 sites running custom Woo Canvas; updated fine; one plugin update
– 1 Newspaper 3.92. site; updated fine
– 1 Newspaper 4.2.2 site; updated fine

BE AWARE if you check the changelog for the Newspaper theme, the current version has been fully tested with WP 4 RC1 which was released in past couple of weeks (they were shooting for Sept 1 WP 4 release date, so hit it pretty close post holiday).

So, beyond third party plugins, should work fine.
No issues with latest YOAST SEO, wp-optimize, feedwordpress, addthis, XML sitemaps, our internal random advert module (for banners or text-based no follow ad boxes/responsive); etc.

So, not quite the pain and torment of 3.9 which was precursor to 4.0. You are generally pretty safe with this one…. but always do *BACK UP* prior to any major full number revision, of course.

Hope that helped on the paranoia 😉

simchris
tagDiv Member

I had this happen the other day on a post which
1) had no text at start of the post and so it grabbed the “code” from the post.
2) adding excerpt helped.
3) with the home page template, adding an excerpt to excerpt box, and also meta description for the home “page” used for page with Yoast SEO fixed it for me.

simchris
tagDiv Member

See:
https://forum.tagdiv.com/installation/

“activating” a plugin means turning it from off to “on” (e.g., “activating” it so it will work).

simchris
tagDiv Member

Once I try it I will let you know if anything blows up 😉

and hello from twitterland, too !

Viewing 25 posts - 8,376 through 8,400 (of 9,335 total)