Darrell Schauss
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments helpDo you have comments_template() twice in your single.php? It looks like one is inside the loop and one is outside.
Forum: Fixing WordPress
In reply to: How to access HTMLThey are spaced because of the P tags probably. I don’t see it turn yellow (Firefox). But I do like the spacing. There is an extra broken
<img srcafter the RSS icon.Forum: Fixing WordPress
In reply to: Title Spacing ?The comments link P tag has a float on it. Clear the float before going to the next article.
Looks like you already have the clear class in your CSS. You can add this div at the end here.
<hr class="noscreen"> <div class="clear"></div> </div> <!-- /article -->Also the margin-right is missing a : in the f-left and you probably meant to put float:right inside of f-right?
.f-left {float:left !important;} img.f-left {float:left; margin-right10px;} .f-right {float:left !important;} img.f-right {float:left; margin-right:10px;}Forum: Fixing WordPress
In reply to: Date appearing in archive list but there are no postsDid you write the PHP for the Archives list? If so can you post that chunk of code.
Forum: Fixing WordPress
In reply to: How to access HTMLThe one on the bottom of sidebar says it is a text widget.
Appearance > WidgetsThe one up top looks like it might be coded into the sidebar.php
Forum: Fixing WordPress
In reply to: Formatting Text when creating a new postMake sure visual editor is not disabled under Users > Your Profile.
If this is exactly how you have it, it could be this. On this line you have an extra ‘ after available_now
query_posts(array('cat=1&meta_key=available_now'','cat=4'));Forum: Fixing WordPress
In reply to: Trashing Posts does not Remove from DatabaseIt looks like your are basing what posts you want to pull off of the posts meta. You will probably want to INNER JOIN the wp_posts table against the wp_postmeta so you can filter with a WHERE clause as
post_status = 'publish'select only postmeta from what are published posts.Something like this. (Not tested)
SELECT DISTINCT wp_postmeta.post_id FROM wp_postmeta INNER JOIN wp_posts ON wp_postmeta.post_id=wp_posts.post_id WHERE wp_postmeta.post_id IN (SELECT post_id FROM wp_postmeta WHERE ( meta_key = 'Bedrooms' AND meta_value = '$t' )) AND wp_postmeta.post_id IN (SELECT post_id FROM wp_postmeta WHERE ( meta_key = 'Active' AND meta_value = 'Yes' )) AND wp_postmeta.post_id IN (SELECT post_id FROM wp_postmeta WHERE ( meta_key = 'listType' AND meta_value = 'Rental' )) AND wp_posts.post_status = 'publish'Forum: Fixing WordPress
In reply to: Can FTP cause blogging issues within WordPress2. Try to update theme and it takes me to ftp page
This can happen if your wp-content or themes folder doesn’t have 755 permissions and/or the themes files aren’t writable either (644). There may be more going on which you other issues. You could upload a whole new copy of wp-admin folder.Forum: Fixing WordPress
In reply to: How do you exclude a particular category from your RSS?Check out this plugin. You can exclude on is_feed()
http://ww.wp.xz.cn/extend/plugins/simply-exclude/Forum: Fixing WordPress
In reply to: widget titleWhat is the widget (Pages, Categories, or from a plugin)? Can you show a link to the site? Have you try hitting spacebar to leave a blank space in the title.
Forum: Fixing WordPress
In reply to: How to add spaces in the comments field?Do you have a comments.php file in your theme? This is the template for comments list and form. If not you can copy the one from Default and modify it.
Forum: Fixing WordPress
In reply to: How to access HTMLWhat area on the page are you trying to edit?
You said you’ve been looking around in here…
In WordPress admin under Appearance > Editor.
It should bring you to the style.css which should have the name of your current theme it it or make sure “Select theme to edit:” on the top right is your theme.header.php, index.php, footer.php, page.php, single.php (a single post) are common places to make edits.
Forum: Fixing WordPress
In reply to: how to display all latest posts on frontpage?Is your index.php actually a loop? It starts like this..
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>Forum: Fixing WordPress
In reply to: problem w/ layout on 1366 x 768 resolution in FirefoxTry disabling his Firefox plugins if he has any. Remove the whole UL section for the 3 social icons. It might have something to do with that. The gap starts where the headerimage div would end normally if it wasn’t for the icons. I can’t make the gap happen but the whole headerimage div is overlapping the menu when those icons are positioned down like that.
Maybe try absolute positioning the icons inside the header div for the menu so the divs don’t overlap. But the menu UL and social UL might.