doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Insert a page within a pageTypecastFilms,
Try the following code changing the page_id number to the page containing the content you would like to display.
<?php $my_query = new WP_Query('page_id=896'); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?> <?php the_content(); ?> <?php endwhile; ?>Forum: Fixing WordPress
In reply to: How To Delete ‘Log out’ & ‘Site Admin” from pagevanessa01,
Sounds as though this is hard coded within the sidebar.php file. Try opening it from Appearance > Editor and do a search for “Site Admin”.
Forum: Fixing WordPress
In reply to: Uncategorized even when it has a category name?jhashey,
Try the following as a custom structure in Settings > Permalinks:
/%category%/%postname%/ and see if it helps.Forum: Fixing WordPress
In reply to: Case-sensitive login on WordPress 2.9Ryuga,
Wait, you don’t want case-sensitive logins or you do want them? Take a look at this: http://www.theblog.ca/wordpress-case-insensitive-login
Forum: Fixing WordPress
In reply to: Italics Appear in Color other Than text Colorwil126,
It seems you’re using inline styles when you should be using the stylesheet to adjust your fonts and text color. Remove the following span from the Loop:
<span style="color: rgb(102, 102, 153);">and instead replace it here:
* { border:0 none; color:#666699; /* Changed this hex code to match your font color */ font-family:"Trebuchet MS",arial; margin:0; outline-color:-moz-use-text-color; outline-style:none; outline-width:0; padding:0; text-decoration:none; vertical-align:baseline; white-space:normal; }nomorebacon,
Ugh, shouldn’t all sites have this code I’m surprised it’s not standard on all themes. I’m glad you solved this and sorry for the slow response.
Forum: Fixing WordPress
In reply to: Kubric Header Spacing Issuerarerborealis,
It’s always good to hear when someone solves the problem by themselves. Congrats you’re on your way to a btter understanding of both WordPress and CSS.
Forum: Everything else WordPress
In reply to: Add a second Footer.php fileMichaelH,
Nice addition, hopefully this helps others.
Forum: Fixing WordPress
In reply to: Reordering a single categoryandao,
Did reverse order resolve this or are you still needing assistance?
Forum: Plugins
In reply to: [Plugin: Search Everything] Plural vs Singluar SearchesAnyone have any thoughts on this? It would be great to see relevanssi pick up on this.
Forum: Fixing WordPress
In reply to: Vertical Align?Sarahwebs,
I must have misunderstood, what are you trying to accomplish again, the first post is a little confusing. Just write out how you would like it to appear for example:
Header
Image
TextLet us know and we wil be happy to help.
Forum: Fixing WordPress
In reply to: Strange “Ghost” comment on Pages, Not in comment boxjkeagle,
The mySQL / Plesk database where the tables are stored. This is not accessible from WordPress without a plugin of some sort.
Forum: Fixing WordPress
In reply to: Anyone know a tutorial on how to upload/replace pictures?beginner8,
You might want to check that the browser has effectively cleared the cache, I’ve seen this happen quite a bit especially with Firefox.
Forum: Fixing WordPress
In reply to: HTTP Error – This is getting ridiculousmartino180,
The image wouldn’t happen to be 300dpi would it? This could be causing some problems at these dimensions.
Forum: Fixing WordPress
In reply to: Multiple Loops?Deckster0
Take a look at the information provided in the codex:
http://codex.wordpress.org/The_Loop#Multiple_Loops_in_Action