Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 31,251 through 31,275 (of 69,103 total)
  • Author
    Search Results
  • I have implemented the revisions. For some reason -that- page is not using the source code.

    If you look at the other buddypress pages, they reflect the changes…

    http://bigassmonsters.com/wp/members/ and http://bigassmonsters.com/wp/activity/

    @mercime
    Participant

    @kristopherlouie You didn’t implement the revisions I posted above since I don’t see the following in the source code at all
    `

    <article id="post-” >

    `
    and the corresponding closing divs/article with get_sidebar
    #133686
    zjoyce
    Participant

    Any updated on this request?

    #133684

    In reply to: Ouch! Help

    @ChrisClayton
    Participant

    @helpme2012 Are you referring to the blog comments or the Activity stream Comments?

    For Blog comments, just recreate the bp_dtheme_comment_form() function (located inside bp-defaults functions.php) inside your child theme and it should override the default.

    If your talking about the Stream Comments, then – i have no idea. Never had a problem with the comments post form appearing to logged out members :)

    #133683
    @mercime
    Participant

    @djsinternet The adminbar.css is enqueued via wp_head –> “
    and the bp-core-buddypress markup is loaded via wp_footer.

    If you want to remove buddybar.css, add this to `bp-custom.php` or your theme’s `functions.php` file
    `// remove admin bar style
    add_action( ‘bp_init’, ‘djsinternet_remove_adminbar_css’ );
    function djsinternet_remove_adminbar_css() {
    wp_dequeue_style ( ‘bp-admin-bar’);
    wp_dequeue_style ( ‘bp-admin-bar-rtl’);
    }`

    Note that when you dequeue buddybar.css, all the adminbar links will be unstyled at the bottom of the webpage unless you upload your own adminbar stylesheet

    #133682
    paulv777
    Member

    Wow that great to know it can be done, it seem way over my head but perhaps I could find someone to do it in the future. In the mean time I could leave them as separate and join them later after they start to take off or is this best done from the beginning? Or is it easier that it sounds?

    9087877
    Inactive

    @juanmaguerrero Works great until it hits a dead end and there is no more activities. Then if you keep trying to scroll down it repeats over and over “Sorry, there was no activity found. Please try a different filter.” Is there a way you can tweak the code to make it only display that message one time when it reaches the end of activities? It works great, but it would just look cleaner if it did not repeat that message over, and over as a user attempts to scroll when there is no more activities to display. Also, how do you get that neat loader like you have on your site while more activities is loading? What does it involve? Can you share how to accomplish this? Thanks, and great job! :-)

    #133678
    Slava Abakumov
    Moderator

    So if I clicked on an avatar in this thread – I would see no 40×40 px but (in a popup) 150×150 px (or other, configurable).
    Am I right? If yes, I might add this to my BP Avatar Bubble (https://buddypress.org/community/groups/cd-bp-avatar-bubble/).

    #133677
    Slava Abakumov
    Moderator

    Yes, this can be done.
    The easiest way is to create a “bridge” between them.
    So in general:
    1) sync all users data between sites (wp_(users|usermeta|bp_xprofile_*).
    2) create a script on site 1, that after user registering/updating profile data will make a post|get request with encrypted data to site 2
    3) site 2 will get this data, check it and saves.
    The same script should be placed on site 2 as well. Of course, you will need some kind of securing of all data transfers, also lots of BP hooks will be used.

    Once I even implemented such solution. Site1 was on PHP (WP+BP), while Site2 – on ASP. That was interesting project :)

    #133675
    @mercime
    Participant

    == I am using the BP default theme ==

    You do not need BP Template Pack plugin nor do you need to download/upload any folders if you’re using the bp-default theme. So …
    – First, deactivate the BP Template Pack plugin
    – Second, deactivate BuddyPress, delete BuddyPress, then install it again. This is to make sure that you have clean installation.

    #133673
    @mercime
    Participant

    @bryceburk Actually, if you don’t need social networking, you can do this in WordPress alone. You can use custom post types or categories for countries and states and those are searchable. Users can add posts or custom post types from wp-admin or from front end via
    https://wordpress.org/extend/plugins/wp-user-frontend/screenshots/
    https://wordpress.org/extend/plugins/quick-post-widget/screenshots/
    https://wordpress.org/extend/plugins/post-from-site/screenshots/

    If you want to use BuddyPress – there’s http://buddydev.com/plugins/bp-simple-front-end-post/ where you can created different forms which you can configure to contain what you need. Needs PHP and HTML/CSS skillsets for this though.

    There’s also the premium Gravity Forms plugin which can work for both WP and BP.

    @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/yourcustomthemefolder/

    D. Check out the style modifications made in BP Twenty Ten for reference especially with removing the bullets and bringing in the extended width of the BP elements – https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ – and copy these over to your theme’s stylesheet and adjust as needed.

    @mercime
    Participant

    @kristopherlouie You’d need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your custom 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
    `

    <article 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 it above `

    `, just watch out when you do this in the /activity/index.php page.

    Save files.

    #133668

    In reply to: Find friends option?

    juanmaguerrero
    Participant

    @naijaping @brainiacwebdesigns

    I found the plugin by buddydev is full working and compatible with 1.5+ Doesn’t this suits your needs? Hope it does! :)

    #133667
    cybe001
    Member

    I am using Group forums.

    Thanks

    juanmaguerrero
    Participant

    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    IMPORTANT UPDATE: Since a few pals here have tested and found some things to correct, I have addeded this correction (so now it works OK, yay!):

    Below this:

    
    <div id="message" class="info">
    
    </div>
    

    Add this:

    
    
    jq('.pixelMonitor').remove();
    jq(document).unbind('scroll');
    
    

    :::::::::::::::::::::::::::::::::: END OF THE UPDATE ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

    Hi, all, @naijaping @abysshorror @funmi-omoba

    I finally found the time to work on this. I’ll post a detailed explanation on my blog later but here it goes for you to be able to use it right away. I’ll maybe make a plugin of all this, and some code you’ll have to tweak will be overridden if you update your buddypress theme but by that time I hope this will be improved and I’ll post to you back with the updates.

    So:

    
    1) Edit the file: /wp-content/plugins/buddypress/bp-themes/bp-default/activity/activity-loop.php (around line 38) This assumes you're using the default theme, if not, do it in your other theme file.
    
    // Change:
    
    <li class="load-more">
    <a href="#more"></a>
    </li>
    
    // For this:
    
    jq('.pixelMonitor').remove();
    jq(document).unbind('scroll');
    
    // 2) Add this at the bottom of that file:
    
    <div class="pixelMonitor" style="width: 1px;height: 1px">
    <div id="loadingActivityMessage" style="background-color: white;float: right;height: 16px;padding: 4px 2px 4px 39px;width: 100px">Loading...</div>
    </div>
    
    /* Auto load more updates at the end of the page when reaching the bottom of the page */
    
    jq(document).ready( function() {
    
    iterationAllowed = true;
    
    function loadActivityOnScroll(){
    
    jq("#loadingActivityMessage").show();
    
    if ( null == jq.cookie('bp-activity-oldestpage') )
    jq.cookie('bp-activity-oldestpage', 1, {path: '/'} );
    
    var oldest_page = ( jq.cookie('bp-activity-oldestpage') * 1 ) + 1;
    
    jq.post( ajaxurl, {
    action: 'activity_get_older_updates',
    'cookie': encodeURIComponent(document.cookie),
    'page': oldest_page
    },
    function(response){
    jq("#loadingActivityMessage").hide();
    jq.cookie( 'bp-activity-oldestpage', oldest_page, {path: '/'} );
    jq("#content ul.activity-list").append(response.contents);
    
    }, 'json' );
    
    return false;
    
    };
    
    jq(document).scroll(function(){
    
    if ( Math.round(jq('.pixelMonitor').last().offset().top) > ( jq(document).height() -500 ) && iterationAllowed === true ) {
    loadActivityOnScroll();
    iterationAllowed = false;
    setTimeout('iterationAllowed = true', 3000);
    };
    
    });
    
    }); /* Auto load more activity block ending here */
    
    

    Hope you enjoy it. In near future I hope I’ll have it as a plugin and I’ll post it here to let you know.

    Some demo: http://www.horizontea.com/ (scroll to the bottom to see in action).

    PS: I’m not saying this is bug free, but will not affect any data on your db or installation, it just tweaks the interface ;) Cheers!

    PS 2: As soon as I check the “WP/BP” way to add this code to the file “automatically” (as a plugin) I’ll update it.

    #133664
    JLent.
    Participant

    Yes it was the installation wizard I was trying to go through I would of remembered that if I could get into my dashboard my apologies. I am using the BP default theme with a WordPress dating plugin from datingsolutions.biz. It was the BuddyPress Template Pack and when it tried to move the files automatically it failed and showed me steps to do it manually, that’s why I used Filezilla.

    @mercime
    Participant

    @kristopherlouie before I do anything, you have a closing “ at the beginning and ending of your footer.php file – not kosher. Please confirm if issue is corrected with the removal of “ at the top of the footer.php file.

    #133661

    So I was able to remove the button for “leave group”. For those who may want to do the same just remove the following from line 50 of the group-header.php file in your buddypress theme.
    `

    `

    Will post here if I figure out how to remove the other buttons.

    #133659

    In reply to: Ouch! Help

    @mercime
    Participant

    == I can’t found where can i edit: Log in to Reply ==
    @helpme2012 what exactly do you want to do with “Log in to Reply” – revise it or remove it?

    #133658
    Slicklips
    Member

    Hey thanks for getting back to me, I tried changing back to Buddypress default and the same problem remains.

    @mercime here you go…

    page.php http://pastebin.com/SMtEKWCJ
    header.php http://pastebin.com/7FPEKL2D
    index.php http://pastebin.com/P0vx5cta
    footer.php http://pastebin.com/suyUEvDf
    sidebar.php http://pastebin.com/8Pg4zcc9

    Thanks for checking this out

    #133655
    @mercime
    Participant

    Which forum content – Group Forums (internal bbPress for BP) or the Sitewide Forums (bbPress plugin)?

    #133653
    @mercime
    Participant

    @wewetho I see organizational structures, slide presentations and the like. You’re missing an online donation page (or did I miss that?). Curious: Where is the main HQ of ESF located? Telephone number/s? Who or what companies sponsor this organization? Good luck.

    #133652
    @mercime
    Participant

    WordPres/BuddyPress versions? I recall that issue was already resolved.

Viewing 25 results - 31,251 through 31,275 (of 69,103 total)
Skip to toolbar