Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 16,701 through 16,725 (of 32,678 total)
  • Author
    Search Results
  • @mercime
    Participant

    == I get the normal wordpress user profile editable fields? ==

    If you mean the first and last names in wp-admin user settings, then you have to create a script to call those as BP xprofile fields has its own settings. Otherwise, you can create First Name field and Last Name field in User > Profiles panel https://codex.buddypress.org/getting-started/configure-buddypress-components/#users-profile-fields

    #142162

    In reply to: SSL too many redirects

    Arne
    Member

    @rodtrent thank you, sadly that did not work, i have placed the code in line 484 right here:

    ` // Setup the BuddyPress theme directory
    register_theme_directory( );
    }
    }

    remove_action( ‘bp_template_redirect’, ‘bp_redirect_canonical’, 2 );

    // “And now for something completely different”`

    but I still have the loop. Could it be connected to the fact that this wordpress/buddypress installation is located in a subfolder?

    #142156
    Paul Wong-Gibbs
    Keymaster

    The error tells you WordPress can’t find those files. Did you delete them from your plugins directory?

    #142148
    k12onos
    Participant

    I went through BP 1.6 code and stumbled upon the “bp_moderator” role in the code (though I didn’t see this in my wordpress & buddypress installation)

    I also don’t see any other functions that checks back whether “bp_moderator” capability exist. Is this a planned role for future release?

    #142146
    83 Oranges
    Participant

    I followed 2 steps to successfully display usernames in the BP members directory & other pages instead of default Display names:

    1st step was to install the BP Usernames only plugin: https://wordpress.org/extend/plugins/buddypress-usernames-only/
    This replaced display names across the site by usernames however, when I used the search box on the members directory to search a member, it returned results with members display names again and not usernames. To resolve this, I additionally followed step 2 explained here: http://customwebdesignseo.com/activity/p/3002/

    #142131
    Tammie Lister
    Moderator
    #142127
    Geetar
    Member

    Same problem here. No one is able to complete the registration process successfully.

    Using the last versions of both, WordPress and Buddypress.

    r-a-y
    Keymaster

    You’ll want to take a look at the bp_get_displayed_user_nav() function.

    There’s a filter there that applies to each menu item, which you can hook into and override.

    #142120

    In reply to: Where are the plugins?

    r-a-y
    Keymaster

    This is a bug that’s been mentioned here:
    https://buddypress.trac.wordpress.org/ticket/4532

    Until that’s fixed, mercime is right to just check the wordpress.org plugins repository:
    https://wordpress.org/extend/plugins/search.php?q=buddypress

    #142119

    In reply to: Where are the plugins?

    RobyT
    Participant

    OK. Now, I see another forum topic that says:

    @mercime said 1 day, 19 hours ago:
    The plugins have always been hosted at the WP Plugin Repository. You can find a list of plugins tagged BuddyPress @ https://wordpress.org/extend/plugins/search.php?q=buddypress

    No problem, but I suggest it could be a good idea to do a URL redirection when the users clics to “Plugins”.menu. Regards,

    Roby
    Buenos Aires, Argentina

    @mercime
    Participant

    B. At the bottom of the same 16 files, replace:
    `

    `

    with the following (except for registration/register.php):
    `

    `

    with the following for registration/register.php:
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    Save files.

    C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/wallbase/

    D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.

    @mercime
    Participant

    @guitaragora Based on the structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your wallbase theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your wallbase theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <div class="post" id="post-“>

    `

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    ` and move this page title to above `

    `

    Save files.

    #142110
    @mercime
    Participant

    @twc01 Based on the structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your risen theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your risen theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <div id="content-inner" class=”has-sidebar”>
    <article id="post-” >

    `

    Note: If “ does not work here, then change it to “ or ask theme author. You can refer him to this post.

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    ` and move this page title to above `

    `

    Save files.

    @mercime
    Participant

    B. At the bottom of the same 16 files, replace:
    `

    `

    with the following (except for registration/register.php):
    `

    `

    with the following for registration/register.php:
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    Save files.

    C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/deliciousmagazine/

    D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.

    Notes:
    1. Not sure if the Woo breadcrumbs will work in the inside pages of the BP components.
    2. If there’s error/s shown on screen after you upload the changes, remove the following from the top of the file:

    and the error persists, remove the breadcrumb as well
    `


    `

    @mercime
    Participant

    @mariareh64 Based on the structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your deliciousmagazine theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your deliciousmagazine theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    `

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    `

    Save files.

    #31979
    Josh
    Member

    In fiddling around with buddypress for some time now through reading bits of documentation and purveying various themes and plugins, I’m beginning to see that although buddypress supports unique page design, its user-interface definitely biases towards a uniform theme that pervades the whole site. I see that individual page layouts/content can be edited better through some plugins and template design, but in order to do so, it requires not only that you know a little bit of coding yourself but ALSO that you’re working within the wordpress CMS framework.

    For someone who wants a lot of control on his site, this begins to seem a daunting task to really get things the way I want. In fact, it almost seems I would be better hard-coding my own html layouts and cms styles from scratch and then inserting the necessary php-work without using any CMS. At least what I would be learning would be the actual logic/coding of the sites mechanics, and not such PLUS the wordpress/buddypress mechanics.

    But what do you think– does it sound as if I should bite the bullet and learn buddypress, or bite the other bullet and learn much more hard-coding to design without a CMS (although that would obviously take much much longer)?

    GuitarAgora
    Participant

    Header.php: http://pastebin.com/13qsbfAj

    page.php: http://pastebin.com/3MtVK1uN

    index.php: http://pastebin.com/LyvnZa1b

    sidebar.php: http://pastebin.com/e9GrfqME

    footer.php: http://pastebin.com/eQW4x1WZ

    fullpage.php: http://pastebin.com/w55rbG7Q

    @mercime I hope this is what you were asking for, please let me know if i can provide you anything else that might help. Thank you so much for even taking time to see if this is possible!!! I know that coding isn’t a walk in the park and I couldn’t be more thankful for your time!

    #31976
    otreva
    Participant

    I’m looking for some insight into how to create a custom tab on the (/members/) Members Directory page that filters by WordPress role. I’m using BP 1.6.1.

    By default the member directory has two tabs one for All Members and one for Friends. I’d like to keep those as is and add a third tab that only shows members with the WordPress “editor” role.

    Any insights on how to accomplish this?

    #142100
    @mercime
    Participant

    == we would like to redirect BP member pages to the new URLs without deleting the profile ==

    Basically, go to Settings > BuddyPress > Pages – Members > choose page “People, Teachers, Guest, Lectures, Students” and Save. Then in Appearance > Menu, you can create a new menu item named Members and add the URL to the page “People. ….. Students”

    Edit – modemlooper didn’t see your post, I took too long to answer :-)

    #142099
    modemlooper
    Moderator

    you can change the slug of the members page to whatever you like, then install BP Extended settings and choose option to have root profiles.

    So your urls would be

    .com/people-teachers…
    .com/username

    If you want to keep .com/members/username then you would need to create a new page and use a page template with the members loop inside.

    @mercime
    Participant

    @guitaragora yes, that’s a nice theme on the front end. I may be wrong, but I’ve heard that web2feel themes have base64 encodes and that would not be kosher to use. Just in case I’m wrong, we could start step 3 of the BP compatibility process, please open up wallbase’s header.php file, copy all content, paste in pastebin.com, click submit, and post the generated URL here. Do the same for wallbase’s page.php, index.php, sidebar.php, footer.php and the template for the full-width page.

    1. Which version of WordPress are you running? 3.2.1
    2. Did you install WordPress as a directory or subdomain install? Subdomain
    3. If a directory install, is it in root or in a subdirectory? –
    4. Did you upgrade from a previous version of WordPress? If so, from which version? –
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? Yes
    6. Which version of BP are you running? 1.2.10
    7. Did you upgraded from a previous version of BP? If so, from which version? –
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? –
    9. Are you using the standard BuddyPress themes or customized themes? A custom BuddyBase.
    10. Have you modified the core files in any way? Yes, a few.
    11. Do you have any custom functions in bp-custom.php? No.
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? –
    13. Please provide a list of any errors in your server’s log files. –
    14. Which company provides your hosting? Ti-edu
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux

    ###########

    Hi guys, I hope this is the right forum. We are running WP and BP in a portal for students of a Master in interaction design: maind.supsi.ch.

    Since we designed our own members page at http://www.maind.supsi.ch/people-teachers-guest-lecturers-students/, we would like to redirect BP member pages to the new URLs without deleting the profiles. I’ve tried a few htaccess tricks with no result. Can someone help me?

    Thanks! :)

    Cheers from Lugano.

    #31972
    Tim
    Participant

    Hi everyone,

    I’m running WordPress version 3.4 (haven’t upgraded to 3.4.2, yet.)
    WordPress is installed in the root of my domain
    BuddyPress version 1.6.1
    bbPress version 2.1.2
    My theme is a child of BP-Default

    First, I should start by letting you know that I’m definitely a newbie! What I’m trying to do should be relatively simple, I think. I’ve searched and searched, but haven’t been able to find an answer to my question.

    I have a WordPress/BuddyPress site that is mostly private. I’m using Role Scoper to limit access to certain portions of the site, and that’s working out okay. I’m also using BuddyPress Registration Options to “hide” the BuddyPress pages from non-registered users. Unfortunately, I’m unable to hide the link to “Forums” (which links to my bbPress installation) from non-logged users in my navigation. The actual forum topics are restricted, so clicking on forums when not logged in takes you a page that says, “Oh bother! No forums were found here!”, which is fine for an instance where someone actually types the URL. However, I’d like “Forums” to be hidden from the navigation until the user is logged in. My only requirement for accessing the forums is level of Subscriber. Subscriber should be able to fully use the forums, I just don’t want users who aren’t logged in to be able to see the “Forum” link in my navigation.

    Can this be done in bp-custom.php?

    I apologize if my question isn’t clear. If it is not, please let me know so that I can rephrase it. Remember that I’m a complete newbie! ;-)

    Thank you so much! Any and all help is very much appreciated!

    GuitarAgora
    Participant

    Thank you both so much for the response! BuddyPress 1.7 being compatible with all WP themes will definitely be a life saver for many people, searching for answers I have run across an unexpected amount of people in my same situation. A lot of those people I’m sure and have seen that you two have talked to in the past. Great to see people like your trying to help the unfortunately not as skilled “n00bs” in the community…

    I guess I will just continue to tinker and see what I can figure out or stumble across. It seems that most buddypress themes I have run across do not fit the design elements my company is looking for. The theme I am currently working with is called “WallBase”. Have either of you ran across someone trying to implement buddypress into this theme?

    nicolaelvin
    Member

    I am customising the buddypress member profile page. I need the user to be able to edit his first name and last name, yet these fields aren’t in the edit.php profile page. How do I get the field and make in in an input and save to the database? Hope that makes sense, I just want the user to be able to edit his first and last name.

Viewing 25 results - 16,701 through 16,725 (of 32,678 total)
Skip to toolbar