sruddy
Forum Replies Created
-
comments are not working either way from fb to blog or from blog to facebook
OK publishing is working but when I made a comment on facebook it didn’t show up on my blog.
I think I figured it out. The plugin instructions were not clear enough for me. It says After creating the application, put http://steveruddyphotography.com/ in as the Site URL in the Website section for clarity it should say in the select how your app integrates with facebook section check website with facebook option and enter url.
BTW my app domains undef the apps basic info is blank is that ok?
I have tokens and green light and manual publish buttons now so I’ll give it a test.
Forum: Fixing WordPress
In reply to: Sending a Blog post to facebook business pageI just took a look at the description of simple facebook connect and it says After activating the plugin and setting up a Facebook Application for your site, you can enable individual pieces of functionality to let you integrate your site in various ways.
Do you know which facebook app is required for it?
Thanks
Thanks Joost I actually used the admin supplied check box then checked my code and it was as you stated.
Forum: Plugins
In reply to: [Plugin: WordPress SEO by Yoast] My site not showing in google searchThanks but I think I’m a little beyond basic. Apparently meta Keywords are not really being utilized any more see video.
http://yoast.com/meta-description-seo-socialMy meta description has all the keywords I’m using to do the google search and my site is not coming up. Unfortunately for the style of the site there can be no text in the body of my homepage. I’m know wondering if I create an accordion to hide the text which would include all the related keywords that are in my meta tag would this do the trick?
edited your URL to fix anchor tag problem
Let me refraze the question.
Should my title look like this
<title>wp_title(“”)</tittle>
or like it currently is (see below) which includes wp_title(‘|’)
<title><?php
if ( is_single() ) { single_post_title(); }
elseif ( is_home() || is_front_page() ) { bloginfo(‘name’); print ‘ | ‘; bloginfo(‘description’); get_page_number(); }
elseif ( is_page() ) { single_post_title(”); }
elseif ( is_search() ) { bloginfo(‘name’); print ‘ | Search results for ‘ . wp_specialchars($s); get_page_number(); }
elseif ( is_404() ) { bloginfo(‘name’); print ‘ | Not Found’; }
else { bloginfo(‘name’); wp_title(‘|’); get_page_number(); }
?></title>
You need to manually type in the keywords in the ‘Meta Keywords’ field.
For anyone following this the field is turned off by default. Turn it on in the general settings. Yoast does not use meta keywords and here is a video explaining why. http://yoast.com/meta-keywords/
Forum: Themes and Templates
In reply to: Compatibilityahh thanks!
Forum: Themes and Templates
In reply to: Home link brokenIt turned out to be the reading settings. Static page set to home.
Forum: Fixing WordPress
In reply to: NavigationI’ll do it the way you described next time. It’s quicker and easier.
Thanks again.
Forum: Fixing WordPress
In reply to: NavigationBefore you told me this I changed the location of the PHP tag to $menu and it worked. I hope I didn’t cause any problems down the line cause I don’t remember what is was before I replaced it. Thanks for the info!