Peter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site not showing up on search engines since changing host serverssorry actually you are number 5 in google.com here https://www.google.com/search?q=kindnessforkids.net
Not number 3
Forum: Fixing WordPress
In reply to: Site not showing up on search engines since changing host serversYeah so that SEO guy may well have killed your Page Rank (PR).
To be fair the best way for you to get back asap is to pay for the keywords you want via google adwords .
Never buy a cheap SEO package I have been in this game since 1996 and I warn every one of my clients and still get 50% come back tail between their legs!
I’m going to try and not be rude here but:
https://www.google.com/search?q=kindnessforkids.netYou are number 3 in the index their!
So what are you on about here??but It’s still not showing up, even when I type into google
Forum: Fixing WordPress
In reply to: Moving WordPress core filesYes backup first!
Forum: Fixing WordPress
In reply to: Google Crawl ErrorsRe you using an seo plugin that generates a sitemap ? If you are that’s most likely culprit.
Forum: Fixing WordPress
In reply to: Adding Mind Body Software Javascript to my WordPress siteThat’s just a function you would still need to call it like
<a href="#" javasript="onclick(launchWS)" />click</a>Best place to ask would be back at mindbody w/e
Forum: Fixing WordPress
In reply to: Site not showing up on search engines since changing host serversYour site is being indexed:
http://www.google.com/search?q=site%3Akindnessforkids.netIt showinf 17 pages in the index,
When redesigning the site you’ve probbably made google re think and re index your site and you;ve lost your previous PR’s.
You’d have to pay someone to get your site ranking for the keywords you want, this usually isn’t sheap the $100 offers you get do more harm than good.
Forum: Fixing WordPress
In reply to: Why Are All My List Items Being Wrapped In SPAN Tags Automatically?It’s just a limitation of the visual editor when you apply styles to individual snippets of text it does wrap them in a span.
Ther’s nothing wrong with that markup so why worry about it?
Forum: Fixing WordPress
In reply to: Ultimate Maintenance Mode plugin doesn't workIf you are logged in you will still see it.
Jus a note this forum is for wordpress the plugin you should contact the people who pubolished the plugin or try the forum for that plugin in the plugins repositry.
Forum: Fixing WordPress
In reply to: Error uploading mediamost likely permissions on wp-content/uploads usually 755 but some servers need 777. §if their is a folder in wp-content e.g 2013/02 these folders should also be 755 or 777 depending on your server.\
So try 755 failing that try 777
Forum: Fixing WordPress
In reply to: Files no longer visible unter /wp-adminBy renaming wp-content/plugins
Call the plugins folder missing or something.
Strong possibility you need to just upload WordPress again if that doesn’t work :
Backup wp-content and wp-config.php then upload everything apart from the wp-content folder saves you lots of time not overwriting wp-content.
Forum: Fixing WordPress
In reply to: Network sits can't find media after site restoreyour images are showing path as:
http://miniblog.electro-web.co.uk/files/2013/01/tumblr_mhfynesy4J1s3yrubo1_1280.jpgUsually your path would look something like:
http://miniblog.electro-web.co.uk/wp-content/uploads/2013/01/tumblr_mhfynesy4J1s3yrubo1_1280.jpgInterestingly :
http://miniblog.electro-web.co.uk/wp-content/files/2013/01/tumblr_mhfynesy4J1s3yrubo1_1280.jpgreturns a server 500
Forum: Fixing WordPress
In reply to: Automatic move from html to wordpressI’m sure if you google around some one will have something step by step for you to follow. The tricky bit will be building your theme so your new WordPress site matches your static one.
Forum: Fixing WordPress
In reply to: Not getting output on template after Ajax requestYes i understand that is the content!
You now also have an extra }); line 366 ..
Anyway my first suggestion works fine apart from I wrote $ instead of jquery !!! see:
http://jsfiddle.net/c2pxr/6/
obviously i cant access the ajax data so i substituted it!!!Here is the code again with jQuery instead of $:
jQuery('.but').click(function(){ if(jQuery(this).hasClass('one')) { var data = { action: 'view_portfolio', galleryID: 1 }; jQuery.post(ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } else if(jQuery(this).hasClass('two')) { var data = { action: 'view_portfolio', galleryID: 2 }; jQuery.post(ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } else if(jQuery(this).hasClass('tre')) { var data = { action: 'view_portfolio', galleryID: 3 }; jQuery.post(ajaxurl, data, function(response) { jQuery('#fotos').html(response); //alert('Got this from the server: ' + response); }); } else { var data = { action: 'view_portfolio', galleryID: 4 }; jQuery.post(ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } return false; });Forum: Fixing WordPress
In reply to: Blank home pageThe index.php in your root has that content?
Forum: Fixing WordPress
In reply to: Not getting output on template after Ajax requestYour still getting the alert message?