Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 1,151 through 1,175 (of 2,230 total)
  • Author
    Search Results
  • #130079

    In reply to: Mobile status updates

    re: buddystream – brilliant, that should enable members of a BuddyPress use a phone to update stuff.

    Many thanks Chris for your fulsome and prompt answer to my questions.

    #130008
    brownstone73
    Member

    Got it all working now. on the 404 error, I just used a 301 redirect:
    `
    <?php
    header(“Status: 301 Moved Permanently”) ;
    header(“Location:http://www.sweepbook.com/rate-this/&#8221; ) ;
    ?>
    `

    This works better, if the 404 comes up, it redirects to the homepage… not bad for a starter – all in one day ;)

    #129999
    brownstone73
    Member

    Thanks you all for your answers, I’ll come up with workaround. As mentioned, I know Linux is much better for WEB SERVERS, but like I said, I have .aspx pages that I’d rather not want to play around with.

    #129997
    Hugo Ashmore
    Participant

    You should have a good look through the BP options in the dashboard and turn off components you don’t want, as for editing core files, you don’t!

    WP/BP set up correctly should run just as well on any server platform but preference would always be for Linux boxes as they are simply better than windows for running servers.

    #129996
    brownstone73
    Member

    Thank you all for you replies. I have posted this issue on WordPress before when I was using pageline theme, but nobody replied on WordPress.

    @Chris, that is exactly what I am looking for, I’m not too fimiliar with coding and currently learning, it will be a big help if I know which codes to remove. I’m basically trying to get rid of all the unecessary things on my site to increase performance. I know wordpress runs better on Linux, but I cannot change to Linux since I have another website that are recieving good traffic, and that website contains aspx pages.

    #129993
    @ChrisClayton
    Participant

    @brownstone73
    1) Groups in buddypress are like ‘post types’ in wordpress, while you can deactivate it so that it doesnt do anything, it’s hardcoded into the core and the only way to remove it completely is by editing the core plugin.

    #129994
    brownstone73
    Member

    ok, I managed to sort out number 2, just 1 and 3 remaining

    #129992
    brownstone73
    Member

    Thanks for the reply @mercime.

    1. I don’t have any groups registered, I just wanted to know if the functionality can be removed completely.

    3. http://www.sweepbook.com is my main site, wordpress/buddypress is installed in a subdirectory, http://www.sweepbook.com/rate-this/. If I use the WordPress twentyeleven them, the logos redirect correctly to http://www.sweepbook.com/rate-this/.

    #129991
    @mercime
    Participant

    1) Re: delete not deactivate

    You can safely delete each Group you’ve created in each Group’s admin settings.
    You can uninstall the Forums for groups in dashboard menu BuddyPress > Forums > uninstall group forums.
    You can uninstall Sitewide Forums in dashboard menu BuddyPress > Forums > uninstall sitewide forums.
    Then, go to BuddyPress > Components > remove checks for User Groups and Discussion Forums

    2) Re: if you look at my site http://www.sweepbook.com/rate-this/ you will notice the menu items are on top of each other

    – I don’t see that in your site. So it’s either you’ve changed the theme to bp-default theme or you’ve decided to use bp-default’s custom menus to organize your links.

    3) Re: The logos on my site, redirects to http://www.sweepbook.com/rate-this

    – Right now I see that you have HTML pages at domain root http://www.sweepbook.com/
    So where did you install WP/BP, in subdirectory rate-this? and the redirect is to
    redirect is to http://www.sweepbook.com/sweepbook/rate-this/ .
    WP Settings > General > Site Address URI/WordPress Address URI was changed without proper checks and this is not a BuddyPress issue at all.

    https://codex.wordpress.org/Changing_The_Site_URL and if that doesn’t help you resolve the problem, please post at https://wordpress.org/support/forum/how-to-and-troubleshooting

    #129722
    Nate
    Member

    I found this script at, http://wordpress.stackexchange.com/questions/15444/is-there-an-easy-way-to-move-the-wp-admin-bar-to-my-own-location

    I’ve tried to implement it though I’m not having much luck. Should I be changing anything within which would allow buddypress to use it?

    function wpse15444_wp_print_scripts()
    {
    if ( ! is_admin() ) {
    wp_enqueue_script( ‘wpse-15444’, plugins_url( ‘wpse-15444.js’, __FILE__ ), array( ‘jquery’ ), false, true );
    }
    }

    // wpse-15444.js
    jQuery( window ).load( function() {
    jQuery( ‘#wpadminbar’ ).appendTo( jQuery( ‘#wpse15444-admin-bar-container’ ) );
    } );

    #129518

    In reply to: User blog categories

    @mercime
    Participant

    Single WP install, sure. Just add the categories from backend and users can only choose from the available categories.

    If you’re talking about categorizing a multisite blog, you could use something like this https://wordpress.org/extend/plugins/blog-topics/

    Or if you’re looking to create categories in main site which are automatically added to new subsites of multisite install http://wordpress.stackexchange.com/questions/12201/wordpress-multisite-global-categories

    #129505
    aces
    Participant

    For a few individual pages you could just add redirect rules, a line per rule, to your .htaccess file – something like:

    `
    Redirect 301 /oldpage/ http://domain.com/newpage/
    `

    The old page address is from the site root (the same as the htaccess file) the new address has to be from http://

    The following discussion might be useful http://wordpress.stackexchange.com/questions/8665/how-to-301-redirect-category-to-customname

    #129437
    daveC87
    Member

    The custom Functions I added area as follows: (When I delete the bp-custom.php everything works fine again)

    // Setups up Type=Full avatar pics for BP-post author
    function bp_custompost_author_avatar() {
    global $post;

    if ( function_exists(‘bp_core_fetch_avatar’) ) {
    echo apply_filters( ‘bp_post_author_avatar’, bp_core_fetch_avatar( array( ‘item_id’ => $post->post_author, ‘type’ => ‘full’, ‘width’ => ’70’, ‘height’ => ’70’ ) ) );
    } else if ( function_exists(‘get_avatar’) ) {
    get_avatar();
    }
    }

    // Changes order for member profile menu items
    function bbg_change_profile_tab_order() {
    global $bp;

    $bp->bp_nav = 20;
    $bp->bp_nav = 30;
    $bp->bp_nav = 40;
    $bp->bp_nav = 50;
    $bp->bp_nav = 60;
    $bp->bp_nav = 70;
    $bp->bp_nav = 80;

    $bp->bp_nav = false;
    $bp->bp_nav = false;

    }
    add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );*/

    // Setup the navigation
    // Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
    // and http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
    function my_setup_nav() {
    global $bp;

    bp_core_new_nav_item( array(
    ‘name’ => __( ‘my adventure list’, ‘buddypress’ ),
    ‘slug’ => ‘my-adventure-list’,
    ‘position’ => 10,
    ‘screen_function’ => ‘my_adventure_list_link’,
    ‘show_for_displayed_user’ => true,
    ‘default_subnav_slug’ => ‘my-adventure-list’,
    ‘item_css_id’ => ‘my-adventure-list’
    ) );
    }

    add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );

    function my_adventure_list_title() {
    echo ‘My Adventure List’;
    }

    function my_adventure_list_content() {
    ?>


    <?php
    }

    function my_adventure_list_link () {
    add_action( ‘bp_template_title’, ‘my_adventure_list_title’ );
    add_action( ‘bp_template_content’, ‘my_adventure_list_content’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/my-adventure-list’ ) );
    }

    ?>

    #129334

    In reply to: Need some help please

    thebuzzer
    Member

    i have installed that. will that be able to limit the free users so they do not see the biz-buzzers questions?

    Also, with that plugin will I be able to add a paid member if they chose to pay offline?

    #129246
    sheffieldlad
    Member

    Thanks Chris, I think I got it.
    Put it in a small plugin file.

    #129227
    @ChrisClayton
    Participant

    you can add it to your bp-custom.php – https://codex.buddypress.org/extending-buddypress/bp-custom-php/

    or a small functions plugin (i personally prefer this method :) ) – http://justintadlock.com/archives/2011/02/02/creating-a-custom-functions-plugin-for-end-users

    It MIGHT also work in your themes functions.php file, but i haven’t tested it.

    #129225
    sheffieldlad
    Member

    Thanks for the replt Chris.
    I’m quite new to all this and I’m not sure if I am meant to replace code with the code in your link or add it somewhere?

    Any help would be appreciated :)

    #129223
    @ChrisClayton
    Participant
    #129112
    bojan85
    Participant

    @marcella1981,

    Hey Marcella, first of all thank you for taking the time to help us, What I am trying to do is very similar as david have two different registration forms depending if their user role is an athlete or coach. I have the regular Bp default theme with the frisco theme, and latest wp and bp.

    I have been trying to figure it out for a couple days but cant seem to move forward..where in the register.php do i enter the php code and jquery script? I tried a couple different places..I have matched the group fields with the $roles array I’m guessing thats the only thing im doing right so far…

    Sorry for the all the questions I am a beginner at all this..Any tips or help how to move forward would be greatly appreciated!

    #129052

    @Chris If I could figure this out, I wouldn’t be here. I don’t have the skills to work this out on my own.

    I did not make a “silly” comment, and you saying “not my problem” is hardly helpful, and only proves that my comment was not silly, but true. I don’t mean to give you attitude, you haven’t done anything to me. It just gets really frustrating when everyone asks you the same questions over and over again. I realize that you don’t know that I have been asked to deactivate plugins countless times, and for that I’m sorry.

    I would just say if your going to take your time to try to help someone, having a laugh about their comments is the wrong way to start off.

    Thanks for trying, and have a good night yourself.

    #129008
    @ChrisClayton
    Participant

    Anytime, so – you can either enter what you want them to see between thoes lines, or; if you really want to redirect them you can use the bp_core_signup_user action

    Source: http://wordpress.stackexchange.com/questions/18301/redirect-after-registration-in-buddypress (untested)

    @ChrisClayton
    Participant

    i’ve never changed the ID of what blog buddypress runs on, but assuming it talks to wordpress the same way as having it on the root blog (which it should, and if it doesn’t it should be reported as a bug) then all your questions are a yes.

    1. Yes, activity stream tracks site-wide activity.
    2. yes, one username (it doesn’t modify the way WordPress Multisite runs much…)
    3. If you are using the bp-default them, then yes it does, if your using another theme then it wont by default. you will have to modify the theme (refer to bp-default theme for how it’s done their)
    4. I’ll leave the languages questions to someone else (i dont mess with doing things with different languages)

    #128330
    Haraldo88
    Member

    This a great discussion because I’m in Neononcon’s and Hysteriux’ shoes somewhat. I’m a web publisher who’s preparing to revamp an existing site to WP, and my potential devs are telling me I really need to incorporate BP as a major component. But I’m not clear about certain functionalities and if BP can really do what I need it to do. And I’ve looked at many of the examples from the links nicely given above (thanks!) and elsewhere, but still do not see my answers. So may I ask 3 very specific questions that can hopefully be answered by those here more experienced than me? Yes? Here goes…

    1. Can BP Groups have separate “discussions” (like forum threads) INSIDE the Group? Not one single thread but unlimited threads. Just like a Forum. Here’s a hypothetical situation: A Group called “Photo Critiques” where each User would submit photos in a separate thread within this group. And others can them comment and critique that User’s photos. In that thread. And there would be a Sticky thread at top explaining the instructions, etc. Doable?

    2. And each separate thread would have full photo uploading capability (or “side-loading” if photo is already housed somewhere). Doable?

    3. And there could be a dedicated Photo Gallery/Album for THAT Group as a whole. Doable?

    Is BuddyPress suitable this scenario?

    Many thanks for your valued input!

    aces
    Participant

    The latest buddypress ( with bp-default theme ) can use the default wordpress menu, which is under appearance section of admin.

    Some web hosting requires an extra plugin for email. https://wordpress.org/extend/plugins/wp-mail-smtp/ has a useful feature that displays debugging information when sending a test email. Another plugin is suggested in https://codex.buddypress.org/troubleshooting/frequently-asked-questions/

    #127870

    lol…….I am a book of questions……but you’re right, this particular issue (I believe) is on the WordPress side, so I’m heading over to the WordPress forums to see if I can bang that one out……..

Viewing 25 results - 1,151 through 1,175 (of 2,230 total)
Skip to toolbar