shank_dev
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Browsing by Category (Not Working)!Thanks, Have Fixed it…
Forum: Networking WordPress
In reply to: WP 3.1: Activate gone, Network Activate only?@andrea
Thanks, I got the point about Plugin…But Still searching for theme enable option to add a separate theme for Main site!Forum: Networking WordPress
In reply to: Adsense Plugin for WordPress MS?It’s better to put all the Adsense code into your theme files..
But If you really want to use a Plugin
try this one: http://ww.wp.xz.cn/extend/plugins/all-in-one-adsense-and-ypn/Note: Check out the revenue sharing option and set it zero to get the 100% revenue!
Forum: Networking WordPress
In reply to: WP 3.1: Activate gone, Network Activate only?@andrea
I want to install a unique theme for my home page but don’t want others to access this particular theme. In WP 3.0.5 we ware having “theme” subsection under super admin area. I’m looking for that…
Any Idea??Forum: Networking WordPress
In reply to: WP 3.1: Activate gone, Network Activate only?I’m facing the same problem. WP 3.1 is having Network active only..
Even more I haven’t found Multisite theme activation page!
Any Idea???Forum: Fixing WordPress
In reply to: Tagging Problem in WordPress 3.0Yap
Forum: Fixing WordPress
In reply to: Tagging Problem in WordPress 3.0It would be nice if we have the same Auto Suggest APIs…
Forum: Fixing WordPress
In reply to: How to Create a Homepage with List view mode??And yes, ( http://www.labnol.org/ ) is a wordpress blog.
Forum: Fixing WordPress
In reply to: How to Create a Homepage with List view mode??Thanks for your reply..
Forum: Fixing WordPress
In reply to: How to Create a Homepage with List view mode??There is no the_content() in the index.php.
Here is my index.php code:<?php get_header() ?>
<div id=”content”>
<div class=”padder”><form action=”” method=”post” id=”members-directory-form” class=”dir-form”>
<h3><?php _e( ‘Members Directory’, ‘buddypress’ ) ?></h3>
<?php do_action( ‘bp_before_directory_members_content’ ) ?>
<div id=”members-dir-search” class=”dir-search”>
<?php bp_directory_members_search_form() ?>
</div><!– #members-dir-search –><div class=”item-list-tabs”>
-
<li class=”selected” id=”members-all”>“><?php printf( __( ‘All Members (%s)’, ‘buddypress’ ), bp_get_total_member_count() ) ?>
<?php if ( is_user_logged_in() && function_exists( ‘bp_get_total_friend_count’ ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>
<li id=”members-personal”>“><?php printf( __( ‘My Friends (%s)’, ‘buddypress’ ), bp_get_total_friend_count( bp_loggedin_user_id() ) ) ?>
<?php endif; ?><?php do_action( ‘bp_members_directory_member_types’ ) ?>
<li id=”members-order-select” class=”last filter”>
<?php _e( ‘Order By:’, ‘buddypress’ ) ?>
<select>
<option value=”active”><?php _e( ‘Last Active’, ‘buddypress’ ) ?></option>
<option value=”newest”><?php _e( ‘Newest Registered’, ‘buddypress’ ) ?></option><?php if ( bp_is_active( ‘xprofile’ ) ) : ?>
<option value=”alphabetical”><?php _e( ‘Alphabetical’, ‘buddypress’ ) ?></option>
<?php endif; ?><?php do_action( ‘bp_members_directory_order_options’ ) ?>
</select></div><!– .item-list-tabs –>
<div id=”members-dir-list” class=”members dir-list”>
<?php locate_template( array( ‘members/members-loop.php’ ), true ) ?>
</div><!– #members-dir-list –><?php do_action( ‘bp_directory_members_content’ ) ?>
<?php wp_nonce_field( ‘directory_members’, ‘_wpnonce-member-filter’ ) ?>
<?php do_action( ‘bp_after_directory_members_content’ ) ?>
</form><!– #members-directory-form –>
</div><!– .padder –>
</div><!– #content –><?php locate_template( array( ‘sidebar.php’ ), true ) ?>
<?php get_footer() ?>