Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Enhanced Simple PHP GalleryCan you post the content of the file:
sp_helper_functions.phphere: http://paste.uni.cc ?Forum: Installing WordPress
In reply to: Archive tag problem!What’s the table prefix of your WP installation? It could be found in wp-config.php and it looks like the following
$table_prefix = 'wp_';Can you give me the link to that plugin also?
Forum: Fixing WordPress
In reply to: Top Menu Reorderif the menu is generated by tenplate tag: wp_list_pages, then there are parameters that can be passed to specify the output order.
Template Tags/wp_list_pagesThe menu “blog” could have been hardcoded, so may have to delete it manually in, normally, index.php or header.php
Forum: Fixing WordPress
In reply to: 404 on site but not in individual archivesGo to Options -> Reading
and make sure that “show at most” is not set to 0 (zero)If it’s not set at 0, can you list the plugins that you use?
Forum: Fixing WordPress
In reply to: 404 on site but not in individual archivesHmm, does it still 404 if you switch to Classic Theme?
Forum: Fixing WordPress
In reply to: Enhanced Simple PHP GalleryWhat’s on line 10 of the file
sp_helper_functions.php?Forum: Plugins
In reply to: Where is button for “next page” in WYSI plugin?The quick tag is the following
<!--nextpage-->That’s how I put it in WP’s built-in post editor.
Forum: Fixing WordPress
In reply to: 404 on site but not in individual archives1. Go to Options -> Permalinks and empty out all the input fields; click on “Update Permalink Structure.”
2. Delete the file .htaccess from your server.At this point, you blog should be working normally (with no permalink feature, of course)
Forum: Installing WordPress
In reply to: XML instead of MySQL?edit: wrong post
Forum: Fixing WordPress
In reply to: Hiding Custom FieldsDo you want to hide it in the front-end or back-end (Write Post panel)?
Forum: Fixing WordPress
In reply to: exclude category from $wp_queryTry the following method of excluding category. I believe it preserves all other existing query parameters.
Forum: Themes and Templates
In reply to: Centered image with a linkI don’t think you can do it without an additional markup.
<div class="center"><a href=""><img src="" /></a></div>Forum: Fixing WordPress
In reply to: Page contents on home.phpThis plugin will do
http://guff.szub.net/get-a-postForum: Themes and Templates
In reply to: User-specific AutoText?Inside the loop…
<?php
if( 'admin' == the_author( 'login', false ) ) :
echo 'My Signature';
endif;
?>
Replace
adminwith any login nameForum: Themes and Templates
In reply to: Clickable header from codex not valid?So how can they write this if its illegal ?
Well, because the sole goal was to make the header clickable.The proper CSS solution is moderately difficult and it may be HTML-markup (read: Theme) dependent.
Read up the following for the CSS solution.
http://www.stopdesign.com/articles/replace_text/