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

Always a trade off. Many folks whined about wanting it separate vs built in. Now it’s separate and folks are complaining about that.

Just ignore it and get on with life. The version with theme and the commercial version will never be “in sync” 100% — the bundled version is a group license, the commercial version is from the VC folks. Frankly THEY (Bakery folk) should setup a proper notification with WP for the bundle version, since this impacts many themes we work with here.

Not an issue specific to this theme, in other words 🙂

simchris
tagDiv Member

We did this by adding a “News Updates” tag, and then used that as the selector to add a box on the home page for that type of content. No longer “new” news (since if you updated it same day, it would still be current news, with an update). For older news, like 5 days old with a notable update, we could then “re heat” it on the front page in a section for those who might be interested.

Not sure if that would work for you, but simple fix.

simchris
tagDiv Member

Got it … You want to be able to disable *new* comments only .. but keep existing comments.

So behavior
[x] comments off; turns off comment feature to disallow new comments; does NOT hide all comments for the post.

My version of the theme doesn’t allow that behavior. Nor does another theme I just tested. In the couple themes I just tried, checking “comments off” disables comments entirely. I think this is normal WordPress behavior, but I couldn’t find a discussion on a fix for this; as most folks are now
a) turning off all comments due to 90% spam
b) switching to Disqus as it’s become very popular and “trusted” for use in comments.

That is definitely going to be a Marius/Radu answer 🙂

simchris
tagDiv Member

For many of our sites the best we’ve been able to do is to combine all the CSS into one file, and all the JS into one file, then load the JS via async, and load the CSS from the CDN/Amazon Cloud; then inline the menu stuff we had built custom into the head, along with some CSS which needs to load after Bootstrap.

In most cases you cannot fully remove all render blocking elements, only minimize them. Fix everything ELSE first and you can still get a 90+ desktop score in most cases.

I’ve only seen the render blocking fully fixed by building a minimal theme, and structuring the content specifically to address that issue – but not very pretty site.

So, best tip: fix everything ELSE you can, and don’t obsess over the render blocking stuff as most sites still have this issue due to the way Google is looking at that. They seem to base that “error” on anything which isn’t minimal like Google’s help pages.

simchris
tagDiv Member

Some of HTML5 boilerplate is built in to both Bootstrap and the theme, as far as I know.

HTML5 boilerplate is nothing new, and in fact is one of the inspirations for the htaccess optimizations found in this stick topic that I’ve been posting the past six months for all. Except my verison cuts out all the commenting not needed, and which ironically slow down the htacess file wit bloat.

All roads often lead to same solutions, so thanks for sharing that info for those who are new to HTML and customizing WP. 🙂

(HINT: you can use my htaccess modifications without having to pay for, or use, a plugin.)

simchris
tagDiv Member

Normally in WordPress you do this by disabling the comments for posts after a certain time, such as 120 days after the post is published.

wp settings > discussion

I’ve never seen a theme which controls that data, personally.

simchris
tagDiv Member

What files are being identified as blocking ?

simchris
tagDiv Member

I think the image sizes are still found in the theme docs, as so:
https://forum.tagdiv.com/modules-and-blocks/

simchris
tagDiv Member

You’re welcome 🙂

simchris
tagDiv Member

Be sure to load an actual article page, not just a page with a YouTube video or something.

30B for an entire page seems wrong.

simchris
tagDiv Member

Typically after a major update to any theme, I find I have to “expire” the existing cached content on our CDN, so that the CDN captures and caches the NEW content.

simchris
tagDiv Member

1) remove all external loading elements like social media, advertising, recaptcha, and anything which loads css or js as part of its content; anything not part of the theme

2) use the minification tools I’ve suggested in the pagespeed sticky topic – such as online minification tools, or use the GTMetrix optimized versions provided during the site scan

Basically you need to take the CSS and JS files which PageSpeed is saying need to be minified, and then copy those from your theme directory, minify them, then save the minified version over the original.

One tool to minify the CSS is here:
http://cssminifier.com/

or
http://gpbmike.github.io/refresh-sf/

After you have your minified versions, say of style.css you would need to FTP the minified version(s) to your web site into the wp-content/themes/newspaper folder in the appropriate place.

NOTE: you need to clear all caching, turn OFF caching, and then upload the optimized versions, so that the new versions get cached not the old ones.

3) see 2

If you have a page speed of “82”
then be sure to
1) have faster web hosting account
2) ensure that gzip/deflate are working on your server (mandatory!)
3) enable expires headers (mandatory!)
4) optimize your images

All of this is well covered in the PageSpeed sticky topic in the forum. Optimization of your server, content, and htaccess or nginx config files are not part of the theme.

There is no way for you to optimize external content such as AdSense, AddThis, Recaptcha, Disqus, etc. which are not being served on your actual site.

For max speed you will need to use web safe fonts (not Google fonts), and then comment out the fonts in your functions.php file.

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

@THOR
for testing actual speed you likely need to turn off some of the external elements like social media plugin, advertising, etc.

Try testing with GTMetrix instead as it will SHOW you where the problems are and how to fix.

Also, rather than set expiration headers with plugin, you can do magic with the .htacess file settings I note in this forum (not for use with nginx). Much more efficient.

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

Having content in multiple categories like entertainment and books, is not duplicate content as those are only lead-ins to the actual page/post with the full content.

However, having 20 tags, where the one story would be the only thing on those tag pages might be. Which is why you often choose to only have categories in your Google XML sitemap and not tags. So, tags are best used to group semantic ideas with specific uses, like having a tag index of stories related to nonfiction, vs having a nonfiction category page.

