Tuesday, March 24, 2015

Custom Login Logo

Add this CSS to the functions.php of your active theme. Replacing /images/ with your desired logo. function my_login_logo() { ?>

Tuesday, March 10, 2015

Buddypress: Activity Remove "All Members" Tab

In theme, buddypress, activity, index.php search All Members and delete line of code.

Saturday, February 14, 2015

Buddypress: Change Site-Wide Activity to Activity

Add it in functions.php in your theme:

add_filter( 'bp_get_directory_title', 'change_activity_title' );

function change_activity_title($data) {
 if( $data == 'Site-Wide Activity' ) {
  $data = 'Activity';
 }

 return $data;
}

Monday, February 9, 2015

Buddypress: 404 Errror Quick Fix

Re-saving the permalinks structure. Settings < Permalinks.

Sunday, January 25, 2015

New Elements in HTML5

  • header
    • Element is used to present the header content for a page or a section of a page
  • footer
    • Element represents information, such as the author and copyright information, at the end of a page or a section of a page
  • section
    • Element is used to represent a section in a web page
  •  article
    • Element is used to represent independent article content
  • aside
    • Element is used to represent a section of content that is related to the content surrounding it. For example, a quotation from an article, presented in larger font to highlight a particular point
  • nav
    • Element is used to present a section in the document for navigation through web pages

Sunday, January 18, 2015

Buddypress: Edit Buddypress Wall Activity Text

  • public_html/wp-content/plugins/buddypress-wall/includes/bp-wall-loader.php
    Open and search for "Timeline"
  • Replace both instances with desired text
  • Search for "News Feed" replace with desired text

Buddypress: Customize Registration Text on Login Screen

  • Public_html < wp-login.php
  • Search for "Register" and changed to desired text.
  • Search result 22 of 23