' . __( 'Some themes provide customization options that are grouped together on a Theme Options screen. If you change themes, options may change or disappear, as they are theme-specific. Your current theme, Toko Online, provides the following Theme Options:', 'tokokoo' ) . '

' . '
    ' . '
  1. ' . __( 'Color Scheme: You can choose a color palette of "Light" (light background with dark text) or "Dark" (dark background with light text) for your site.', 'tokokoo' ) . '
  2. ' . '
  3. ' . __( 'Link Color: You can choose the color used for text links on your site. You can enter the HTML color or hex code, or you can choose visually by clicking the "Select a Color" button to pick from a color wheel.', 'tokokoo' ) . '
  4. ' . '
  5. ' . __( 'Default Layout: You can choose if you want your site’s default layout to have a sidebar on the left, the right, or not at all.', 'tokokoo' ) . '
  6. ' . '
' . '

' . __( 'Remember to click "Save Changes" to save any changes you have made to the theme options.', 'tokokoo' ) . '

' . '

' . __( 'For more information:', 'tokokoo' ) . '

' . '

' . __( 'Documentation on Theme Options', 'tokokoo' ) . '

' . '

' . __( 'Support Forums', 'tokokoo' ) . '

'; //add_contextual_help( $theme_page, $help ); } add_action( 'admin_menu', 'tokokoo_theme_options_add_page' ); /** * Returns the default options for Toko Online. * * @since Toko Online 1.0 */ function tokokoo_get_default_theme_options() { $default_theme_options = array( 'link_color' => tokokoo_get_default_link_color( '#ffffff' ), ); return apply_filters( 'tokokoo_default_theme_options', $default_theme_options ); } /** * Returns the default link color for Toko Online, based on color scheme. * * @since Toko Online 1.0 * * @param $string $color_scheme Color scheme. Defaults to the active color scheme. * @return $string Color. */ function tokokoo_get_default_link_color( $color_scheme = null ) { if ( null === $color_scheme ) { $options = tokokoo_get_theme_options(); $color_scheme = $options['color_scheme']; } //echo $color_scheme; exit; return $color_scheme; } /** * Returns the options array for Toko Online. * * @since Toko Online 1.0 */ function tokokoo_get_theme_options() { return get_option( 'tokokoo_theme_options', tokokoo_get_default_theme_options() ); } /** * Returns the options array for Toko Online. * * @since Toko Online 1.2 */ function tokokoo_theme_options_render_page() { ?>

So you've activated BuddyPress huh? Great! This theme is compatible without any additional configuration. However, you may want to know about some of the additional pages that you can link to in your navigation and elsewhere...

  • Activity Page: /activity
  • Members Page: /members
  • Groups Page: /groups
  • Forums Page: /forums (Only if you have forums setup)
  • Register Page: /register (Only if you allow registrations. Logged in users will be redirected to the homepage.)

NOTE: These pages will only work if your permalinks are set to anything other than default. This is a requirement for BuddyPress to work correctly.