jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't make posts on any pages but Home pageI can't figure out how to enable people to post on every other page except "About." I have the "Allow comments." check box checked but still can not make comments.– I just made a test comment on http://www.bddinsurance.com/blog/?p=74
– you currently have comment moderation turned on so comments will not appear without being approved firstAlso, does anyone know how we can remove "Filed Under (General) by admin"it depends on your theme, but go into all the .php files (start with index.php, page.php, single.php, and archive.php) and remove
<div class="end_title">SOME-CODE-HERE</div>Forum: Fixing WordPress
In reply to: www in URL3.0.1 seems to default to leaving this out– you set the site’s URL via wp-admin/options-general.php (and modifying wp-config.php I believe)
– I’d also look at http://codex.wordpress.org/Moving_WordPressGoogle search prefers to have www in all websites.– not really
How well do you know PHP?
You’ll need to use the query_posts() function
Forum: Fixing WordPress
In reply to: Header/logo shift to the right on certain pagesWhich web browsers are you seeing this with?
I’m on a Mac and looked at your site with both Firefox 3 and Safari and didn’t see this issue.
Forum: Fixing WordPress
In reply to: how to prevent theme been modified by other users on multisiteI’d either not allow individual users to modify themes or create a new Child Theme whenever a user wanted to change the default look/behavior of an available theme.
Forum: Fixing WordPress
In reply to: adding default audion player using shortcodeI’m 99% sure that you’ll need a plugin like PodPress to add an MP3 player to your post.
Forum: Fixing WordPress
In reply to: A front page like this, Is this possible?How well do you understand WordPress theme development (PHP/XHTML/CSS)?
I’d recommend examining the theme files of http://www.woothemes.com/demo/?name=themorningafter or another similar theme
Forum: Themes and Templates
In reply to: switching nav menu with categories ????would it be a lot of hassle to have the main nav menu below the header instead of above it and simply remove the categories ????not really, depending on how adventurous you’re feeling.
first backup the theme’s header.php (copy it to a new header-old.php file) and replace the second
<div class="span-24">MORE-CODE-HERE</div>block of code with the first<div class="span-24">MORE-CODE-HERE</div>block of codeI’d also then change line 36 of the theme’s style.css file to something like (add margin-top):
#header { height:90px; margin-top: 10px; }Forum: Themes and Templates
In reply to: change white background on custom pageyou should be able to something like the following to your theme’s style.css file:
.single_post, .single_page { background-image: url('http://path/to/image.jpg') !important; }OR
.single_post, .single_page { background-color: #000 !important; }note:
– the!importantpart might not be necessary
– see http://www.w3schools.com/css/css_background.asp#table1 for more options if using background-imageForum: Themes and Templates
In reply to: Removing Author & dateCan you post your site’s URL?
edit the CSS to delete the Author and titlefor this I would recommend editing the page template(s) and not the CSS file
Forum: Fixing WordPress
In reply to: Gallery changes after changing a themeYou’ll need to copy the following code from the 2010 theme files into the new theme CSS file:
twentyten/style.css: #content .gallery { margin: 0 auto 18px; } #content .gallery .gallery-item { margin-top: 0; text-align: center; width: 33%; } #content .gallery img { border: 2px solid #cfcfcf; } #content .gallery .gallery-caption { color: #888; font-size: 12px; margin: 0 0 12px; } #content .gallery dl { margin: 0; } #content .gallery img { border: 10px solid #f1f1f1; } #content .gallery br+br { display: none; } /twentyten/rtl.css: #content .gallery .gallery-caption { margin-right: 0; } #content .gallery .gallery-item { float: right; }*Note that this might not work 100% if the new theme uses different xhtml class and id names.
Forum: Fixing WordPress
In reply to: How to remove img src with the_content()Yes, you would need to create a filter for the_content that searches for the image src and then modifies it how you want.
Forum: Fixing WordPress
In reply to: Changing directory nameForum: Fixing WordPress
In reply to: Search results listed randomly@spencerfinnell thanks for catching my mistake
Forum: Fixing WordPress
In reply to: Running Xammp on local works, uploaded only text displayedFor me running a webserver from home for test purposes how would I make this right?— I don’t understand your question
http:xxx.xx.xxx/wordpress— try removing /wordpress
I know this is in a config thing but where?!— it’s set in the
wp_optionstable (you may have changed the wp_ prefix when you installed WP) of the mySQL database