Daiv Mowbray
Forum Replies Created
-
Forum: Plugins
In reply to: [SuperSlider-Login] SuperSlider Login not sliding any moreHopefully this new update resolves your issue.
Forum: Themes and Templates
In reply to: [Twenty Twelve] My blog looks scrambled.Looks fine to me.
Forum: Themes and Templates
In reply to: Color Marginmargin color does not exist
Your page has this in its header:<style type="text/css" id="custom-background-css"> body.custom-background { background-color: #f1f1f1; } </style>so that’s either your theme or a plugin.
If you are editing the css in your theme settings page, found at appearance – background / theme options if there is one.
This would be added by a plugin.If you have a back up of your wp-content folder on a local machine, you could do an in file search for “custom-background-css” if you don’t know where this style is being added from.
HTH
Forum: Themes and Templates
In reply to: Color Marginbackground margin color does not exist.
use:body { background-color: blue; }or what ever color you want.
HTHForum: Themes and Templates
In reply to: Changing backround imagewell then make the change in the Custom CSS box in the theme options.
And use a larger imageForum: Themes and Templates
In reply to: Changing backround imageI can’t imagine why you would want to do this, you can’t see the image, it’s behind all the content. if you want it at the top change the second center to top. Still you really can’t see it.
Forum: Themes and Templates
In reply to: Changing backround imageyou have this hard coded into the header:
<style type="text/css"> body { background: #000; background-image:uploads/2013/01/floodlights.jpg" no-repeat center; } </style>it should be:
<style type="text/css"> body { background: url(http://www.dfwsportssource.com/wp-content/uploads/2013/01/floodlights.jpg) no-repeat center #000; } </style>Forum: Fixing WordPress
In reply to: Cannot approve commentsWell, at this point…no idea.
When I approve a comment via the dashboard recent comments metabox.
the indicators both in the admin header and the comments item in the left side menu both update accordingly. This is done with javascript, so if it isn’t working for you, there may be a javascript issue with your browser, or it’s a cache problem.
Occasionally plugins can cause trouble although they are not even activated. To ensure no plugin interference you can change the name of the plugins folder temporarily to test.Forum: Fixing WordPress
In reply to: [NSFW] path difference in uploads folder?If this is not the case, and the change does not fix your issue, try switching to theme 2012 and test. If issue is fixed, then your theme is the problem. Most would normally display images with the full source path including the domain. ie:
src="http://www.domain.com/install/wp-content/uploads/2012/11/image.jpg"Forum: Fixing WordPress
In reply to: [NSFW] path difference in uploads folder?Ok,
so on the home page you have images with their source set to :
wp-content/uploads/2013/01/ELIZABETH-RENSTROM_1581.jpg
and on the sub pages such as this:
http://cameraclubny.org/ccny_blog/2012/12/17/happy-holidays/
the image source is set to:
wp-content/uploads/2012/12/IMG_7782-copy.jpg
So the images are always coming with the same path.
you must then have an error in your system set up.
My guess is that you have the WordPress installed in the folder http://cameraclubny.org/ccny_blog but you probably have your WordPress Address (URL) and
Site Address (URL) set incorrectly. In your case they should both be set to: http://cameraclubny.org/ccny_blogForum: Plugins
In reply to: Looking for a plugin that will delete unused images in uploads folderdelete unused images
I’ve managed to get this to work.Forum: Plugins
In reply to: [Magic Fields 2] How to delete unused images?Forum: Fixing WordPress
In reply to: Cannot approve commentsIf you click your back button on the browser, it goes back, it does not reload, so the data is old.
this comment is approved and presented to the public:I’m not sure what kind of readership you have on this thing, but you should let people know about the Guns Across America Rally happening this Saturday at all State Capitals – at 12 noon.
I have just submitted a test comment on that page.
The response is a white screen sitting at url: http://www.bynw.com/wordpress/wp-comments-post.php
Have you edited your comments form?
Do you have a comment related plugin?
have you tested submitting a comment yourself while logged out?Forum: Fixing WordPress
In reply to: Deleted Users Still showing in total boxHave you read any of these?
found it to be caused by the fact that I deleted some users directly from the database, omitting to also delete their meta_values. Orphaned meta_values it’s called
You bbpress forum or which ever you used will have created user meta, and this perhaps was not deleted when deleting the users. The count looks at the user meta.
BE SURE TO BACK UP YOUR DATABASE FIRST!!!
SQL :DELETE * FROM wp_usermeta WHERE user_id NOT IN (SELECT ID FROM wp_users)Forum: Fixing WordPress
In reply to: Image Problems in WP 3.5? Try Disabling Debugging Mode!I have debug set to display on all projects until going live.
The WordPress System does not display / present any errors of any type on my tests. Most plugins do have assorted errors.