Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

  • Richie KS
    Participant

    @rkcorp

    should be able to add using wp redirect, add this to functions.php

    if( !function_exists('custom_user_login_redirect') ) {
    function custom_user_login_redirect() {
    $redirect_to = 'hxxp://mysite.com/recent-news';
    return $redirect_to;
    }
    add_filter('login_redirect','custom_user_login_redirect',10,3);
    }

    Richie KS
    Participant

    @rkcorp

    utilize the use of bp action instead, add this to your functions

    if ( !function_exists('add_rules_in_register') ) {
    function add_rules_in_register() {
    echo "<a href='hxxp://www.websitehere.com' target='_blank'>Rules</a>";
    }
    add_action('bp_after_signup_profile_fields','add_rules_in_register');
    }

    Richie KS
    Participant

    @rkcorp

    try filter only page search, add this to child functions

    if( !function_exists( 'only_page_search_filter' )):
    function only_page_search_filter($query) {
    if ($query->is_search) { $query->set('post_type', 'page'); }
    return $query;
    }
    add_filter('pre_get_posts','only_page_search_filter');
    endif;

    Richie KS
    Participant

    @rkcorp

    recon re-save bp pages settings in wp-admin->settings->buddypress


    Richie KS
    Participant

    @rkcorp

    make sure the path is correct for activity.php in child theme.
    should be themes/twentyfourteen-child/activity/your-file-to-edit-taken-from-bp-default-theme.php
    and add add_theme_support('buddypress'); to child theme functions.php


    Richie KS
    Participant

    @rkcorp

    thx for the info mercime, will check them out.


    Richie KS
    Participant

    @rkcorp

    the ‘yo’ word were cause by the link title=” tag, try change them in your plugin or template.
    go to httpxx://domain.com/wp-admin/options-reading.php and choose latest post instead of static page. see if that fixed the homepage page list issue.


    Richie KS
    Participant

    @rkcorp

    first check if the buddypress setting ‘members’ page slug were saved correctly.


    Richie KS
    Participant

    @rkcorp

    you need to make sure the template/theme ‘SmallBiz’ are buddypress compatible.
    you can use the ‘template-pack’ plugin if its not bp compatible theme.

Viewing 9 replies - 1 through 9 (of 9 total)
Skip to toolbar