rwt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: The characters “)); appear at end of every pageThe theme I am using has built in widget like functionality. When I dropped the code into it, it totally changed the content of the code and thus created the spurious characters. Now to post a bug on their site. Case Closed.
Forum: Fixing WordPress
In reply to: How to keep comment feed from being spideredOk you’re much smarter than I am…LOL Thanks!
Forum: Installing WordPress
In reply to: Page Order for pages does not seem to be workingAfter further investigation I noticed that the page order is now in descending order. So pages with an order of 1,23, etc will appear at the bottom of the list. Where is the code so this can be changed to ASC order?
Forum: Fixing WordPress
In reply to: wp_get_links missing li-tag in v2.1?I correct myself, I misspoke. wp_get_links has not been deprecated. Simply changed. I understand the problem you are having. I just discovered it on my site. I am not sure as to the solution…
Forum: Fixing WordPress
In reply to: wp_get_links missing li-tag in v2.1?wp_get_links has been deprecated. It has been replaced by wp_list_bookmarks. Unfortunately, there are a few problems with it. I am still trying to figure it out myself.
However, wp_get_links should not work at all if you upgraded correctly. Did you upgrade per the usual instructions or did you do an overwrite?
Forum: Fixing WordPress
In reply to: RSS feed shows RSS comments after updateAll these sites use index.php as part of the permalink structure. What could be causing the problem with that??
Forum: Fixing WordPress
In reply to: Is this possible? – Multiple chunks of text on a static pageIf I read you correctly, you want one main STAFF page with a block area for each member of that staff. Each block should be able to be edited independently from the main STAFF page. Correct?
First you need the following plugins:
Include Page (can be found at
http://beetle.cbtlsl.com/archives/2005/05/03/include-page-plugin-v-11/
)Exec Php
http://www.soeren-weber.net/post/2005/08/18/50/Create individual staff pages based on a template that is bare. “Bare” meaning that it simply is text, no CSS, no nothing.
<?php
/*
Template Name: Bare Page
*/
?>
<?php
/* Don't remove this line. */
require('./wp-blog-header.php');
?>(the file above may be in a different location, depends on your install).
Within the STAFF page create a series of div’s
<div id =”block”>
<?php include_page(28); ?>
</div> <!– end block –>the number 28 will refer to the individual page number of a particular staff member.
Use CSS to style the block sections.
Exec PHP allows PHP code to be include within a WordPress Page.
If you click on my name and look on my site, the “block” that appears in the upper right hand corner of a main content page is accomplished this way. I can change the content of that block without touching the main page.
This is actually a great example of using WordPress as a CMS.
Forum: Everything else WordPress
In reply to: ONE Problrm with the ” no comments ” in blog postits a link. in your CSS file did you do something like: #post-footer a:link {color:#003366}
#post-footer a:visited {color:#003366}
#post-footer a:hover {color:#003366}
#post-footer a:active {color:#003366}Forum: Themes and Templates
In reply to: Landing pageNeed to see the code you are using for the loop. Side note: “subscribe” is misspelled on your subscribe button.
Forum: Plugins
In reply to: feed statistics?If feed statistics could be handled internally rather than externally, that would be awesome. May need to add this to the WordPress wishlist.
Forum: Your WordPress
In reply to: Recommended Web Tools Site ReviewThe combined space of the left text column and the main text column is already at the maximum it can be in order to also serve any 800×600 readers.
My guess is that the two center columns of this forum are just about as wide if maybe a little narrower (would have to peek at their style sheet).
Take the main text column. Do you want to see more space to the right and left of the text? ie more padding/margin?
Forum: Your WordPress
In reply to: Recommended Web Tools Site ReviewOk I’ve ditched the busy background image and made it a blue-gray background.
I’ve switched my greys around to make the fonts more pleasant to the eye. I also increased the line height to increase readability.
Let me know if these things have helped.
I totally hear what you are saying about search. That, however, will have to wait until tomorrow.
I appreciate it!
Forum: Fixing WordPress
In reply to: Link Ratings Do Not WorkThanks.
I thought I recalled seeing ratings images within the wp-images folder. It was driving me crazy when I found none. I kept thinking I was remembering wrong.
I will check out the plugin route.
Forum: Fixing WordPress
In reply to: Link Ratings Do Not Workwell first I tried using wp_get_links. That function should use the settings that are set within the WordPress admin.
the code I used for get_links is:
-
<?php get_links(’10’, ”, ”, ”, FALSE, ‘id’, TRUE,
TRUE); ?>Forum: Fixing WordPress
In reply to: bloginfo / RSS feedssee this forum thread for help.