Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,576 through 19,600 (of 94,540 total)
  • Author
    Search Results
  • #239507
    PersepolisTehran
    Participant

    I changed this note “Registering for this site is easy. Just fill in the fields below, and we’ll get a new account set up for you in no time” to my custom note, and i changed “Blog detail” to “Profile detail”. Then i made 2 file : 1) – buddypress-en_US.mo . 2) buddypress-en_US.po and i uploaded both to /wp-content/languages/plugins/ .

    #239504
    PersepolisTehran
    Participant

    Hi danbp, I made some changes that I learned from https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/ , but nothing happened to my Register page.
    Thank you.

    #239503
    danbp
    Participant
    #239502
    danbp
    Participant

    Read the manual …

    Configure BuddyPress

    #239499
    Alvin341965
    Participant

    Hello, does anyone know why on a clean install of wp and bp… buddypress doesn’t work at all!!
    i use linux vps and root structure.

    when i click on profile or any other page it says:

    Not Found

    The requested URL /members/adminname/profile/ was not found on this server.
    The requested URL /members/adminname/forums/ was not found on this server.
    etc…

    please help!!!

    Kind regards

    #239497
    ashket
    Participant

    Whenever you try to make a new post in your activity feed or profile on budydpress there is already a block of words like

    “(a lot of spaces) >”

    In the field. Is there a way to get rid of this?

    @mcuk
    Participant

    Hi all,

    Found a couple of useful code snippets to change the ’15 minutes ago’, ‘1 day ago’ etc into actual times and dates on the activity stream. Might be useful so thought I’d post:

    https://gist.github.com/dzmounir/8706592
    (courtesy of dzmounir)

    add_filter('bp_activity_time_since', 'bp_activity_time_since_newformat', 10, 2);
    function bp_activity_time_since_newformat( $time_since, &$actvitiy ) {
     
            // you can change the date format to "Y-m-d H:i:s"
    	$time_since = '<span class="time-since">' .  date_i18n("F j, Y", strtotime( $actvitiy->date_recorded ) ) . '</span>';
    	return $time_since;
    }
     
     
    add_filter('bp_activity_comment_date_recorded', 'bp_activity_comment_date_recorded_newformat', 10, 2);
    function bp_activity_comment_date_recorded_newformat( $date_recorded ) {
    	global $activities_template;
    	
            // you can change the date format to "Y-m-d H:i:s"
    	$date_recorded = date_i18n("F j, Y", strtotime( $activities_template->activity->current_comment->date_recorded );
    	return $date_recorded;
    }

    There is the issue of the time being incorrect however (in my case, out by 1 hour). If i choose a city under WP Dash>Settings General>Timezone, the code found in the old forum post below can be used/integrated to correct the issue. But if the timezone is set to a UTC value, it doesn’t work.

    This old forum post discusses issue of incorrect post time:
    https://buddypress.org/support/topic/activity-time-is-gmt-activity-stream-posted-an-update-time-is-incorrect/

    So my questions are:

    1. Is there a way to always display the local user’s post time (even if they are international)

    2. What timezone setting should be applied in the back end on WP Dash in order to address this issue of incorrect post time (or is using the code above and specifying a city the only way)?

    2. If i specify a city which fixes the issue for me personally, does that mean another international site user would have wrong post times appear on their activity streams when they use it their end?

    Thanks

    WP : 4.2.2
    BP : 2.2.3.1

    #239493
    Henry Wright
    Moderator

    @amalsh

    None of what you have here relates to redirecting HTTP to HTTPS. I’m assuming you know that?

    #239491
    Hope
    Participant

    Yes I gave WordPress its own directory under the site root and Buddypress is working fine! My website is working fine from about a year an a half, the problem is in turning it into HTTPS which is not working :S

    #239490

    In reply to: Extending group fields

    danbp
    Participant

    Nothing ready to use avaible at the moment. Depends of your coding level…

    New Plugin Adds Taxonomies to BuddyPress Groups


    An old plugin, don’t know if it is still working: bp group reviews
    A different one, maybe: buddypress groups extras
    And a little read of the codex:

    Group Extension API

    Good luck !

    danbp
    Participant
    #239485
    danbp
    Participant

    Depends where wp is installed ! Usually at site root.
    See your WP settings (settings > general) if unsure.
    Remember also that BuddyPress does not work on installations where you give WordPress its own directory.

    Getting Started

    Mickey
    Participant

    Let me re-emphasize that Buddypress is awesome, but because its so awesome these little things which I would take for granted, simply stand out, at least to me an end user.

    Perhaps our perspectives are different and you guys are looking at it from coding standpoint, I do not, Im the end user and I am comparing buddypress to everything else out there.

    The only sites using just username are dating sites and perhaps some forum sites, sites where specifically people do not want to reveal their identities. If someone is running that type of a site than there are no issues.

    However, if I want a full name, I need at least two fields, username and then something for the full name, and ideally 3 fields, username/first name/last name, and that is weird, out of hundreds of sites I have signed up for I have never had to enter a username and name, that simply makes no sense for someone signing up, its confusing. For you guys who deal with buddypress for years perhaps its normal, but its not when you look around at everything else.

    Another thing is the avatar upload,again I dont think I ever encountered another site where I wasnt able to upload an avatar on registration. It may make sense from coding stand point or something else, from end user standpoint it makes no sense.

    Just my 2 cents, I love buddpress and thanks for your help as always.

    #239480
    #239479
    Dule95D
    Participant

    Hello BuddyPress,

    First, thank you for this plugin and second..

    Here’s my website: http://www.nadji-ekipu.org and my site is about teams(group in buddyPress), so i’m using BuddyPress for bringing that to others and i would like to have in groups one more button similar to button(send membership request) for challenging other teams(groups), but that button can send only Administrator of teams. Can someone help me with that?

    Also i would like to have in registration form of groups one more field where users could put place where are they from and that field to be shown in filter where you are searching other groups. Hope someone could help me with this?

    Thank you!

    navyat
    Participant

    I would like to add filter (orderby Latest,alphabetical etc) for members in group,Plz help me how to do it.
    My buddypress version is 1.2.7 and wp is 3.0.1

    #239476
    totorosk8
    Participant

    RESOLVED
    the problem came from the buddypress extended profil fonction.

    danbp
    Participant

    @minglonaire,

    i’m part of the one percenter who cares about well formed urls and a basic system which is working on 23% of www’s sites !

    If you have enhancement ideas, feel free to post in the appropriate forum or open a ticket on Trac.

    BP is only a WP plugin and doesn’t handle registration. On the other hand, WP use a very short registering form, containing 3 fields: username, email and password.

    First and last name are optionnal fields on the standard WP user profile. These fields are not mandatory, never appear on the registration page and it’s in the freedom of everyone to use them or not. When BP is installed, he provides a mandatory Name field, which can be used to enter a username or a first/last name.

    Even if i have no percentage to give you, i’m pretty sure that almost all users are satisfied to use a CMS which doesn’t ask them for real names at first ! And why not their address, blood group, gran’mother nickname or their mom’s phone number ?

    This are privacy options, and WP is smart enough to not abuse of such things, by default. Smart enough also to use the simpliest existing register routine, like all other major web operators, a username, a valid email and an encrypted password.

    Anything else is matter of flexibility, one of the major interrest to use BuddyPress. And definetly no, not all communities have members who knows each others. Don’t make you the spokeman of such behalf speculation. 😉

    I think you’re confused by system requirements and your own desires. To get it clear for the register aspect, read here please.

    Oh, and the answer to your question is here:

    Customizing Labels, Messages, and URLs

    Mickey
    Participant

    99% of people out there care about end functionality more than URLs, how does facebook solve it, -1-2 -3 is fine, and you can look at pictures if there are few with same name. Buddypress is a great product, no doubt about it, but it seems to cater to family style community where everyone knows each other, which probably explains lack of a basic function of blocking another member for example.

    I am not the only one who complains about usernames, if you go back on these boards people have been talking about inconvenience of this system for a long time. The same goes for avatars, I dont care what some of the guys here tell me, you need at least an option to have avatar upload on registration.

    Mickey
    Participant

    That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want. Most people I know actually deactivate the activity system. When they message the private message by clicking on profile, most communities are not the type everyone knows everyone, its actually the other way around, those types are in minority and buddypress seems to cater to them.

    Its actually a very simple solution, implement an option, with username and another one first and last name.

    #239466
    Japracool
    Participant

    How do you rewrite forum post title like in this forum?

    In here, you got…
    Topic:[Your Topic Title] – BuddyPress.org

    Simple and clean!

    On my forum, I got…
    Forum | Lowongan Kerja | JDA Community[Tanjung Duren] Dibutuhkan Segera Customer Service | JDA Community

    It’s so messy and it’s too long.

    I used Yoast WordPress SEO btw… Can anyone help me with this? Thanks before.

    Henry Wright
    Moderator

    Hi @minglonaire

    This whole username, name system in Buddypress is weird

    What do you think is weird about it?

    Mickey
    Participant

    This whole username, name system in Buddypress is weird, but it is what it is.
    Is there a way to change this text in account details on registration from,

    Username (required)
    to
    Fullname (required)

    Thanks

    totorosk8
    Participant

    Hi,
    i’ve been looking around, but i can’t figure why i have this problem.
    When i try to complete my registration i come back to the home screen, instead of going to the “activate” page. I checked on my buddypress options and the pages for register and activate are well indicated. I even tried the plugin “BP Disable Activation” but i always come back to the home screen and the user profile is not created.

    I’m on wordpress 4.2.2 with Buddypress V 2.2.3.1 .
    The Them is KLEO (the last version)
    all plugins are up to date :

    Allow PHP in Posts and Pages
    Bowe Codes
    BP Limit Group Membership
    Brozzme Cookie notification
    BuddyPress
    BuddyPress Group Plus
    BuddyPress Groups Extras
    Custom Contact Forms
    K Elements
    Open external links in a new window
    Postman SMTP (just for a test)
    Revolution Slider
    rtMedia for WordPress, BuddyPress and bbPress
    Taxonomy Metadata
    WPBakery Visual Composer
    WP Maintenance Mode
    WP Mobile Detect

    I tried to disable all the plugins, but still the same.
    When i try to register, i’m on another navigator and not logged on wordpress.
    Can some one help me please, i’m lost.

    Thanks a lot.

    #239451

    OK I was trying to solve the same issue as this:
    https://buddypress.org/support/topic/buddypress-integration-with-aweber/

    And apart from redoing the form in gravity forms there isn’t a solid solution for this so I built a plugin:
    https://github.com/vimes1984/buddypress_aweber_integration

    It’s a little buggy at the moment on the authentication side with the OAuth hence the lack of release on wordpress.org.

    But feel free to use it if the need arrises and I happily except patches and pull requests:D

    Chris

Viewing 25 results - 19,576 through 19,600 (of 94,540 total)
Skip to toolbar