Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New Images Not Showing in PostsYes, but the issue is not on the gail65’s WordPress site.
See the error message below when you click on this ressource :
http://i2.wp.com/dappledthings.smugmug.com/photos/i-VcJLhsk/0/S/i-VcJLhsk-S.png?resize=136%2C79
We cannot complete this request, remote data could not be fetchedForum: Fixing WordPress
In reply to: New Images Not Showing in PostsBecause Gail65 uses Jetpack plugin.
The img source that is not working :
http://i2.wp.com/dappledthings.smugmug.com/photos/i-VcJLhsk/0/S/i-VcJLhsk-S.png?resize=136%2C79the img source that’s working :
http://dappledthings.smugmug.com/photos/i-VcJLhsk/0/O/i-VcJLhsk.pngForum: Fixing WordPress
In reply to: DashboardHi,
What did you do in wp-admin folder ???
Forum: Fixing WordPress
In reply to: Featured Images are PixelatedWhat’s your blog URL ?
I want to see that.Forum: Fixing WordPress
In reply to: Google sitemap plugin did not index my latest post???Hi,
I already noticed indexing issues when using schedule feature to publish post…
Did you schedule the publishing of your last post ?Other thing, did you check your sitemap has changed after you published your last post ? Is the last post URL in the sitemap.xml file ?
Forum: Fixing WordPress
In reply to: Can't Log into my siteYou have 2 choices !
1) You want to solve this without change the theme you paid :
You have to debug this error message. If your purshased this theme at
Go to the support page to find help : http://www.affilorama.com/support/our-products/affilotheme
Or contact the support team : http://www.affilorama.com/contact2) You want to solve this as soon as possible by revert theme change and go back to the default theme :
To do that, using FTP, connect to your theme folder using Filezilla (for example), then delete the theme folder “affilotheme_2” in wp-content/themes/ and WordPress will revert to using the WordPress Default theme.Forum: Fixing WordPress
In reply to: Blog post sort by tag/categoryThis depends how your theme is builded.
Go to “Appearance” –> “Menu”, then check the message at the top.
the current theme does not natively support menus, but you can use the “Custom Menu” widget to add any menus you create here to the theme's sidebar.If you have this message, you can’t create custom menu (natively) but you can create a menu here, and then go to “Widgets” to add theOtherwise, you can create a “Custom Menu” widget to side bar (if you have one, still depends of your theme)
Forum: Fixing WordPress
In reply to: Robot.txtAlso, to help your WordPress blog to be explored by Google is to use the extension Google XML Sitemaps.
Once a post is created or modified, WordPress re-generate a XML Sitemap file (sitemap.xml), and Google read this file for the latest post/page to be crawled as soon as possible.Forum: Fixing WordPress
In reply to: Blog post sort by tag/categoryYou have just now to create smart category names, place your posts in the related category and configure a widget to display a drop-down category menu in a side bar (depends of the theme you choosen)
Forum: Fixing WordPress
In reply to: Blog post sort by tag/categoryHey !
As you can see here, we are on the right track !This link displays uncategorized posts :
http://www.louismoore.net/wordpress/category/uncategorized/
This is the equivalent with ?cat= (non-canonical URL)
http://www.louismoore.net/wordpress/?cat=1
So the uncategorized category has the ID “1”It proves that the category structure is http://www.louismoore.net/wordpress/category/%category%
Here is another example, your category called “test-2” :
http://www.louismoore.net/wordpress/?cat=3
So the “test-2” category has the ID “3”Forum: Fixing WordPress
In reply to: Robot.txtHey !!! The Google results didn’t change yet, it’s normal (this require a new passage of the Google crawler on your page)
But it seems your change in YOAST worked !
Here is now the YOAST informations on your Home page source code :<!-- This site is optimized with the Yoast WordPress SEO plugin v1.3.4.1 - http://yoast.com/wordpress/seo/ --> <meta name="description" content="Michele Lisa Salon is a Full Service Redken concept salon."/> <link rel="canonical" href="http://michelelisasalon.com/" /> <meta property='og:locale' content='en_US'/> <meta property='og:title' content='Michele Lisa Salon'/> <meta property='og:description' content='Michele Lisa Salon is a Full Service Redken concept salon.'/> <meta property='og:url' content='http://michelelisasalon.com/'/> <meta property='og:site_name' content='Michele Lisa Salon'/> <meta property='og:type' content='website'/> <!-- / Yoast WordPress SEO plugin. -->As you can see above, there is a Description and some other usefull information for the most of web crawlers on the web.
From now, you have just to wait some days for that Google make a new indexation of your Home page. Sure, you can force Google to crawle it as fast as possible by adding your website URL here : http://www.google.com/webmasters/tools/submit-url
I already done it (2 times in a row) for you ! So you should see a better result in Google Search tomorrow.For your information, your correct website URL is :
http://michelelisasalon.com/
NOT
http://www.michelelisasalon.com/Regards
Forum: Fixing WordPress
In reply to: External IP address changeI don’t think, but it’s perhaps due to a cache refresh of your Network adapter Address Resolution Protocol (ARP). ARP is similar to a local Hosts file, but it’s dynamic.
The ARP cache is usually refreshed after a reboot of your computer or after disable/re-enable the local network connexion or after restarted a specific Network service.
Forum: Fixing WordPress
In reply to: Blog post sort by tag/categoryWhat kind of Permalinks structure do you use ?
(Go to “Settings” then “Permalinks Parameters”)Forum: Fixing WordPress
In reply to: Blog post sort by tag/categoryIt’s strange !
It seems your test is here : http://louismoore.net/test/ ???
It’s not a category.Your WordPress blog is here : http://www.louismoore.net/wordpress/
so category should be here : http://www.louismoore.net/wordpress/category/testDo you have created a category called “test” ?
And put some post in the category “test”.
Then go to http://www.louismoore.net/wordpress/category/testForum: Fixing WordPress
In reply to: Preview to blogI don’t know to do what you said at the beggining…
But to display just an little block from your post content, you have to use the WordPress Excerpt feature.This is the more simple solution : (mandatory to do this action for each post)
Paste :
<!--more-->
into you post where you want your post excerpt to stop.
A “Read more” link will appears that will allow user to click to read all the post content.And this is the cleaner solution : (do it one time, then all posts done at once)
Edit your index.php file and look for a line of code that contains :
the_content();
and replace by :
the_excerpt();