Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/28/2017 07:32:21 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Help: Update help text, and include a bit about the "Theme Packages" section.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/settings.php

    r6438 r6441  
    16581658        'id'      => 'main_settings',
    16591659        'title'   => esc_html__( 'Main Settings', 'bbpress' ),
    1660         'content' => '<p>' . esc_html__( 'In the Main Settings you have a number of options:', 'bbpress' ) . '</p>' .
     1660        'content' => '<p>' . esc_html__( 'The "Main Settings" section includes a number of options:', 'bbpress' ) . '</p>' .
    16611661                     '<p>' .
    16621662                        '<ul>' .
     
    16741674    ) );
    16751675
     1676    // Theme Package
     1677    $current_screen->add_help_tab( array(
     1678        'id'      => 'theme_packages',
     1679        'title'   => esc_html__( 'Theme Packages', 'bbpress' ),
     1680        'content' => '<p>' . esc_html__( 'The "Theme Packages" section allows you to choose which theme package should be used.', 'bbpress' ) . '</p>' .
     1681                     '<p>' .
     1682                        '<ul>' .
     1683                            '<li>' . esc_html__( 'The "bbPress Default" package is installed by default.',      'bbpress' ) . '</li>' .
     1684                            '<li>' . esc_html__( 'Some themes may choose to ignore this setting entirely.',     'bbpress' ) . '</li>' .
     1685                            '<li>' . esc_html__( 'Packages can be stacked to allow for intelligent fallbacks.', 'bbpress' ) . '</li>' .
     1686                        '</ul>' .
     1687                    '</p>'
     1688    ) );
     1689
    16761690    // Per Page
    16771691    $current_screen->add_help_tab( array(
    16781692        'id'      => 'per_page',
    16791693        'title'   => esc_html__( 'Per Page', 'bbpress' ),
    1680         'content' => '<p>' . esc_html__( 'Per Page settings allow you to control the number of topics and replies appear on each page.',                                                    'bbpress' ) . '</p>' .
    1681                      '<p>' . esc_html__( 'This is comparable to the WordPress "Reading Settings" page, where you can set the number of posts that should show on blog pages and in feeds.', 'bbpress' ) . '</p>' .
    1682                      '<p>' . esc_html__( 'These are broken up into two separate groups: one for what appears in your theme, another for RSS feeds.',                                        'bbpress' ) . '</p>'
     1694        'content' => '<p>' . esc_html__( 'The "Per Page" section allows you to control the number of topics and replies appear on each page.',                                                    'bbpress' ) . '</p>' .
     1695                        '<ul>' .
     1696                            '<li>' . esc_html__( 'This is comparable to the WordPress "Reading Settings" page, where you can set the number of posts that should show on blog pages and in feeds.', 'bbpress' ) . '</li>' .
     1697                            '<li>' . esc_html__( 'These are broken up into two separate groups: one for what appears in your theme, another for RSS feeds.',                                        'bbpress' ) . '</li>' .
     1698                        '</ul>' .
     1699                     '<p>'
    16831700    ) );
    16841701
    16851702    // Slugs
    16861703    $current_screen->add_help_tab( array(
    1687         'id'      => 'slus',
     1704        'id'      => 'slugs',
    16881705        'title'   => esc_html__( 'Slugs', 'bbpress' ),
    1689         'content' => '<p>' . esc_html__( 'The Slugs section allows you to control the permalink structure for your forums.',                                                                                                            'bbpress' ) . '</p>' .
    1690                      '<p>' . esc_html__( '"Archive Slugs" are used as the "root" for your forums and topics. If you combine these values with existing page slugs, bbPress will attempt to output the most correct title and content.', 'bbpress' ) . '</p>' .
    1691                      '<p>' . esc_html__( '"Single Slugs" are used as a prefix when viewing an individual forum, topic, reply, user, or view.',                                                                                          'bbpress' ) . '</p>' .
    1692                      '<p>' . esc_html__( 'In the event of a slug collision with WordPress or BuddyPress, a warning will appear next to the problem slug(s).', 'bbpress' ) . '</p>'
     1706        'content' => '<p>' . esc_html__( 'The "Slugs" section allows you to control the permalink structure for your forums.',                                                                                                            'bbpress' ) . '</p>' .
     1707                        '<ul>' .
     1708                            '<li>' . esc_html__( '"Archive Slugs" are used as the "root" for your forums and topics. If you combine these values with existing page slugs, bbPress will attempt to output the most correct title and content.', 'bbpress' ) . '</li>' .
     1709                            '<li>' . esc_html__( '"Single Slugs" are used as a prefix when viewing an individual forum, topic, reply, user, or view.',                                                                                          'bbpress' ) . '</li>' .
     1710                            '<li>' . esc_html__( 'In the event of a slug collision with WordPress or BuddyPress, a warning will appear next to the problem slug(s).', 'bbpress' ) . '</li>' .
     1711                        '</ul>' .
     1712                     '<p>'
    16931713    ) );
    16941714
Note: See TracChangeset for help on using the changeset viewer.