Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 65,126 through 65,150 (of 69,039 total)
  • Author
    Search Results
  • #45649
    gpo1
    Participant

    @M , you are good…. Can you create a page for followers avatar with tweets updates etc?

    #45648
    fi3ryfalc0nZ
    Participant

    Yes, Jeff. I checked. It is just that I am getting errors clicking on members, profile etc. I can’t use the BuddyPress Features at all.

    #45647

    In reply to: extended profiles

    2903192
    Inactive

    You can add new profile fields in the bp menue in your WPMU admin area.

    Open there the Buddypress menue and click “Profilefelder” (I guess you are German) ;)

    A http://-entry will be displayed automatically as a Link.

    #45645
    2731640
    Inactive

    hmmm… any ideas?

    What tables there should be in the database when using buddypress+wpmu+bbpress?

    I noticed that i don’t have any table for bp-forums. It was mentioned in some topic here to check out the bp_forums table (not the same problem as mine though) and I just checked tables and noticed that one is actually missing.

    How that can be? I have not deleted it. And forums worked fine some time ago, but now they don’t. Before this problem I was able to create new groups in BP and they was created to bbforums as well. Now I can create new groups too, but bbpress doesn’t find them. I can post a new topic and reply posts in bbpress, but not in BP forums.

    If I try to post a new topic or reply I get a red error message: “There was an error posting that topic.”

    #45644

    This is how I made them play nice together also. As a matter of fact, I commented out that filter entirely with no adverse effects, and instead hooked a few other of the BuddyPress URL making functions.

    I’ll be working more on this tomorrow so I’ll post some details in this same post at that point.

    #45643
    2908083
    Inactive

    Hmm … problem in the link. If after the group-avatar to /, the page opens … How to configure .htaccess, that would always open group-avatar/ and change-avatar/?

    #45639
    2908083
    Inactive

    This page does not work when you turn off boot avatar to the server as you https://buddypress.org/developers/***/profile/change-avatar

    #45638
    2908083
    Inactive

    No, I do not help. GD libary installed and the correct permission blog folder.

    #45637

    In reply to: RC2 Upgrade issues

    dbascent94
    Participant

    Hi Jeff,

    Sorry for my absence, it has been a busy few weeks. Susequent to my last post I have installed and reinstalled bbPress several times. Everytime I am able to get integration working fine. Login in both BuddyPress and bbPress is synchronized, posts made in groups show up in bbPress. Posts made in bbPress show up in BuddyPress groups. All copacetic.

    The problem is that none of that activity is recorded in the site wide activity widget. Bummer. I have deactivated the forums system for the time being.

    I am running WPMu 2.7.1 and BuddyPress 1.0 with bbPress 1.0 alpha 6.

    Thanks for your interest.

    #45635
    Mark
    Participant

    @Scotm : You’re using P2 as your home theme – is there way for users to get to their Settings page (as seen in the default BP theme) ? I ask because in order to tweet to Twitter a username and password is required, so a user has to configure that somewhere first.

    With this plugin, it adds a new item to the Settings menu so that users can config their username and password. So if you’re somehow integrating the Settings menu into your site and users can access it to configure their Twitter login info then I can add a template tag that can be used in P2 so that you can easily add the required HTML elements to your P2 post form to cause a ‘tweet to twitter’ feature to work pretty easily.

    So in short it’d work like this: You include the template tag in your post form template code and that tag will insert a checkbox that says something like “Also tweet this to Twitter”. If the user checks the box when making a post then a tweet will be sent to Twitter. And if they don’t have their Twitter login info configured then the checkbox won’t even appear in the form. Instead there would be a short message like “You can tweet this to Twitter if you configure your Twitter user name and password in your profile settings”

    #45633
    Mark
    Participant

    Tweet search widget for blog sidebars is complete. On to P2 integration possibilities….

    #45632
    takuya
    Participant

    This is probably the 3rd post asking about buddypress.org theme. People should search carefully before posting.

    There’re millions of css resources and samples on the net, and one can easily create or at least change a part of the theme to what they want. bp has custom.css and site-wide.css system which you can add/override css.

    #45630
    Mark
    Participant

    Tweet from Wire added today. Working on search for a sidebar widget now. Then we’ll have a look at P2 integration needs.

    #45629
    jfcarter
    Participant

    I like the default member theme and appreciate all of Andy’s hard work. I’m sure there are many more excellent updates to come!

    My $.02

    #45626
    Marcin Biegun
    Participant

    it seems that there is problem with storing of user activity, any help with coding or testing?

    #45625
    gaetanbuddypress
    Participant

    Hello!

    I’ve just tried this plugin: https://buddypress.org/forums/topic.php?id=381#post-1515

    And it’s actually not working. When I activate the plugin, the group forums disappear in all BP groups.

    Moreover, When I check the admin page of each BP groups, I can’t see the “activate forum option” anymore.

    I’ve tried to place the plugin in both bb-plugins and my-plugins directories.

    I’m using:

    WPmu 2.7.1

    BP 1.0 (oh yeah!;-))

    bbpress 1.0 alpha 6

    Am I the only one having this problem? Maybe the plugin is not working with the last version of BP?

    Thanks a lot!!

    Gaetan

    #45624
    Marcin Biegun
    Participant

    To divide groups: suppose that similiar:

    -…

    – change in bp-groups.php groups_Setup_globals function:

    <br />
    $bp->groups->table_name = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_groups';<br />
    $bp->groups->table_name_members = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_groups_members';<br />
    $bp->groups->table_name_groupmeta = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_groups_groupmeta';<br />

    (not checked)

    Making bp-messages and bp-xprofile sites-ready should be similiar but in my case i will let them be global.

    #45623
    Marcin Biegun
    Participant

    To divide blogs:

    – described above change to bp-core

    – change in bp-blogs.php bp_blogs_setup_globals function:

    $bp->blogs->table_name = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_user_blogs';

    $bp->blogs->table_name_blog_posts = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_user_blogs_posts';

    $bp->blogs->table_name_blog_comments = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_user_blogs_comments';

    $bp->blogs->table_name_blogmeta = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_user_blogs_blogmeta';

    #45622
    Marcin Biegun
    Participant

    How to separate activity for each site:

    – similiar change to bp-core.php as above

    – change in bp-activity.php function bp_activity_setup_globals()

    $bp->activity->table_name_user_activity = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_activity_user_activity';

    $bp->activity->table_name_user_activity_cached = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_activity_user_activity_cached';

    $bp->activity->table_name_sitewide = $wpdb->base_prefix . BP_ROOT_BLOG . '_' . 'bp_activity_sitewide';

    -i don’t know why, but there was also necessary to comment this lines in bp-activity-classes.php function save() (what, as i suppose, may cause some problems):

    //if ( !$this->item_id || !$this->user_id || $this->is_private || !$this->component_name )

    //return false;

    #45621
    Lance Willett
    Participant

    For blog posts, subscribe to https://buddypress.org/feed/.

    The site-wide activity feed is https://buddypress.org/activity/feed.

    #45620
    2917214
    Inactive

    In beta mode:

    http://tightbeam.net

    #45618
    abcde666
    Participant

    @Mixicoverdad

    I just clicked on your website.

    Is your website really being hacked ?

    If yes, then it seems BuddyPress is not really save !???

    #45616
    suleiman
    Participant

    good call djpaul, just wanting to post an update incase anyone else visited this thread with the same issue, that it is in fact still a problem for me running the latest version of BP and wpmu. I’ll start a new thread and link it back to here.

    lkinnyc
    Participant

    I have the same question. I’d like to add a bit to the standard template then have that template be the default template for people who create a blog. So, they will be able to make posts but not change the template.

    #45613
    ndrwld
    Participant

    I’ve one really important question – Can we use certain CSS code pieces of buddypress.org theme in our themes?

Viewing 25 results - 65,126 through 65,150 (of 69,039 total)
Skip to toolbar