daniellehope
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Get Fatal Error at Login after theme InstalThe “Cannot redeclare” error happens when a function has already been declared in one php file, and then another php file comes along and tries to use the same function name. In your case, it’s the
of_admin_head()function.of_admin_head()was originally used in the OpenDoorZip/admin/admin-interface.php file of your OpenDoorZip theme. When the Placester plugin was activated, the error popped up because a function calledof_admin_head()was used in the placester/blueprint/extensions/options-framework/options-framework.php file.(FYI – These two functions may or may not do the same thing. Identical naming may just be a coincidence, and they may be trying to do something completely different. You’d have to do some digging to determine this.)
That should explain why you received that error message. However, just to solve your problem of not being able to login – go into your wp-content file under plugins, and remove the placester plugin manually.
Forum: Themes and Templates
In reply to: mistylook theme: how to change background color in containerFind
#containerin your style.css file, then change the 6-digitbackgroundhex color.It looks like your background style of your container is currently
background: none repeat scroll 0 0 #FFFFFF;Change #FFFFFF to whatever color you’d like your container background to be (e.g. #999999)
Forum: Themes and Templates
In reply to: Pinboard Slider Image issuesFind
.slides, .flex-control-navin your style.css file, and change the height to “auto” instead of “590px”