Alium SEO and CSS

Latest Reply from Alice at 2014-10-31 08:40:23
I purchased this theme a few days ago to test prior to purchasing several other themes. I read that the themes have the capability to render SEO, however the only SEO option is on the main page, not on the posts or pages that are made. Is there a way to integrate this as a option?
Second thing is the CSS. I have a plugin that allows me to minify all CSS and js. However, upon trying to do this with your CSS, the site completely broke. Not sure if there is a specific reason for this or not, but I would love to have the capability to speed up the CSS if possible.

Thanks for the help in advance.
Hi!
1) SEO option works for all the post/pages where title, description is set. Besides, you can set Description, Keywords and Author for the entire website on page Theme Settings --> SEO. If the current page has a title and its own description our SEO data won't be set. However the keywords will be added to the keywords of the page.

2) Unfortunately, we can't guarantee the compatibility of all the plugins created for WordPress with our themes. Which plugin do you use?
I understand on the SEO, just working on installing another plugin to allow editing of descriptions, title, and keywords as I make a new post or page.

The plugin I am using for minify is W3 Total Cache.

Also, are these themes HTML5?
The reason I am asking about the type of HTML is the theme does not validate with W3C via HTML 5 or XHTML 1.0

Knowing which validation I should go for would help me fix the errors.
To shift your website to html5 you have to follow these steps:
1) Replace the code:
if (preg_match('/mobi/i', $_SERVER['HTTP_USER_AGENT'])) echo '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">'."\r\n";
else echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-transitional.dtd">'."\r\n";

in Header.php with:

if (preg_match('/mobi/i', $_SERVER['HTTP_USER_AGENT'])) echo '<!DOCTYPE html >'."\r\n";
else echo '<!DOCTYPE html>'."\r\n";


2. Replace the code:
html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>

in header.php with:
<html <?php language_attributes(); ?>>


3. Delete the code:
.clearfix { display: inline-block; }
html[xmlns] .clearfix { display: block; }

from the css/index.css file.

If this instruction is unclear to you - download the latest version of the theme and reinstall your current version. We have already fixed this on our website.

Leave a reply

Add codeAdd image