martingoldie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Google Webmasters Tools – missing: updated, missing: authorHere is a tutorial on how to fix these errors… (taken from an earlier forum post)
Fixing the “Missing: updated” error
We will need to wrap a span tag around the date element and add the classes “post-date updated”.1. Locate the call for the date, it looks something like this:
<?php the_date(); ?>2. Wrap a span tag around the last snippet of code with classes “post-date updated”, should look like this:
<span class="post-date updated"><?php the_date(); ?></span>Fixing the “Missing: author” error
1. Locate the following author item within your single.php file:
<?php the_author(); ?>2. Change that to:
<span class="vcard author post-author"><span class="fn"><?php the_author(); ?></span></span>Forum: Fixing WordPress
In reply to: WordPress front-end unable to connectWhat is the URL you are using for the front end?
Forum: Fixing WordPress
In reply to: I want to point two domains to one wordpress installYour redirect is working but for digitalrep.com.au and not http://www.digitalrep.com.au.
Try this:
<VirtualHost *:80> ServerAdmin me@email.com ServerName digitalrep.com.au ServerAlias www.digitalrep.com.au RedirectPermanent / http://www.digitalrep.info/ </VirtualHost>Forum: Fixing WordPress
In reply to: Suddenly I can't access my wordpress blogDid you resolve this? Your blog appears without an error for me.
For future support questions, due to the differences between the free hosted blogs offered at wordpress.com and the self-hosted and self-installed version of WordPress supported here, you should probably ask WordPress.com Support instead.
Here is a link to the differences: https://en.support.wordpress.com/com-vs-org/