WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove "Leave a Reply" text.Can you post a link to your site? Might be able to do it the easy way with CSS
Forum: Fixing WordPress
In reply to: Moving WordPress from one Domain to anotherI would reinstall wordpress on New server from scratch. Seems some steps and permissions might of been missed but hard to say which ones. Not possible to use a 1 click install on the server to avoid problems?
Forum: Fixing WordPress
In reply to: Error establishing a database connectionWhat is your question?
Forum: Fixing WordPress
In reply to: home link in navigation barDoes your theme support menus? Go to appearance and menu. Cam you set or change your menu from there?
Forum: Fixing WordPress
In reply to: vBulletin/WordPress IntegrationCan put it where you want it to go. I would recommmend in root. So it would be site.com/forums to get to it
Forum: Fixing WordPress
In reply to: How to get rid of WordPress links in admin bar of blogTry adding to style-skin-1.css instead. Or where did you add it?
Forum: Fixing WordPress
In reply to: Home Page IssuesLogin to wp-admin and disable all plugins and activate default theme and try again.
Forum: Fixing WordPress
In reply to: How to get rid of WordPress links in admin bar of blogOnly way I can tell you is to add the below to your style.css
.ab-item { display: none; }It doesn’t get rid of it, but it hides it.
Forum: Hacks
In reply to: How To Select Category Also in SQL QueryThanks. I finally got it to work a bit ago by doing something similar.
$letters = $wpdb->get_col( $wpdb->prepare( "SELECT DISTINCT LEFT(post_title,1) AS first_letter FROM $wpdb->posts INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) INNER JOIN wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id) WHERE (wp_term_taxonomy.term_id = 1 AND wp_term_taxonomy.taxonomy = 'category' AND wp_posts.post_type = 'post' AND wp_posts.post_status = 'publish') ORDER BY first_letter ASC" ));Forum: Fixing WordPress
In reply to: Where do these broken image links come from?I chatted with him and found em.
Each comment is a LI and they got a broken arrow image for each comment box.
.commentlist > li:before { content: url("images/comment-arrow.png"); left: -21px; position: absolute; }Forum: Fixing WordPress
In reply to: Footer and Div OverlapTry changing
<div class="bg-bottom">to
<div class="round-box">in your template file. Looks like you are using the wrong class to me.
Forum: Fixing WordPress
In reply to: Where do these broken image links come from?I dont see broken images I see the gravatar image
http://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=68
Forum: Fixing WordPress
In reply to: Newest article can't appear but whole site can appearDid you just update to 3.4?
Try deactivating all your plugins first and trying?
Forum: Fixing WordPress
In reply to: Category Page & URL StructureSticky is a normal option above your publish button under visibility.
You select that and that one post would remain on the top of the category page while other posts will rotate down as you post more.
Forum: Fixing WordPress
In reply to: Category Page & URL StructureMake a post in that category and make it sticky so it shows up on top being your static content?