Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 32,676 through 32,700 (of 69,120 total)
  • Author
    Search Results
  • @mercime
    Participant

    Just checked out the insignio theme and based on the HTML structure via View Source code, it shows that there already is a `

    ` which would conflict with BP Template Pack files’ `

    `, therefore I am now sure that you cannot use the 2nd method of just adding xxx-buddypress.php files (2nd method) to make your theme compatible with BuddyPress. I needed the full source of your theme’s header.php file which was rendered in source view to make sure there was no conflict.

    You will need to change 16 template files (1st method) for compatibility with BP.

    Also, in the revision of 16 template files, the page title will be within the content and not standing out in one line like in the regular page, because doing otherwise is beyond the scope of this assistance. If you still want to proceed, let me know.

    #130726
    neodoxa
    Participant

    Hate to bump this again… I just really need the help with fixing this. Any help from anyone? @mercime ?

    #130725

    In reply to: Buddypress Profiles

    trinityr
    Member

    I use a combination of xprofile and BuddyPress Profile Privacy. Granted this does not automatically create new ‘tabs’ it does allow you to separate Profile Fields into Groups and give the user control of who has access to what. I have a separate group for Social Networks. This allows the user to enter their social network information. Facebook Profile, Twitter, MSN, AIM, etc. This Social Network ‘group’ is displayed below the user’s other profile information.

    mosaicrob
    Member

    Hi @mercime

    I’m using this theme: http://themeforest.net/item/insignio-flip-portfolio-wordpress-theme/full_screen_preview/1033674

    Here is my install:
    http://irsu.co/thegreatestgift

    I just checked the code and it is pasted correctly. I can email it to you if helpful.

    Thanks for using your knowledge to empower.

    @mercime
    Participant

    @mosaicrob

    1) Which WP theme are you using? Need to see a demo to confirm HTML structure.

    2) What you pasted for header.php is missing opening html, head, body tags etc. Please double check and repost code within header.php

    3) Yes, it does look like you can use 2nd method for BP Compatibility, but can’t be sure till I see correct #2) and #1) above

    Thanks @mercime, the URL is http://suchworld.co.cc/

    Exactly what i mean is the header site title and the header search bar.

    Regards

    @mercime
    Participant

    You have not indicated whether you perform basic troubleshooting procedures like:
    – First way to address this is to check whether the same behavior applies when you change to bp-default theme.
    – To further isolate the issue, if changing to bp-default doesn’t work, is to deactivate all plugins except BuddyPress and see if issue is corrected.

    @mercime
    Participant

    B. Copy your theme’s sidebar.php and Save As > sidebar-buddypress.php

    Open up sidebar-buddypress.php and at the top of the file, above all other code, add this:
    `

    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 file.

    C. Upload header-buddypress.php and sidebar-buddypress.php to wp-content/themes/wpflexishop/

    D. Style modifications for BP templates – you might want to use some or all of styles listed in this page https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

    Sidenote: Looks like there’s a missing `` after “ in your sidebar.php per your pastebin.com post. Copy and paste typo?

    @mercime
    Participant

    Yes, @ mentions usually get emailed by default. Didn’t know if you disabled that in your settings like I did :-)
    a) is Good choice

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

    A. Copy your theme’s header.php and Save As > header-buddypress.php

    Open up header-buddypress.php and at the bottom of the file, below all other code, add this:
    [UPDATED – 3/2/12]
    `

    get_queried_object_id();
    $title = get_post_field( ‘post_title’, $post_id ); ?>

    `

    Save file.

    #130712
    @mercime
    Participant

    Info on that page show ways and means to increase memory limits. This is a server issue. Please contact your webhosting tech support for assistance to increase memory for your plan.

    @mercime
    Participant

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

    `

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

    <?php
    thematic_belowpost();
    // calling the widget area ‘page-bottom’
    get_sidebar(‘page-bottom’);
    ?>


    <?php
    // action hook for placing content below #container
    thematic_belowcontainer();
    // calling the standard sidebar
    thematic_sidebar();
    // calling footer.php
    get_footer();
    ?>`

    with the following for registration/register.php:
    `

    <?php
    thematic_belowpost();
    // calling the widget area ‘page-bottom’
    get_sidebar(‘page-bottom’);
    ?>

    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();
    });
    });

    <?php
    // action hook for placing content below #container
    thematic_belowcontainer();
    // calling the standard sidebar
    thematic_sidebar();
    // calling footer.php
    get_footer();
    ?>`

    C. Save files. Upload 6 BP folders to your server wp-content/themes/YourThematicChildThemeFolder/

    D. You might also want to check out the style modifications made in BP Twenty Ten for reference. https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

    @mercime
    Participant

    heyshamsw You will need to change 16 template files within the 6 BP folders transferred to your thematic child theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /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
    `<?php
    // calling the header.php
    get_header();
    // action hook for placing content above #container
    thematic_abovecontainer();
    ?>

    <?php
    // calling the widget area ‘page-top’
    get_sidebar(‘page-top’);
    the_post();
    thematic_abovepost();
    ?>

    `

    So are you guys going to address this issue? I have the same problem on a clean install of wordpress and buddypress with no additional plugins active and have tried several themes. My site is http://www.websitesthatkickass,com/patrick/

    #130708

    In reply to: Custom Sign-up Form

    RobFenech
    Participant

    Adding them isn’t a problem at all, (although I am sure you know this, sorry if I am being over-simple) you just go to the dashboard, go to buddypress -> profile fields and then add the ones you want in there. You’d need to create a hook into the sign-up process to then restrict the sign-up based on age though, which becomes more complex

    snowlas
    Participant

    I was having this problem last week. I had Event Espresso’s Membership Integration plugin running, which was overriding the buddypress plugin. If you don’t have Event Espresso, it’s a plugin doing this.

    Go in and deactivate individually each plugin and do a check. It’s tedious, I know. But I ended up rebuilding my entire website in a weekend and found out it was just a plugin.

    Event Espresso has been working on BuddyPress integration and they used to have it, but that all changed when BuddyPress went to 1.5 and it broke their own code.

    heyshamsw
    Member

    I’ve not managed to fix this but I have discovered a work-around.
    I’ve installed the Widgets on Pages plugin, add the necessary widgets to the widget area I’ve named “bpSidebar”, then in the child theme’s functions.php file added:

    http://pastebin.com/vjUps2Zv

    This uses one of the theme’s hooks to place the widget area on the page.
    As I say, this is a work-around rather than a fix.

    @mercime If you mention me, I get an email…

    I take your advice and choose a)

    @mercime
    Participant

    == Is there a way to subscribe getting an email post each time somebody responds? ==

    @jamesmcbennett Not at this time.

    == Below are codes as asked for. ==

    Checked the code and you have two options

    a) Create two files, header-buddypress.php and sidebar-buddypress.php, add some code and upload to your theme folder in server and you’re done.
    – Con: your BP page titles will be within content area and not how it appears per product page.
    – Pro: When BP is upgraded, no worries about upgrading the two files. Only need to check files when your WP theme is upgraded.

    b) Change 16 BP template files where changes to top and bottom areas are the same except for register.php. In this set up, you would have to change each template file’s page title containers yourself.
    – Con: You would have to revise 16 template files each time BP/BP template pack plugin is upgraded
    – Pro: You could have your page titles in BP pages looking like the rest of the site’s page titles.

    I would opt for a) but it’s up to you, a) or b) ?

    #130691

    I have the same problem couldn’t get the solution you said. Can you please elaborate the solution….
    Waiting…

    #130684

    In reply to: Sudden BBconfig issues

    Stacy (non coder)
    Participant

    I was hacked last week and the current setup is from a restored back up that my host had. However some parts like the hackers user account was still there and a few things were strangely still readjusting all week. The forums were working after I cleared things up but going back to the BuddyPress ‘Forums Setup’ in wp-admin and reinstalling the forum config has worked. Thanks.

    This resetting has happened to me before about a month ago with bp pages , they were suddenly unavailable and I had to reset them. Is there another cause for this perhaps to do with the new bp component setup? When I was hacked my host said that there was a compromise in a function in the code. BP upgrade was the only major change and now settings have turned off twice.

    #130682
    aces
    Participant

    It looks like one is for buddypress 1.5+ and the other for buddypress 1.2.9-

    See: https://codex.buddypress.org/extending-buddypress/bp-custom-php/#examples

    #130668
    studioleland
    Participant
    #130666
    richardpd
    Member

    Hi yadigit

    Many thanks for your reply.
    I’m afraid I do not know the Avatar upload is controlled.
    I have no special plugins.
    The 2 plugins I use are BuddyPress template pack and bbpress plugin.
    The avatar control is probably through those (except WordPress always has had avatar control so possibly it is inbuilt from my WP theme?).
    I don’t know exactly as I am so new to BuddyPress!-sorry…

    I am more concerned still about my BP site functionality and have several questions on that eg
    1.How do I create a forum topic?

    2. Why is settings>general returning a blank browser page?

    In short how do I use BuddyPress and what can I do with it on my site given that I mainly want to use it as a forum?

    I am grateful for more helpful replies, comments and feedback-thanks

    #130661

    @henrybaum, put the following code inside your bp-custom.php.

    function remove_xprofile_links() {
    remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
    }
    add_action( ‘bp_init’, ‘remove_xprofile_links’ );

    Regards

    #130658
    frostdawn
    Member

    Paul- sorry, using BP Corporate 1.4 with BuddyPress 1.5.4. I misunderstood the question.

Viewing 25 results - 32,676 through 32,700 (of 69,120 total)
Skip to toolbar