Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 32,076 through 32,100 (of 94,540 total)
  • Author
    Search Results
  • lannagung
    Participant

    uddyhi,
    i am use Buddypress 1.7.1 and WordPress 3.5.1

    i want integrated / combine activity ( whats new ) post and comment with facebook and twitter ?

    i use plugin buddystream but it’s not i want. i want combine it?
    can buddypress do that’s thing? if can which plugin suport with activity what’s new ?

    sry for my bad english i hope u understand what i mean.

    than’s anyway

    conanchan
    Participant

    I’ve installed and activated BuddyPress 1.7.2 and bbPress 2.3.2 on WordPress. When I tried to submit a topic in Group Forum, the page was redirected to the blank one with a message on the title bar of the browser as:

    [b]Fatal error: Call to undefined function bb_get_id_from_slug() in C:\Apache\htdocs\wordpress\wp-content\plugins\buddypress\bp-forums\bp-forums-functions.php on line 168[/b]

    Then I searched in the source code, and found such function in “.\wp-content\plugins\buddypress\bp-forums\bbpress\bb-includes\functions.bb-core.php”

    Anything I need to add to the plugins to solve this problem?

    @mercime
    Participant
    #164412
    ozkan199
    Participant

    Buddypress more than press isin’t it?

    #164411
    lgny
    Participant

    @mjbenzon is that theme available anywhere? I would love to use that.

    #164408
    beespotted
    Participant

    Hey guys, could you at least suggest which files I have to “play with” to obtain the desired effect? Where can I find some kind of “higher level documentation” like a diagram or something to understand how things work in BuddyPress?

    #164406
    @mercime
    Participant

    @lorimercer re groups in admin area the issue is being addressed in trac starting with this ticket https://buddypress.trac.wordpress.org/ticket/4977

    #164396
    Famous
    Participant

    Group invites say they are being sent, but are not.

    1. Which version of WordPress are you running? 3.5.1

    2. Did you install WordPress as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? yes the previous

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. cannot say for sure

    6. Which version of BP are you running? 1.7.2

    7. Did you upgraded from a previous version of BP? If so, from which version? yes previous

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? group blogs

    9. Are you using the standard BuddyPress themes or customized themes? twentytwelve

    10. Have you modified the core files in any way? no

    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? 2.3.2

    13. Please provide a list of any errors in your server’s log files. none

    14. Which company provides your hosting? godaddy

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? lamp

    PMWebDevelopment
    Participant

    Found the problem in Preview.CSS

    Line 1: webkit-user-select: none; was causing the problem. If I delete this, it works.

    #164390
    caspergrimaldi
    Participant

    This is the link about the sidebar. https://buddypress.org/support/topic/sidebar-issues-2/

    My host is go daddy (VERY SLOW)

    #164385
    @mercime
    Participant

    @caspergrimaldi have you tried deactivating plugins (I see a lot activated in your site) one by one on your site to check which one is conflicting with BuddyPress?

    @secuip glad you resolved the issue on your own 🙂
    Tip: next time, it would be better if you created a new topic for your issue so that it could be seen right away.

    PMWebDevelopment
    Participant

    I am running the latest version of WP and the latest version of Buddypress. When you are on the activity page, and try to type in the textarea, there is no cursor and you can’t type in the box. Here is the HTML code. It works in Firefox but not chrome.

    <div id="whats-new-content">
    		<div id="whats-new-textarea">
    			<textarea name="whats-new" id="whats-new" cols="50" rows="10"></textarea>
    		</div>
    
    		<div id="whats-new-options">
    			<div id="whats-new-submit">
    				<input type="submit" name="aw-whats-new-submit" id="aw-whats-new-submit" value="Post Update" />
    			</div>
    #164374
    @mercime
    Participant

    but I can’t get the “Create Group” button to show

    @gebgem the page title is missing as well. Looking at the Sample Page of your site, there was no page title added to the theme’s page.php file at all.

    BuddyPress will provide another link/way for users to easily create a group/blog via user account menu in admin/toolbar in next version https://buddypress.trac.wordpress.org/changeset/7062 but the page title issue should be fixed by theme developer.

    #164372
    modemlooper
    Moderator

    It’s just not a core issue with BuddyPress and dives into the customization of BP. Unless someone has specifically needed to do this in the past no one will be likely to help you.

    I would either put out a call to hire if you can not get it to work or possible post at woo or try something like http://stackoverflow.com

    It really shouldn’t be that hard. Create a cpt loop on the front page of the group and then where you call the post type return the group name that matches the cpt

    $cpt = some code to get the group name
    $args = array( 'post_type' => $cpt, 'posts_per_page' => 10 );
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post();
    	the_title();
    	echo '<div class="entry-content">';
    	the_content();
    	echo '</div>';
    endwhile;
    #164370
    @mercime
    Participant

    @patrykos360 Your users have to log in at least once after BuddyPress is activated

    Matt Edminster
    Participant

    Using a tutorial offered by @modemlooper back in ’10 I set up a custom frontpage for our organization’s bp groups which draws from pages with the same name as the group.

    So the group ‘bicycles’ populates its frontpage with content from the page ‘bicycles’ (which is a child page of ‘groups’).

    I am now upgrading the site to the Canvas theme by woothemes and would like to use their built-in portfolio custom post type with its nice gallery feature to do the same thing. Following the old rules, I set up things just as before. Then I re-registered the ‘portfolio’ post type as ‘groups’ and copied the single-portfolio.php file content into my groups front.php. Then a created a bunch of portfolio items with names matching existing bp groups.

    The result is that instead of displaying the custom-post-type content, the group front page displays the content of the group again. I assume this is happening because of the way the new theme compatibility hijacks the_content(). That would mean that when it sees the_content() in front.php, it loads the group again rather than the post content.

    Am I on the right track? Any suggestions on how to either fix my problem or take a new approach altogether?

    #164364
    Patryk
    Participant

    Hi, I had once installed BuddyPress but it removed, Now I decided to go back to it

    I have a problem When I go to the list of users I see only a few users ;/
    normally have three times more users why they do not show up?
    I need to upgrade something or what?

    #164362
    LogicWolf
    Participant

    Ok, an update. I did manage to track down the objects where this information is stored. It’s not handed to you on a plate by any means!

    I will post the code after I clean it up a bit, but if anybody is suffering through this here is a hint:

    1. Hooks are in different places for core vs plugin Group tabs

    2. Controls for the core “built in” tabs are handled and stored in bp_options_nav

    3. Group tabs added by plugins, if done properly, are created by extending BP_Group_Extension. The extended objects are added to the action stack via add_action. This places references to the instantiated object in the $wp_filter global. So… to change attributes like nav position, you have to crawl through the $wp_filter array, find the objects, check the class, and make the change right there in $wp_filter.

    Messy! I feel like I just took apart a car engine just to turn the windshield wipers off. But the dang Group tabs are reordered and renamed.

    #164345
    @mercime
    Participant

    @naturalworldstm BuddyPress uses your theme’s page.php file for Theme Compatibility. If the page title, the_title() , is not within the WordPress Loop, then you won’t see the “Create Blog” nor “Create Group” buttons as well as the Nice Names.

    #164342
    @mercime
    Participant

    the topic created is not showing any post created by the user in bbpress, only just shows “Viewing 2 topics – 1 through 2 (of 2 total)”. Is there a way to solve this issue?

    The topics created by the user should show up. Use Twenty Twelve theme to double-check.

    WP/BP versions? Did you set up the Sitewide and/or Group Forums? https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/

    #164341
    LogicWolf
    Participant

    Not much luck with this so far 🙁

    I can track down the creation of new Group tabs in the plugins by looking for extensions of BP_Group_Extension. So for some of the tabs at least, in a pinch, I can edit the plugin code directly but this is a messy solution in my opinion…

    Any suggestions on how I might find the Group tab hooks would greatly be appreciated!

    hiboy
    Participant

    I got a tab called forums in each user buddypress profile, the topic created is not showing any post created by the user in bbpress, only just shows “Viewing 2 topics – 1 through 2 (of 2 total)”. Is there a way to solve this issue?

    Or how do i remove the forums tab?
    Do I edit from bbpress plugin or buddypress or my theme directory?
    I still considerating whether to use this theme, For example this theme http://para.llel.us/themes/salutation-wp/members/admin/forums/, how to remove topics started and replied to?

    if i want to create a sub menu , which a link to each individual user profile when they login, how do i achieve it?

    andy_blanc
    Participant

    Hey guys,

    I have a really puzzling conflict somewhere. BuddyPress was working fine until I installed a plugin called ‘TCH BP Posts On Profile’. It seemed to try and load entire post content within the tab before crashing the site so i removed it. I then stumbled across BuddyBlog and tried that. BuddyBlog does the same but without crashing the site (loads all post content within a tab).

    http://listble.com/members/paul_menz/buddyblog/

    I disabled all plugins except BuddyBlog and BuddyPress with no change. I then tried the “2012” theme which also had the same issue (so I can rule out my theme files??) but the demo theme that comes bundled with BuddyPress worked fine with BuddyBlog and displayed the user posts correctly.

    The fact that both plugins seemed to be effected in the same way seems to indicate that they’re not the issue.

    I’ve tried uninstalling/reinstalling all effected plugins.

    Anyone have any thoughts?

    Running:
    Wordpress 3.5.1
    BuddyBlog 1.0.1
    BuddyPress 1.7.2 (just upgraded from 1.7.1 which had the same problem)

    #164330
    secuip
    Participant

    Hello,
    I’m french new user of buddypress.
    I have exactly same problem.
    I have :
    – reinstall
    – delete .htaccess
    – change navigator
    – change webserver (wamp to ovh)
    – modify url rewriting
    And it’s always not ok…

Viewing 25 results - 32,076 through 32,100 (of 94,540 total)
Skip to toolbar