Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 126 through 150 (of 160 total)
  • @themightymo

    Participant

    Does the validator work when you go to youdomain.com/wp-register.php? If so, then the plugin likely does not support BuddyPress.

    @themightymo

    Participant

    @mercime – We are using group forums. We are, however, rewriting the urls using the forum slug constant in wp-config.php.

    It is weird, because this is only happening on our DEV environment. It seems to be working fine on LIVE.

    Any other thoughts? Possible avenues to explore?

    @themightymo

    Participant

    Thanks for the reply, Paul.

    Here is a 30-second screencast I made showing the issue in action as well as the weird solution.

    @themightymo

    Participant

    Something like this might do the trick:

    `
    global $bp, $current_user;
    $username = $current_user->user_login;
    echo ‘My Profile‘;
    `

    @themightymo

    Participant

    BuddyPress uses loops like regular WordPress, so you need to update your theme or functions.php to give you this functionality.

    I know this isn’t a solution, but hopefully it gets you going down the right path.

    @themightymo

    Participant

    FYI, I am using WP 3.4.1 with BP 1.5.6.

    @themightymo

    Participant

    @themightymo

    Participant

    I believe you can run a wp_query function before the loop in the template to restrict which blogs display (by blog id).

    @themightymo

    Participant

    Are you referring to the tabs within groups (admin, topics, etc.)?

    If so, the quick and dirty way to hide them is via CSS.

    @themightymo

    Participant

    FYI: For folks who stumble on this thread. A whole treasure trove of BuddyPress template functions: https://codex.buddypress.org/developer-docs/functions/

    @themightymo

    Participant

    Paul, You are a genius! Thank you!!!

    @themightymo

    Participant

    Is the button in the html output of the page?

    @themightymo

    Participant

    You can add this to wp-config.php:

    `define( ‘BP_FORUMS_SLUG’, ‘conversations’ );`

    That will change the slug. To change the actual text that is rendered on the page, check out the “Custom Groups Name” plugin at http://hardlyneutral.com/wordpress-plugins/

    …and if you are feeling adventurous, go ahead and start editing your translation files!

    About .pot, .po, and .mo Translation Files in BuddyPress

    @themightymo

    Participant

    I am interested in threaded forum posts as well.

    @themightymo

    Participant

    The following function seems to work:

    
    function my_bp_nav_adder()
    {
    bp_core_new_nav_item(
    array(
    'name' => __('All Conversations Button', 'buddypress'),
    'slug' => 'all-conversations',
    'position' => 75,
    'show_for_displayed_user' => true,
    'screen_function' => 'all_conversations_link',
    'item_css_id' => 'all-conversations'
    ));
    }
    function all_conversations_link () {
    //add title and content here - last is to call the members plugin.php template
    add_action( 'bp_template_title', 'my_all_conversations_title' );
    add_action( 'bp_template_content', 'my_all_conversations_content' );
    bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }
    
    function my_all_conversations_title() {
    echo 'My Page Title';
    }
    function my_all_conversations_content() {
    echo 'Add the loop here';
    }
    add_action( 'bp_setup_nav', 'my_bp_nav_adder', 100 );
    

    @themightymo

    Participant

    The latest function (above) brings me to the correct url (not to the home page), and it echoes the all_conversations_link() function before the html “doctype” declaration on the resulting page.

    How do I get the all_conversations_link() function to echo on the tab that the bp_core_new_nav_item() function creates?

    Thanks!

    @themightymo

    Participant

    I created a wrapper function, which seems to be a better way to go, but the problem persists. When I click the “All Conversations Button” link, I am redirected to the home page.

    
    function my_bp_nav_adder()
    {
    bp_core_new_nav_item(
    array(
    'name' => __('All Conversations Button', 'buddypress'),
    'slug' => 'all-conversations',
    'position' => 75,
    'show_for_displayed_user' => true,
    'screen_function' => 'all_conversations_link',
    'item_css_id' => 'all-conversations'
    ));
    }
    function all_conversations_link () {
    echo 'my loop will go here';
    }
    add_action( 'bp_setup_nav', 'my_bp_nav_adder' );
    

    Any ideas?

    Thanks!

    @themightymo

    Participant

    By the way, I am running WP 3.1.2 with BuddyPress 1.2.8.

    @themightymo

    Participant

    The links work fine for me. Has this issue been resolved?

    @themightymo

    Participant

    This might not be the ideal way to do it, but if you are looking for a quick fix, you can hide the reply button with CSS.

    @themightymo

    Participant

    @nicholmikey – Did you figure this out? I am having the same issue.

    @themightymo

    Participant

    @oldrow – With hosting, a lot of times you get what you pay for. I don’t have experience with Lunar Pages, but I do know that if you want to control how fast your site loads, you need either a better shared hosting environment or a VPS or better.

    If you want to stick with cheap hosts, you might try another one. For example, I have had decent luck with Hostgator.

    @themightymo

    Participant

    You need to set that up during the installation process. I believe it is very difficult to switch from a sub-folder setup to a sub-directory setup.

    @themightymo

    Participant

    Google Analytics is great for seeing the number of page views, but it won’t give you information about specific users.

    We just released an alpha version of Heavy Analytics (http://heavyanalytics.com) for single-user WordPress installations. This plugin handles analytics and reporting on the WordPress and user level, picking up where Google Analytics leaves off.

    In the near future, we will be releasing a BuddyPress add-on for Heavy Analytics, which will give you all sorts of information about how users are using your BuddyPress site – how they are interacting with each other, who are the quality contributors, etc.

    @themightymo

    Participant

    @davidn879 – Much of that functionality will be included in our BuddyPress add-on for Heavy Analytics.

Viewing 25 replies - 126 through 150 (of 160 total)
Skip to toolbar