Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 17,026 through 17,050 (of 31,071 total)
  • Author
    Search Results
  • #124201

    Does anybody know if U BuddyPress Forum Attachments and Editor is compatible with BuddyPress 1.5.1? Thank you!

    fancyfiber
    Member

    First thanks to Boone Gorges for the direction on how to get started with this. And for those looking for a complete answer. Add this code (or similar) to your Theme functions.php file (my apologies if there is a better way to paste code…first time posting here):

    function set_default_notifications($user_id, $key, $user) {
    $valueyes = 'yes';
    $valueno = 'no';
    
    $new_messages = bp_get_user_meta_key('notification_messages_new_message' );
    bp_update_user_meta( $user_id, $new_messages, $valueyes );
    
    $new_notices = bp_get_user_meta_key('notification_messages_new_notice' );
    bp_update_user_meta( $user_id, $new_notices, $valueno );
    
    $group_invite = bp_get_user_meta_key('notification_groups_invite' );
    bp_update_user_meta( $user_id, $group_invite, $valueyes );
    
    $group_update = bp_get_user_meta_key('notification_groups_group_updated' );
    bp_update_user_meta( $user_id, $group_update, $valueno );
    
    $group_promo = bp_get_user_meta_key('notification_groups_admin_promotion' );
    bp_update_user_meta( $user_id, $group_promo, $valueyes );
    
    $group_request = bp_get_user_meta_key('notification_groups_membership_request' );
    bp_update_user_meta( $user_id, $group_request, $valueyes );
    
    $mention = bp_get_user_meta_key('notification_activity_new_mention' );
    bp_update_user_meta( $user_id, $mention, $valueyes );
    
    $reply = bp_get_user_meta_key('notification_activity_new_reply' );
    bp_update_user_meta( $user_id, $reply, $valueyes );
    
    $send_requests = bp_get_user_meta_key('notification_friends_friendship_request' );
    bp_update_user_meta( $user_id, $send_requests, $valueyes );
    
    $accept_requests = bp_get_user_meta_key('notification_friends_friendship_accepted' );
    bp_update_user_meta( $user_id, $accept_requests, $valueno );
    do_action( 'bp_core_notification_settings_after_save' );
    
    }
    add_action('bp_core_activated_user', 'set_default_notifications', 10, 3);
    #124167

    In reply to: How to fix this?

    justbishop
    Member

    Is it only on profile pages? Are you using a child theme of BP, or a completely different theme? My first stop would be the stylesheet.

    #124159
    @mercime
    Participant

    Change to the BuddyPress default theme and see if same behavior applies

    #124157

    Thanks for the help. Made some headway. However, in the step 3 of the compatibility process it only listed 11 files to change. What are the other 5?

    There are still some outstanding formatting issues. There doesn’t seem to be a pattern to it either. Some of the edited files display wrong while some of them display right.

    As you login and go to your member profile it seems that only the setting tab looks correct. Notice where it puts your username in relation to your avatar. Sometime its to the right (this looks correct) and sometimes its underneath (this seems to be wrong with spacing issues).

    Again thanks for your help. Any thoughts?

    #124147
    oddzuki
    Member

    @mercime Thanks. I’m looking into it now. Looking at the groups-loop on the theme I’m using seems like it’s calling for it properly, but it’s still not showing. Will report back once I find out the issue. Hopefully it’ll help someone else.

    Edit: Looks like the “group-loops” are the exact same on the theme and the default theme. So I would assume that the issue is having the theme reference the default?

    #124135
    @mercime
    Participant
    @mercime
    Participant

    Site URL? Did you develop the customized BP theme or did you download it elsewhere? Some customized BP or BP-default child themes make it more complicated to change the layout while others are much easier to implement new layout.

    #124126
    @mercime
    Participant

    @im3sna No worries, I get what you mean. What theme are you using? If you are using a WordPress theme, then you have to install and activate the BP Template Pack plugin and go through the compatibility process.
    https://wordpress.org/extend/plugins/bp-template-pack/installation/
    https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    #124125
    @mercime
    Participant

    – Did you also upgrade to latest BP Template Pack plugin for your custom WP theme?

    – Have you changed to bp-default theme and checked whether same behavior applies? Or does it only happen when you have your WP theme with BP Template Pack?

    #124124
    @mercime
    Participant

    @brygiles please start a new topic where you should also provide more information so we can assist you. Like: WP/BP version? WP theme used? Site URL? https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/

    @candy2012 Sorry for the inconvenience, this site is in transition. In the meantime, Google has indexed our forums pretty well. e.g. Google BuddyPress.org candy2012 and some keywords

    #124113
    @mercime
    Participant

    == I have installed randy candy! ==
    Sorry, the developer has not updated that theme for BP 1.5 compatibility
    https://codex.buddypress.org/releases/1-5-theme-compatibility/

    #124106
    brygiles
    Member

    Please.. i need help… don’t know how to get my way around here..
    how do I change the front color or the background color of buddypress in wordpress theme? How can i extend membership sign up questions?

    tHANK YOU

    @mercime
    Participant

    WP/BP versions? Change to bp-default theme to check if it’s an issue with your custom theme. If that’s not the case, then deactivate plugins except BuddyPress to check if it’s a plugin conflict.

    #124064
    Paul Wong-Gibbs
    Keymaster

    It would be nice to build out the default theme’s search options for this sort of thing, but it’s not a high priority :)

    tjchester
    Member

    @boonebgorges Hello, I am working with a user on our theme forum with this same issue. I have replicated it, my support user informs me that this started to happen when he update Java, as in Sun Java…not sure how this relates to javascript if it does but may be a way for you to replicate this issue. What I am finding is that the read more link does not populate itself so it just stays as […]

    I am not sure what exchanges the […] with Read More but I think that is what is broken. I would be happy to help you to replicate this issue. Let me know what I can do to help you troubleshoot this issue.
    Thanks!

    #124046
    @mercime
    Participant
    #124044
    @mercime
    Participant

    Looks like you have not completed Step 3 of the BP Compatibility process – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles

    In your case, you have to use the first method – i.e. changing 16 BP template files – to fix alignments and spacing – per your questions #1 and #2 above.

    Download the 6 BP folders transferred to your Memo theme folder in server down to your computer hard drive. Starting from activity/index.php, open this file and make the following changes:

    At the very top of the file, replace:
    `

    `

    with [UPDATED replaced hentry-content with entry-content]
    `

    `

    at the very bottom of the activity/index.php file, replace
    `

    `

    with
    `

    `

    Save file and continue with replace the same with the remaining 15 files.

    For registration.php, replace the bottom area
    `

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

    `

    with [Updated this whole block]

    `

    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 and upload folders to theme folder

    I found the solution. (I didn’t actually solve it in 2 hours – there were a good 16 hours poured into this issue before my post.) Two very important things.

    1. Be sure to include the `_inc/ajax.php` file – from the BP default theme – BEFORE the ‘init’ action. The action hook ‘after_setup_theme’ will work.

    2. Retain `wp-load.php` as the AJAX url in `global.js`.

    After these two steps (and 18 hours of frustratingly trying everything else) it worked like a charm.

    #124018
    jonnyscholes
    Member

    Are you sure that didnt work? Because they both work my end [though method on is not a good idea unless you want to disable them completely that class is used in a few places] Are you modifying the default theme files or using a child theme?

    #124015

    Thanks mercime. You ask and you shall receive.

    volunteer login
    username: friend
    password: friend1234

    pastebin
    http://pastebin.com/dTn7dEwK

    Again thanks for the help.

    #124014

    I just installed wordpress 3.1 and then I installed buddypress, and the Fishbook theme, nothing else, when I try to post a comment I get the same page not found error, with both the default theme, and the fishbook theme.

    #124012
    @mercime
    Participant

    == I have Memo Theme from ThemeForest as my theme. … Sorry you gotta register as a member. ==
    You should make it easier for volunteers to assist you with your theme issues by providing a “throw-away” username/password to your site. You could later delete said account from your install or change password after everything’s resolved.

    Also, volunteers who help out here are not likely to purchase the Memo theme just to help you out. Open up your theme’s page.php file, Select All > Copy and go to pastebin.com and paste source then click submit. Post the generated pastebin URL here.

    #124007
    @mercime
    Participant

    No, you do not add enable_multiblog at all. It just so happens some have added enable_multiblog and were surprised with the redirect to main site.

    Going back to your problem, are you using the same theme your main site and subdomain sites? Or using different themes?

    #124006
    dude
    Member

    i think it’s – wp-content/plugins/buddypress/themes/default/activity/post-form.php

    theres two lines with what’s new, i changed the the second one down and it worked for me.

Viewing 25 results - 17,026 through 17,050 (of 31,071 total)
Skip to toolbar