jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HELP – White screen at loginDo you have access to your server’s error logs? If not, can you request them from your host?
You might also try logging into your site via FTP, renaming each of your plugin folders to deactivate them and then activating them one by one to see if it’s a plugin causing the issue.
Forum: Themes and Templates
In reply to: Building menu manually possible?I do not want all those ids and classes printed out with the menu's ul and li. In short: can I buid up the menu manually just by iterating through the nodes?– You can specify a custom walker object for wp_nav_menu() to use.
A different problem (not important but annoying) is that creating a custom Menu requires admin rights– The easiest thing to do is give the editor role the ability to edit theme options.
// modify capabilities so editors can edit menus, widgets, and theme options $role_object = get_role( 'editor' ); $role_object->add_cap( 'edit_theme_options' );The above code will allow editors to also access the widgets and any custom theme options pages (if your theme uses them). Allowing access to the menus page yet restricting the widgets and theme options pages is possible, but would require hooking into WordPress a little differently.
Forum: Themes and Templates
In reply to: Black border around imagesTry adding the following to your theme’s style.css:
.comment .avatar { background: none; }Have you checked off the option to “Allow people to post comments on new articles ” on /wp-admin/options-discussion.php?
Forum: Fixing WordPress
In reply to: Redirect causing 403 errorIt looks like the “Bad Behavior” plugin is throwing the 403. The documentation says that you can turn on the “Allow Offsite Forms” option which I’m guessing will resolve the issue.
Forum: Fixing WordPress
In reply to: RSS Feeds Not WorkingIt’s hard to say, but I would guess that a plugin is resetting your default feed type.
Do you know which plugins are affecting the feed? Do any have a settings pages where you can specify the feed type to use?
Forum: Fixing WordPress
In reply to: RSS Feeds Not WorkingWhich feed URL did you enter on Feedburner?
Forum: Fixing WordPress
In reply to: Help with contact sectionThe contact form on your site is controlled by your ProPhoto theme, not WordPress core (though it is probably using WordPress to send emails).
I would recommend contacting them for support on this issue.
Forum: Fixing WordPress
In reply to: Published Pages Not ShowingI don't have any cache plugins enabled.hmm…when I view your homepage source I see:
<!-- Dynamic page generated in 0.576 seconds. --> <!-- Cached page generated by WP-Super-Cache on 2011-05-03 18:46:56 --> <!-- super cache -->Is
WP_SITEURLorWP_HOMEdefined in wp-config.php or in one of your plugins?It would look something like:
define('WP_SITEURL', 'http://your-site-url.com'); define('WP_HOME', 'http://your-site-url.com');Have you tried deactivating all plugins and then reactivating them one by one?
Forum: Fixing WordPress
In reply to: RSS Feeds Not WorkingI’m getting 404s on all of your page links (for example trueup.net/about/) so I would first try saving your premalinks again.
Forum: Fixing WordPress
In reply to: Redirect causing 403 errorCan you post the site’s URL?
Forum: Fixing WordPress
In reply to: Help with contact sectionAre you using a plugin for your contact page? Can you post a link to your contact page?
Forum: Fixing WordPress
In reply to: Can't see img in postI’m seeing the “buy” image, can you verify that it’s still not working for you?
Forum: Fixing WordPress
In reply to: Published Pages Not ShowingHave you tried disabling WP-Super-Cache?