Don
Forum Replies Created
-
Suggestions for Local Business addition:
-
Logo
payments accepted
price range
Days of week open
hours
Rating
Rating Count
Geo SitemapForum: Plugins
In reply to: [Wordpress Local SEO] Like it! Some suggestionsI was not successful uploading to google sitemap, got an error that said it was an HTML page.
Thanks Mike, will do! 🙂
Forum: Networking WordPress
In reply to: Subdomain Multisite: Correct settings for upload url path?Set the subsites like you have the main site setup, it should work.
EXAMPLE:
Edit the site (Network -> Sites -> Edit -> Settings ) and change the following parameters:
Upload Path wp-content/uploads
Fileupload Url http://www.mydomain.com/wp-content/uploadsP.S. Make sure the chmod is set for 777 on the uploads folder.
Forum: Networking WordPress
In reply to: Multisite upload path and permissionsGwyneth Llewelyn, this fixed the problem for me.
Edit the site (Network -> Sites -> Edit -> Settings ) and change the following parameters:
Upload Path wp-content/uploads
Fileupload Url http://www.mydomain.com/wp-content/uploadsP.S. Make sure the chmod is set for 777 on the uploads folder.
Forum: Fixing WordPress
In reply to: After swithcing to new hosting can't see site anymore?Thank you wen.wainwright.
Turns out the new host has a weird extra step where you have to link to your domains.Forum: Fixing WordPress
In reply to: Sidebar section is not showing in widgets admin.I’m guessing it is a plugin causing the problem.
After you login, add plugins.php to the end of the url so you cam access the plugins area and disable the one by one and see if it fixes the problem.
yourdomainname.com/wp-admin/plugins.php
Forum: Fixing WordPress
In reply to: Can't access WordPress via YahooIs the actual site still working (not the control panel)?
Have you tried from another computer that is not part of your network?Forum: Fixing WordPress
In reply to: editing element.style…sighNot sure of the question, but I have found that the addon “firebug” for firefox to be very helpful finding solutions for these type of problems.
Forum: Fixing WordPress
In reply to: How to put a hover effect into an image?Forum: Networking WordPress
In reply to: Moving to new server: FTP what folders?Thanks for the tips!
Forum: Fixing WordPress
In reply to: Theme changes breaks siteThank you Ciprian!
You instructions fix it for me!Yep, not responsive on my iPod either.
Forum: Fixing WordPress
In reply to: Remove edit buttonThis worked for me:
You can put the following code in your functions.php.
function wpse_remove_edit_post_link( $link ) {
return ”;
}
add_filter(‘edit_post_link’, ‘wpse_remove_edit_post_link’);Apparently the style sheet did work. I changed the drop shadow to white (the background color). I guess you could take out the text-shadow line altogether.
#headerbar-title {
text-shadow: #FFFFFF 0 1px 2px;