Chip Bennett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments not showing upYou have 84 comments in moderation (i.e. pending), and 336 comments in spam.
Approve the pending comments (hint: they’re the ones highlighted in yellow).
Forum: Fixing WordPress
In reply to: Edit Functions.phpRe-upload an unmodified copy of
functions.phpfrom the original Theme.In the future: don’t modify original Theme files. Use a Child Theme instead.
Forum: Fixing WordPress
In reply to: When we will get simple and transparent templates?Ah, there it is!
Just FYI: you’re using a very advanced Theme, intended for a very specific purpose. If you’re new to WordPress development, I would strongly recommend starting with a more basic Theme, with simpler functionality.
As it is, you’re trying to modify a nuclear reactor without knowing the difference between a proton, a neutron, and an electron. I’d get frustrated, too! 🙂
Forum: Fixing WordPress
In reply to: problem in add_image_sizeThis is a known bug. I submitted a patch about a year ago; just waiting for it to make its way into core. It got punted to “future release”.
Forum: Themes and Templates
In reply to: Featured Image in my Blog not workI want my image to be Featured functions, like image featured another blog where every post is different image
I’m sorry, but I’m not understanding what you’re trying to do.
What Theme are you using?
What changes did you make to
index.php,functions.php, andstyle.css?Forum: Fixing WordPress
In reply to: Footer widget showing default text – how to hide?I’m also using the widget logic plugin with the is_home() function on a few footer widgets to only display on the home page.
Just FYI,
is_home()returns true on the Blog Posts Index, not on the site front page. If you were using a static front page, with blog posts displayed on a separate page,is_home()would returnfalseon the site front page, andtrueon the page displaying blog posts.The conditional for the site front page is
is_front_page().How can i tell WP, if the footer widget is blank (no text), don’t show the default WP text?
What Theme are you using?
Forum: Fixing WordPress
In reply to: When we will get simple and transparent templates?Oh sorry, I’m trying the annotum theme but it is buggy…
That Theme isn’t available in the WPORG Theme repository (that Esmi linked). Please try a Theme from there.
Forum: Themes and Templates
In reply to: Place current username into a linkWhere would that go within this?
No clue. That looks like a BuddyPress construct, and I don’t see any reference to current user username there.
Now, looking at your second code block:
'parent_url' => $bp->displayed_user->siteurl . '/members/' $current_user . 'my-events' . '/',You could try using
$current_usernamein place of$current_user?Forum: Themes and Templates
In reply to: Place current username into a linkYou can use
get_currentuserinfo():global $current_user; $current_user = get_currentuserinfo(); // Username $current_username = $current_user->user_login;If there is a BuddyPress-specific function or method, you’ll probably want to check the BuddyPress support forums for help with that.
Forum: Themes and Templates
In reply to: Menu dropdowns Won't ShowWhat Theme are you using?
Forum: Themes and Templates
In reply to: Adding background to a single pageSince you’re using the
body_class()template tag, you already have all of the CSS selectors you need. Just add the appropriate CSS definitions.For a page with an ID of 46, you can target:
body.page-id-46in your CSS.Forum: Themes and Templates
In reply to: WordPress Title ProblemWhat Theme are you using?
What Plugins – especially, SEO and/or social/sharing Plugins – do you have active?
Forum: Themes and Templates
In reply to: Featured Image in my Blog not workYou’ll need to provide considerably more detail, if you want anyone to be able to provide specific help:
1) What are you trying to accomplish?
2) What did you do to implement?
3) What did you expect to happen?
4) What didn’t happen as expected, or what happened unexpectedly?Forum: Themes and Templates
In reply to: Loop is looping stuff I don't want to be Looped =)Your problem is that you’re using
query_posts().Do not use
query_posts()for secondary loops!Use
WP_Query()orget_posts()instead.For example:
$cat_query_args = array( 'cat' => 1, 'post_per_page' => 5 ); $cat_query = new WP_Query( $cat_query_args );Then, you just have to set up the loop slightly differently:
if ( $cat_query->have_posts() ) : while ( $cat_query->have_posts() ) : $cat_query->the_post(); the_title(); the_content(); endwhile; endif; // THIS IS VERY IMPORTANT wp_reset_postdata();Forum: Fixing WordPress
In reply to: Are tags suppose to show up below the post?he says he use HEADWAY theme…
Or he may also visit their only member forum for more support. ( Sorry i don’t have money to buy headways theme )..
Actually, he must use Headway’s support for help with this Theme. We cannot provide Theme-specific support for commercial Themes.