Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 33,726 through 33,750 (of 94,540 total)
  • Author
    Search Results
  • #159800
    Panoravu
    Participant

    Not even one response?? :/

    Come on guys… There must be something… 🙂

    #159793
    @mercime
    Participant

    @splendidangst an alternative to complete theme change per profile, you might also consider allowing users to change their profile page background. Then go further and allow groups to change group’s background as well 🙂

    #159792
    @mercime
    Participant

    @tosen haven’t used woo-tumblog plugin. There’s a free plugin http://buddydev.com/plugins/buddyblog/ which will allow BP members to post from front-end in their profile areas. So instead of hiring a dev, you might like to donate to the plugin author instead 🙂

    binutz
    Participant

    Is there any way to hide sidebar from the “register”page?
    I tried editing style.css and register.php in my child theme but failed to see any result.

    I added following script in my style.css -“body.registration #sidebar { display: none; }
    body.registration div#content div.padder { margin-right: 0px; border-right: none; }-
    I am using WP.version -3.4 and Buddypress 1.6.
    Please help.

    #159779
    Pete Deane
    Participant

    Hi

    I’m new to buddypress and have been unable to find a way to add a file upload feature to a user profile.

    I’m creating a client and candidate management system for a recruitment agency, all users managed by admin. They require the ability to add a cv document to a candidate profile.

    Any help would be greatly appreciated.

    Thanks

    SydneyDesigner
    Participant

    I’m testing BuddyPress with 1.7-rc1 bbPress 2.3-rc1 on WP3.5.1.

    I’m building a BuddyPress Default child theme and may have encountered an issue with bbp_get_topic_id().

    Can bbp_get_topic_id() be used to get the main topic id from a Buddypress group>forum>topic+replies page?
    If yes, then how? (a quick code line example please)
    If not then how else should this be done?

    Thank you.

    #159777
    tosen
    Participant

    Goodday everyone,
    i we appreciate it if any expert here can share his opinion on this issue.

    i hire a freelancer to integrate the WooTumblog tumblr style posting to my buddypress site front-end but after wrestling with it for about 3 day he suddenly giveup and told me there is no solution for it. this happen when i hire another developer. what is going on here? is it true that is not really possible?

    sorry for my bad English.

    http://wordpress.org/extend/plugins/woo-tumblog/

    #159776

    In reply to: Buddypress 1.7

    bobsgt
    Participant

    All is well. BuddyPress shows up in the sites. Not being experienced with BP, I did not know what to look for. Thanks for the prompt response

    #159773
    damienoneill2001
    Participant

    Hey all!

    Hopefully a quick one for you.

    I have 3 different Member Directories on my site created using BuddyPress User Account Type Lite plugin. I am hoping to add a filter/search at the top of the lists to filter by one of the Profile Fields. I am using BP Profile Search plugin which is working to some degree.

    At the moment, it is at the top of all the Member Directory lists, however it is not displaying the correct results on two of the directories. The results which display are for the original directory. I have tried changing the Filtered Members List value in Users -> Profile Search, Advanced Options tab as per the documentation but this has not helped.

    You can see the issue here at the following locations:

    http://adoptapet.ie/rescues
    http://adoptapet.ie/pounds
    http://adoptapet.ie/vets

    The resuces page was the original directory on the site, the pounds and vets pages are the second and third ones created. If a search is carried out on pounds or vets, it displays the results for rescues.

    I am using WP 3.5.1, BP 1.6.4 and BP Profile Search 3.2

    I hope someone can help!

    Cheers

    Damien

    #159772
    WesMantooth
    Participant

    Thank you for taking the time to respond. I will begin the process of seeing if a plugin is interfering with the buddypress function.

    Just FYI, I tried it with the default BP theme and it gave me the same message.
    When I installed BuddyPress I never got the “install wizard” the codex is talking about. I installed Buddypress about a year ago for a few days and now am trying again, could this be an additional clue to why it’s not working?

    If so, how do I get the installation wizard to pop back up? (I’ve deactivated, deleted buddypress, and reinstalled with no installation wizard coming up).

    Thanks

    #159761
    danbpfr
    Participant

    hi @talitaco,

    BP 1.7 introduce a new template era.
    So for child theme, you don’t have to add the import comments to styles.css

    You also need to read and read and read, untill you get it, the Codex:
    https://codex.buddypress.org/theme-compatibility/add-buddypress-styles-to-a-theme/
    https://codex.buddypress.org/developer-and-designer-information/

    #159759
    danbpfr
    Participant

    @ryanram99

    Don’t do that ! WP use emails for login process and BP use it for avatar showing and some other core routine.
    And if you wanna filter something in BP or WP, learn a bit about doing this correctly.

    https://codex.buddypress.org/developer/developer-docs/action-reference/
    https://codex.buddypress.org/developer/plugin-development/group-extension-api/
    https://codex.wordpress.org/Plugin_API
    http://wp.tutsplus.com/tutorials/plugins/fast-buddypress-development/

     

    #159758
    talitaco
    Participant

    latest version of wordpress
    buddypress 1.7

    so i’ve opened a folder in themes named it “silver” added new file style.css and copied the following
    /*
    Theme Name: silver
    template: bp-default
    Author: tali
    Description:lets start
    Version: 1.0
    Tags: buddypress, two-column, grey, dark

    */
    /* Inherit the default theme styles */
    @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
    /* Inherit the default theme adminbar styles */
    @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );

    body{
    background-color:red;
    }

    the silver theme was activated but the body color did’nt change:(

    after reading all the similar threads on this subject i added a file functions.php
    and the code is:
    if ( !function_exists( 'bp_dtheme_enqueue_styles' ) ) :
    function bp_dtheme_enqueue_styles() {
    // Bump this when changes are made to bust cache
    $version = '1.0';
    // Register our main stylesheet
    wp_register_style( 'silver', get_stylesheet_directory_uri() . '/style.css', array(), $version );
    // Enqueue our main stylesheet
    wp_enqueue_style( 'silver' );
    }
    add_action( 'wp_print_styles', 'bp_dtheme_enqueue_styles' );
    endif;

    still nothing:(
    what am i doing wrong?
    how to change styles?

    #159757
    danbpfr
    Participant

    @wesmantooth,

    you have to test first the default install. WP and BuddyPress with bp-default template.
    Don’t forget to activate all BP components and to SAVE after each step.
    Read also (again ?) here before: https://codex.buddypress.org/legacy/configuring-components-v1-6/

    If you have some plugins, you activate them one by one, and test again your install between each step.

    If this config works, you can install your theme and test again.

    So you will rapidly be fixed.

    #159753
    danbpfr
    Participant
    #159752

    In reply to: Buddypress 1.7

    danbpfr
    Participant

    @bobsgt,

    if you use a network install, no matter as subdomain or sub directory, it’s preferably to install BP on the main blog.

    On a standard MS, this means that WP is at the server root (ie. /xxx/xxx/htdocs/www/wp-content/)and BP installed as plugin in /wp-content/plugins/buddypress/ and network activated.

    Don’t install BP on each blog nore on the main blog and a network blog…. Installing BP on one of the sub blog, not the main blog, will be complex and very complicated in some case to manage with permalinks and redirections, except if you know what you’re doing, and specially if you use sub domain blogs.

    sdglhm
    Participant

    I’m creating a buddypress social network for A/L student. When user tries to register using name@example.com email, He will not receive emails from buddypress. If user is entered such email as name@gmail.com there is no problem at all. I can’t identify what is going on. Please help me to proceed.

    Thanks
    (wp and bp are latest versions)

    mattg123
    Participant

    @mercime thanks, makes everything a lot more simple by disabling the discussion component on buddypress. I also had a bug when activating ONLY the group forums with buddypress, for some reason it broke the group avatar uploader however this was fixed when I installed the site wide forums as well.

    #159740

    In reply to: Buddypress 1.7

    bobsgt
    Participant

    one issue resolved, one still open.

    Now seems to be working on the parent site. Had to add Search page and another page..seems to have cleared the issue.

    Still no evidence of a buddypress plug in on the subsite

    #159739

    In reply to: Buddypress 1.7

    bobsgt
    Participant

    Tried to install BB 1.7 rev. 6885 trunk
    This is a multisite installtion where wordpress is installed in a subdirectory named editions.

    Was able to network install, network activate and configure. Once completed, I went to the admin panel and tried to list all of my pages. The following warnings appeared at the top of the panel. The same error occurs when I try to list all posts. This occurs in the parent site.

    I have plugin activation allowed by sites but there is no evidence of buddy press in the subsite plugin list. The warnings are:

    Warning: preg_match() [function.preg-match]: Compilation failed: unrecognized character after (? or (?- at offset 3 in /home/surfingh/public_html/editions/wp-includes/class-wp.php on line 204

    Warning: preg_match() [function.preg-match]: Compilation failed: unrecognized character after (? or (?- at offset 3 in /home/surfingh/public_html/editions/wp-includes/class-wp.php on line 205

    Warning: preg_match() [function.preg-match]: Compilation failed: unrecognized character after (? or (?- at offset 3 in /home/surfingh/public_html/editions/wp-includes/class-wp.php on line 204

    Warning: preg_match() [function.preg-match]: Compilation failed: unrecognized character after (? or (?- at offset 3 in /home/surfingh/public_html/editions/wp-includes/class-wp.php on line 205
    ===========================================

    204 if ( preg_match(“#^$match#”, $request_match, $matches) ||
    205 preg_match(“#^$match#”, urldecode($request_match), $matches) ) {

    #159737
    Stedr85
    Participant

    When a user is logged in, the sub links in the Admin bar for Activity, Sites, Settings, Profile, etc. do not work on iOS mobile devices.

    I tested the sub links on buddypress.org on my iOS device, they also do not work.

    WordPress Version: 3.5.1

    BuddyPress Version: 1.6.5

    Website: http://www.yourmoti.com

    WesMantooth
    Participant

    Hello,
    I am just getting into BuddyPress, seems really neato, but ran into a few problems.

    I am using WordPress 3.5.1
    BuddyPress 1.6.5
    and the Prestige Dark theme (themeforest)

    I know this is not a buddypress theme, I followed the instructions contained int he compatibility plugin, and it ‘looks’ really nice.

    The Problem:
    I have two test accounts, I tried to add one as a ‘friend’ to the other and I get a message that says “Friendship could not be requested”. When I try to message it says there is an error, and when I click edit profile I get redirected to a page that doesn’t exist.

    It seems like there could be (I hope) and easy explanation, like it being a communication issue between my WordPress and buddypress, but I really cannot find the keywords that would allow me to find a solution to this problem in this forum or on google.

    I did find someone who said they had a similar problem, and it turned out there were database tables missing from his SQL, However, it looks like I should have all the database tables created that he was missing.

    Thanks for taking the time to read this, and helping.

    #159723

    In reply to: Cannot post drug names

    palmdoc
    Participant

    Hi @chouf1
    Thanks for the tip about checking with the host – will do. Here’s my configuration:
    Host URL: forum.mydobbs.net
    Site URL: http://forum.mydobbs.net
    Wordpress URL: http://forum.mydobbs.net
    Wordpress Version: 3.5.1
    BuddyPress Version: 1.6.5
    MultiSite Status: Off / Disabled
    Theme: BuddyBoss Child Theme
    Server: Apache
    Active Plugins: 39 (BuddyPress Edit User Profiles. 1.0; BP Group Management 0.5.4; BP Post Buttons 1.0; BP Profile Search 3.2; BP Unread Posts 0.8.0; BP Webcam Avatar 0.8; BuddyPress Activity Plus 1.4.1; BuddyPress Announce Group 1.3; BuddyPress Auto Group Join 2.2.1; BuddyPress Docs 1.3.3; BuddyPress Facebook 0.2; BP Group Documents 0.4.0; BuddyPress Group Email Subscription 3.3.3; BuddyPress Message Attachment 1.1; BuddyPress Mobile 1.5.2.3; BuddyPress Registration Groups 0.8; BuddyShare 1.2.1; BuddyPress Toolbar 1.5.1; BuddyPress Topic Mover 2.5.1; BuddyPress Usernames Only 0.58; BuddyPress 1.6.5; CubePoints Buddypress Integration 1.9.8.9; CubePoints 3.2.1; E-Newsletter 1.2.4; Events Manager 5.3.7; Export Users to CSV 0.3; FFF Cron Manager 0.7; Google Doc Embedder 2.5.6; HungryFEED 1.6.2; NextGEN Gallery Voting 2.4.1; NextGEN Gallery 1.9.12; s2Member® Framework 130221; Fast Secure Contact Form 3.1.8.1; Simple Popup Plugin 4.1; WordPress Chat 1.3.2.6; WP-FB-AutoConnect 3.0.1; WP Mail Options 0.1.10; WP-Polls 2.63; WPMU DEV Dashboard 3.2.5; )

    #159721

    In reply to: bp_add_friend_button

    jamiebrwr
    Participant

    I’m using BP Version 1.6.1

    Theme Name: Gratitude
    Description: A Beautiful community driven BuddyPress & WordPress Theme.
    Author: ZenThemes
    Tags: buddypress
    Version: 1.2

    Designed & Handcrafted by Chris Paul from Zen Factory
    All files, unless otherwise stated, are released under the GNU General Public License
    version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html)

    I haven’t changed anything. I thinks it’s been like this for awhile.

    Thanks

    #159717
    danbpfr
    Participant

    @ethane,

    can be done in buddypress/themes/bp-default/sidebar.php
    Make a copy of this file into your child theme.

    Add between line 17 & 18
    <?php  if ( is_user_logged_in() ):  ?>

    <div>your stuff here</div>

    <?php endif; ?>

Viewing 25 results - 33,726 through 33,750 (of 94,540 total)
Skip to toolbar