Featured is often used only to identify content which should be featured someway like best of the best, or things which get pulled onto front page in largest element.

Hope that helped.

simchris
tagDiv Member

You should not post your login settings here, as anybody could then login to your site.

simchris
tagDiv Member

Why not simply create a robots.txt file ?

Robots text file is not needed for SEO; it’s primary purpose is to identify which sections of website NOT to search for robots, and to point at your sitemap.

If you have already submitted sitemap to Google and Bing webmaster tools, it’s kind of redundant for some things.

You might look at my example robots.txt file in the SEO/pagespeed sticky thread, to see what one looks like.

A robots.txt file is intended to give directions to search bots, hence name of file. It’s not seen in Google search results, and has nothing to do with your site content SEO which is all done “on page” and “per post” on your site.

If you need one, simply create a text file: robots.txt and upload to your root area of your website; you may need to change write permissions (775 or 777) if you want something like Yoast to be able to edit the file. Some WordPress installs automatically create the file now, with exceptions to inform robots/spiders to skip the wp-admin folder, etc.

wp settings > reading
Further: if you put the WRONG entries in your robots.txt file like saying “ignore my posts directory” then nothing will be seen by Google. The robots.txt file is often used to tell Google your site is under construction… if you have such a setting “hide from search engines” in your wp settings > reading … then that may be your issue.

Robots.txt is *NOT* part of the theme.

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

WP 3.9 and the move to make the theme composer separate element (per everybody’s request) has introduced some minor issues. Thanks for keeping working on this stuff Radu and co!!

simchris
tagDiv Member

No issues with YOAST 1.45
Many issues with YOAST 1.5x

Yoast trying too hard to implement a solution to hook into Google Analytics *and* Google Webmaster Tools; each update seems to fix one thing, and cause issues with others. Messed up OG tags, weird Ajax errors, issues with WP 3.9.1, etc., broke Google News options (now a paid plugin…per site! BOOO!). Your mileage may vary.

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

@fabriciosahdo
I don’t work here, just trying to be helpful.

No theme can help you optimize your hosting, or web server setup. No theme can optimize the content you’re uploading automatically. No theme can customize the settings needed for your htaccess or nginx config file. These are things YOU need to do in optimizing your or any WordPress-based website.

Just like the demo shows an example of how your site might look, YOU still have to configure it to your needs.

A theme is only a set of content styles running on top of your WordPress install, which is running on top of your domain account, which is running on top of the web server setup.


You should contact the theme developer for any refund issues.

You may want to hire a WordPress developer if many of the elements of managing a WordPress site are new to you. You should definitely explore how PageSpeed works for a better understanding of what is involved, as you will need to optimize your system with *any* theme you choose to use.

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

Again to all:
this is an ongoing issue with FACEBOOK, and NOT the theme, OG tags, or WordPress, or your website.

FACEBOOK has a problem with images due to the vast amount of image content they are having posted at each second, minute and hour EVERY day.

Twitter, G+ and Pinterest are better. Twitter is usually spot on. Pinterest most of the time. G+ sometimes confused – not all of their stuff actually works 24/7, as you may know from experience of 503 errors and such.

simchris
tagDiv Member

You can use <h3> headings without worry about SEO; WordPress commonly uses <h3> for the sidebar and other subordinate headings, as they are two levels below the main page heading <h1> and a level below content subheads in the post which are usually <h2>.

You can think of <h3> as a utility headline for any element on page which identifies an area or section, and can also be used in the post as well.

Technically in HTML5, you can use any H tag within a container, or section, if properly defined.

Upshot: nothing to worry about. 🙂

simchris
tagDiv Member

Hi, you should check your server is running gzip/deflate first, as this makes a huge difference as everything is compressed when sent to web browser. Looks like a bunch of your stuff coming off Cloudfront is not compressed enough.

Simplest way to compress all your NEW images is to edit your functions.php file (see my notes about this in the pagespeed sticky thread in forum), but downside you have to update this each time theme updated. Popular plugin: SmushIt.

Looking at your report, there are some fairly big files for that page …

But you should be compressing/optimizing your images in Photoshop or something BEFORE you upload them … e.g., you have

1) 233.9 kB image
2) 115.9 kB image
3) 120.1 kB image

typically you shouldn’t see images larger than maybe 50kb if done right. I try to keep my article featured images no more than 25-35kb for example.

You might try scanning your page here
http://gtmetrix.com/reports/savvymantra.com/aqtDyX98

as it will tell you how and which images are too large on your page!

YOu still have a great PageSpeed rating, though. 🙂

simchris
tagDiv Member

@fabriciosahdo

you need to optimize your site for optimized images, caching, use the tagdiv speed booster plugin, expires headers, etc. The theme cannot fix your content or your website or hosting, these are things you need to do.

See the documentation, and also read through this entire thread to get a better understanding on how you can improve your site performance.

https://forum.tagdiv.com/how-to-make-the-site-faster/

simchris
tagDiv Member

Simply reinstall the theme 🙂

simchris
tagDiv Member

Facebook routinely shows wrong image from posts — nothing to do with your site or theme. They often ignore the OG tags, which is bizarre. I share dozens of items every day across multiple sites, including manually pasting URL into an update in FB – sometimes they grab a random image, or one which loads more quickly or is larger in size, or which is the first one in middle of post.

There is no 100% way to specify the right image for FB, you’re basically just “hinting” it for them.

Viewing 25 posts - 8,776 through 8,800 (of 9,335 total)