Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 10,126 through 10,150 (of 22,679 total)
  • Author
    Search Results
  • #153697
    M3
    Participant

    @Mercime: This is the theme which I previously used. You can view it here. I hope the author will make an update on these issues.

    #153679
    @mercime
    Participant

    But why it is said the theme I use is compatible to run buddypress in wordpress.org themes option?


    @musadiqmarhaban
    @hnla What’s the name of the theme? Those are serious issues.

    #153673

    In reply to: Template Errors

    Mathieu Viet
    Moderator

    @chouf1

    the fix is for BuddyPress theme, not for WordPress themes 😉

    #153669
    intimez
    Participant

    If you want to create, edit or link doc to group:
    https://wordpress.org/extend/plugins/buddypress-docs/

    If you want to upload to buddypress group forum:
    https://wordpress.org/extend/plugins/u-buddypress-forum-attachment/

    #153668
    modemlooper
    Moderator
    #153664
    modemlooper
    Moderator

    Profile field links search members. It will not create a filtered activity stream. This can be accomplished with custom coding.

    This plugin may give you an idea how to do it https://wordpress.org/extend/plugins/buddypress-activity-stream-hashtags/

    #153660
    Ben Hansen
    Participant

    well i wasn’t referring to walls was referring to wordpress tags they operate like filters an example is here it shows member of my clients site gotgame.com that own the Atari 2600:

    http://gotgame.com/members/?s=Atari+2600

    hope that helps.

    #153658
    intimez
    Participant

    @gordonre @wrowlands

    You’re not alone. The current version and the way to combine buddypress with forum is difficult as I found out with several people new to wordpress+buddypress.

    In my testing, the next version of buddypress and bbpress is much easier.

    #153657
    Ben Hansen
    Participant

    yes all items entered into the various profile fields should be clickable and function similarly to the way tags do in regular wordpress.

    #153653
    findly01
    Participant

    Thanks.

    Now I just have the problem of changing the Members text to ‘My Profile’ and making it link to the user’s profile page.

    There’s a good article here:

    http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/

    #153652
    fitnessblogger
    Participant

    Sorry for the delay @mercime

    WordPress : Version 3.5.1 (multi-site – multi-domain)
    BuddyPress : Version 1.6.4

    URL : http://fitnessblogger.net

    Thanks so much for your time 🙂

    Kind Regards

    James

    #153648
    bp-help
    Participant

    Also, how can I hide the Activity pages etc. until the user loggs in?

    Read my reply in the following thread to accomplish this.
    https://buddypress.org/support/topic/private-community-with-public-wordpress/

    #153647
    M3
    Participant

    Hi Hugo, you’re right, it is the theme. I use the default test theme and everything turns out fine.

    But why it is said the theme I use is compatible to run buddypress in wordpress.org themes option?
    Its a nice theme by the way, but I think they should exclude it. Can give people a hard time.

    The web is for my client and now I’m really in trouble, because they agreed on the theme already and I should be making delivery this weekend. First I thought is just some string problem somewhere.

    I’m shutting it down for today and hope I can come up with a better idea.

    Thank you Hugo and really appreciate if you have some idea on any optional theme available.

    Thanks again.

    #153642
    bp-help
    Participant

    I might disable the plugin and edit the site so when a user logs in they see their member profile instead of the sitewide activity. Any ideas on how to do this?

    Have you tried this plugin?
    https://wordpress.org/extend/plugins/buddypress-login-redirect/

    meistese
    Participant

    Hello again, I just wanted to let you know that I completely deleted WordPress from my server, and then reinstalled it. I then reinstalled BuddyPress. The 310 error has gone away!!! I wish I knew what caused the error to begin with so that I don’t make the same mistake again, but oh well, I will continue moving forward. Thanks for your time.

    #153624
    Kevin M. Schafer
    Participant

    @bphelp I do believe I have it now. Yes, my butchered theme that I’m learning on was sending off errors. I enabled the BP-Default Theme and we’re good. I have the BP navigation tabs going to the Sample Page.

    I knew you had it right, but I didn’t understand and I didn’t know my theme was causing errors. I use this site for practicing, then I implement the changes that work back to my new site: http://www.gumpolen.com

    Thanks,

    Kevin

    #153622
    haughtam
    Participant

    It’s been a while since my original post, but I think I’ve figured this out and I hope this helps someone else.  The original problem changed a bit too.  Basically, now I want to show a profile group based on the value in an xprofile field (when editing a profile).  So, if my User Category field for a logged in user says Recruiter, then I want to show the profile group called “Recruiter” (show this for admins too).  Otherwise, I want to hide this profile group through php.

    Thanks to the hint above, I was able to come up with a function in my child theme’s function.php file.

    I’m just learning php/wordpress, and I don’t have a clear understanding why this works.  I do know that $group_name[3] is the Recruiter profile group.  Also, I do realize this snippet uses awful coding practices.  If anyone has improvements, please let me know.

    function my_recruit($group_name){

    if ( is_site_admin() || xprofile_get_field_data( “User Category”)===”Recruiter”) {

    echo $group_name[0];

    echo $group_name[1];

    echo $group_name[2];

    echo $group_name[3];

    }

    else {

    echo $group_name[0];

    echo $group_name[1];

    echo $group_name[2];

    }

    }

    add_filter(‘xprofile_filter_profile_group_tabs’,’my_recruit’);

    #153617
    bp-help
    Participant

    That sounds more like your theme is shooting off errors. Try activating the bp-default theme and see what happens. also make sure there is no extra lines before or after the opening and closing php tags in the bp-custom.php

    #153615
    bp-help
    Participant

    did you add the code to the bp-custom.php you create in yoursite/wp-content/plugins? did you remember to add the code between opening and closing php tags and save the file? I have it working flawless on wp 3.5.1 and bp 1.7 beta 1. for example this line:
    wp_redirect( get_option(‘siteurl’) . ‘/register’ );
    redirects to register page
    you could for example change it to something like this:
    wp_redirect( get_option(‘siteurl’) . ‘/sample-page’ );
    that would redirect to the sample page.

    #153612
    Kevin M. Schafer
    Participant

    @bphelp I missed my greater than sign in starting out the page. Now your code doesn’t show, but when I log out, i get an error across the top of the screen instead:

    Warning: Cannot modify header information – headers already sent by (output started at /home/*****/public_html/inlandcoder/wp-content/themes/frisco-for-buddypress/members/index.php:12) in /home/*****/public_html/inlandcoder/wp-includes/pluggable.php on line 876

    #153611
    Kevin M. Schafer
    Participant

    @bphelp I tried this and when I refreshed my site, all of your code appears below the admin bar on my site — above my header.

    I created a new page and named it “new page here.”

    Here’s your code with my info:

    function bp_guest_redirect() {

    global $bp; if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) { // enter the slug or component conditional here if(!is_user_logged_in()) { // not logged in user wp_redirect( get_option(‘siteurl’) . ‘/new-page-here’ ); } // user will be redirect to any link to want } } add_filter(‘get_header’,’bp_guest_redirect’,1);

    Am I to insert my URL as well? I tried with and without changing it and that didn’t work either.

    Kevin

    #153609
    bp-help
    Participant

    It stripped the code again. Just place this between opening and closing php tags in the bp-custom.php file:
    `
    function bp_guest_redirect() {
    global $bp;
    if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
    // enter the slug or component conditional here
    if(!is_user_logged_in()) { // not logged in user
    wp_redirect( get_option(‘siteurl’) . ‘/register’ );
    } // user will be redirect to any link to want
    }
    }
    add_filter(‘get_header’,’bp_guest_redirect’,1);
    `

    #153608
    bp-help
    Participant

    the above reply stripped out the code so hopefully this will print out!
    `

    `

    #153606
    bp-help
    Participant

    create a file named bp-custom.php that you will then place in yoursite/wp-content/plugins folder after you paste the following code in it:
    `

    `
    Just change the /register in the line :
    wp_redirect( get_option(‘siteurl’) . ‘/register’ );
    to the page you want the logged out user to be directed too!
    I found this somewhere on the net so props to whomever coded it!

    #153586
    modemlooper
    Moderator

    Click blog above, download the beta, install and enjoy any WordPress theme as your BuddyPress theme

Viewing 25 results - 10,126 through 10,150 (of 22,679 total)
Skip to toolbar