Advertisement
Guest User

Untitled

a guest
Jan 12th, 2013
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. " Then in each of 17 files, where applicable, you’d like to change the BP Templates’ page title’s header tag from
  2. 1 <h2>...</h2> or <h3>..</h3>
  3.  
  4. to
  5. 1 <h3 id="post-<?php the_ID(); ?>"> // RESPECTIVE BP TEMPLATE TITLES // </h3>>
  6.  
  7. Just watch out when you do this in the /activity/index.php page. "
  8.  
  9.  
  10. I just want to make sure I'm doing this part right because keep in mind I'm new to this...
  11.  
  12. For example, in the file <strong>forums/index.php</strong> , I change this:
  13.  
  14. <strong><h3><?php _e( 'Forums Directory', 'buddypress' ); ?><?php if ( is_user_logged_in() ) : ?> &nbsp;<a class="button show-hide-new" href="#new-topic" id="new-topic-button"><?php _e( 'New Topic', 'buddypress' ); ?></a><?php endif; ?></h3></strong>
  15.  
  16. to this:
  17.  
  18. <strong><h3 id="post-<?php the_ID(); ?>"><?php _e( 'Forums Directory', 'buddypress' ); ?><?php if ( is_user_logged_in() ) : ?> &nbsp;<a class="button show-hide-new" href="#new-topic" id="new-topic-button"><?php _e( 'New Topic', 'buddypress' ); ?></a><?php endif; ?></h3>></strong>
  19.  
  20.  
  21. Is that right?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement