WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: remove recent posts on home pageThere are plenty of plugins for this.
Try http://wordpress.org/extend/plugins/remove-posts-in-category-from-homepage/
Forum: Fixing WordPress
In reply to: id productPossibly the number next to ID: ?
Forum: Fixing WordPress
In reply to: Working On Sections 'Privately'Just don’t make it so they can get to it. So remove it from the menu bar and they cant browse to it.
Forum: Fixing WordPress
In reply to: id productI am guessing you need to go into wp-admin and open the product. There you should have an ID either on the page somewhere or within the URL on the top of your browser.
Forum: Fixing WordPress
In reply to: Forever Theme – remove tagline barAdd in your CSS
#description { display: none; }Forum: Fixing WordPress
In reply to: Please help with PHP template..That is supposed to be a popup. Do you need it? If not check in plugins and disable it.
Or you can add this to your .css
#the-popup { display: none; }Forum: Fixing WordPress
In reply to: The top navigation has some links that will not click.Wouldn’t be able to help with a link to the page and the problem. Need some examples to look at.
Forum: Fixing WordPress
In reply to: Sidebar missing in some browsersWhy? I don’t know.
But the sidebar is there just pushed down to the bottom. An easy fix is to change the width from 250 to 240.
#secondary { width: 240px !important; }I don’t know your theme but it appears you have them options where you might be able to do this. If not you might have a custom CSS box where you can paste this in.
Forum: Fixing WordPress
In reply to: How do I change existing URL address?Is wordpress.com an example? Asking because this is support for self hosted wordpress sites. So if yours is the free hosted one you need to ask support on that site.
Forum: Fixing WordPress
In reply to: Blog header has been replacedDid you update the blog or the theme?
Forum: Fixing WordPress
In reply to: Different colours of site titleOnly more help I can offer is if you wanted to hard code the title in there without a child theme. Meaning you find
<?php bloginfo( 'name' ); ?>in header.php and replace with
<span style="color:red;">Charm </span><span style="color:blue;">And </span><span style="color:green;">Rich</span>This is not the best way to do this, but it will work.
Forum: Fixing WordPress
In reply to: Different colours of site titleYou would need to locate where it outputs your logo/text in header.php the edit it to
<span style="color:red;">Charm </span><span style="color:blue;">And </span><span style="color:green;">Rich</span>Forum: Hacks
In reply to: How To Set post_id For Custom Post TypeYup. Tested as described and worked.
Thanks!
Forum: Hacks
In reply to: How To Set post_id For Custom Post TypeNo I am not. Guess I was going about this wrong.
So what you are saying is I import my data from an array. Then since my custom post type only uses the title I would just do something like.
$my_post = array( 'post_title' => wp_strip_all_tags( $_POST['post_title'] ), 'post_status' => 'publish', 'post_author' => 1, ); $post_id = wp_insert_post( $my_post, $wp_error );Now it created a post with a title and everything else is blank and I have $post_id from that which I can add to the post_meta under that ID.
Does that sound right?
Forum: Fixing WordPress
In reply to: possible to ban someone?So now that you have the IP you can ban them from your site using a plugin like http://wordpress.org/extend/plugins/wp-ban/
or if you just wanted to ban them from commenting you can put their IP or email address under Settings > Discussions