David Cole
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Recipe Maker] 503 from PinterestWe do have this version and the pro versions installed. The error was originally flagged by Site Improve.
Forum: Plugins
In reply to: [Simple SEO] Version UpdateThanks! Yes I have been lazy as of late. I will try and post something soon. I have some reported issues I am working on.
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongLet me know if there are any issues.
Forum: Plugins
In reply to: [Simple SEO] og meta names and property issuesI just posted an update for the canonical url issue(s). Description issues.
SimpleSEO is “simple” so I do not include a bunch of WooCommerce additions. If I do so then I have to start accommodating other plugins and the work load increase. This is open source, free to use.
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongI just posted an update for the canonical url issue(s).
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongI completely understand, reason I created SimpleSEO.
I hope to commit more changes after xmas, so sometime next week.
Forum: Plugins
In reply to: [Simple SEO] og meta names and property issuesCan you provide a URL where I can see this?
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongThanks! Life has been busy lately so I’ve not been able to trouble shoot this, but it is on the list. Hopefully I will have it resolved in the next commit. I do not have a date for for that release.
Forum: Plugins
In reply to: [Simple SEO] og meta names and property issuesIf you can provide these I’ll see about adding them into the next build. The HTML meta for price, etc
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongIs your homepage set as the blog?
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongOkay, still looking into it.
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongIf your using Chrome you can open developer tools, then right click the refresh button and choose “empty cache and hard reload”, doing it in an incognito window might help as well.
Resetting your router to obtain a new DNS may help also.
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongCorrect.
Forum: Plugins
In reply to: [Simple SEO] [canonical url] ?I completely forgot (I have been sick lately) that you have canonical URL under the advanced tab when editing a page. It is also available for tags, categories, etc
Forum: Plugins
In reply to: [Simple SEO] Canonical Home page link wrongLine 61/62 of app/Admin/Header.php move
$sseo_canonical_url = null;To line 42 above:
if (is_front_page() && is_home()) { /* Default Homepage */You want that first if statement to basically look like this:
$sseo_canonical_url = null;
if (is_front_page() && is_home()) { /* Default Homepage */
$description = get_option('sseo_default_meta_description');
$keywords = get_option('sseo_default_meta_keywords');
$sseo_canonical_url = get_home_url(); /* set canonical url to homepage */
} elseif (is_home()) { /* Blog Page */Let me know if that works. It should, its what I have set for the new release, along with other things.