Search Results for 'buddypress'
-
AuthorSearch Results
-
March 6, 2017 at 10:07 pm #264534
In reply to: List of Group Member IDs
danbp
ParticipantThe first part of this topic gives a solution for your question:
https://buddypress.org/support/topic/access-xprofile-field-data-in-a-custom-page/March 6, 2017 at 6:02 pm #264531In reply to: Not getting BuddyPress registration emails
tonkymm
ParticipantNo. They are not in spam. My coworker contacted WPMU dev support and they seemed to not be able to send BuddyPress emails either. WordPress emails work, i.e. forgot password and registration through wordpress works.
https://premium.wpmudev.org/forums/topic/buddypress-emails-are-not-working
March 6, 2017 at 4:38 pm #264528In reply to: [Resolved] Registration Empty Page?
shallymartin
ParticipantI change the permalinks to http://festivals.my/%postname%/
so the correct link for the registration is http://festivals.my/register/Then I go to Setting > General > Membership and I tick anyone can register
Then I go to Setting > BuddyPress > Pages > Register and change the page to Register
Then I visit my site at http://festivals.my/ and click on register. Same thing happen. 404 Not Found.I am stuck here. =(
March 6, 2017 at 3:10 pm #264525danbp
ParticipantPlease read WordPress Codex and follow the install instructions.
Your issue is not related to BuddyPress.March 6, 2017 at 3:08 pm #264524In reply to: [Resolved] Registration Empty Page?
danbp
ParticipantInstallaling a plugin has nothing to do with settings!
And it is not possible that WordPress recommands to use/something/afterindex.php.
If it does, please give the link to that documentation.
Here the one related to htaccess. Normally this file is generated automatically the first time you install/activate WordPress. On a usual install, his content is “basic” (explained in the doc).Again, read through BuddyPress documentation.
In fact, you have nothing special to do, except to control bp’s setting and WP’s permalinks. It is probably there where you have “index” appearing wrong.
March 6, 2017 at 12:44 pm #264519In reply to: [Resolved] Registration Empty Page?
danbp
ParticipantHi,
No post on the net is useful for for me.
They’re tons on this forum, related to this same problem…
Which is not a problem, but you have to setup the BP pages correctly.
This slug is false (malformed):
http://festivals.my/index.php/register/index.phpis a document./register/is a folder. Do you have documents containing folders on your computer ? Certainly not. Why would you that a web server would be configured differently ?Read the install guide and the chapter related to “pages“, setup BP and activate the permalinks to whatever but “default”.
March 5, 2017 at 11:52 pm #264509In reply to: fatal error message
r-a-y
KeymasterYour theme is using an older BuddyPress function –
bp_is_member().Switch that out for
bp_is_user().March 3, 2017 at 10:11 pm #264490shanebp
ModeratorDid you try the repair tool?
In wp-admin > Tools > BuddyPress and selectReinstall emails (delete and restore from defaults).March 3, 2017 at 10:04 pm #264489Topic: Only admins can delete posts?
in forum How-to & Troubleshootingmasterfc
ParticipantIn buddypress only admin can delete post activity? I want yo have moderators users in my site.
March 3, 2017 at 3:18 pm #264484In reply to: Compatible with Enfold
The API Guys
ParticipantI don’t know what this means? Link?
I just see in the page of enfold that retirano
I don’t see how it loses compatibility with BuddyPress. AFAIK out of the box, Enfold doesn’t really have it. It needs to be customized in the child theme.
March 3, 2017 at 1:27 pm #264481In reply to: How to list all active members
danbp
ParticipantActive is the defaut status of the members directory. Member who never logged-in have a different meta key value as active users. Search the user_meta table to find the correct value name.
Once you have it, you can sort your directory by meta…March 3, 2017 at 1:13 pm #264479In reply to: Member Directory Order
danbp
ParticipantMarch 3, 2017 at 1:05 pm #264478In reply to: Sorting activity stream
danbp
ParticipantTake it as example. Read here if it helps:
March 3, 2017 at 9:00 am #264473In reply to: Trying to get property of non-object
danbp
Participant@airathalitov, yes you have 😉
you’re right but not in this case. PHP 7.x related issues can be reported on that ticket (7392).
See Paul’s answer on #7406.
March 2, 2017 at 11:17 pm #264469In reply to: Trying to get property of non-object
AiratTop
ParticipantMarch 2, 2017 at 11:14 pm #264468danbp
ParticipantMarch 2, 2017 at 9:48 pm #264466In reply to: Trying to get property of non-object
danbp
ParticipantHi,
there is a ticket where you can report your issue:
https://buddypress.trac.wordpress.org/ticket/7392March 2, 2017 at 12:33 am #264436In reply to: new feature: block duplicate posts to activity
ds123
Participanti wanted to add this to my own question …i’m seeing that wordpress has a duplicate comment check built into it ! that is perfect can it be used for buddypress activity?
March 2, 2017 at 12:09 am #264431In reply to: Change Text on Registration Page
Henry Wright
ModeratorTake a look at the Template Hierarchy article. The register.php template is the one you’ll need to modify.
March 1, 2017 at 5:53 pm #264330shanebp
ModeratorPlease use the
codebutton when sharing code.Take a look at
buddypress\bp-templates\bp-legacy\buddypress\members\single\profile.php
to see how files and functionality and html is loaded for profiles.March 1, 2017 at 5:50 pm #264329In reply to: [Resolved] Using BP_User_Query
shanebp
ModeratorAre you really using that approach for a single member id?
Anyhow, you should use this method instead:
https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/March 1, 2017 at 5:38 pm #264326In reply to: [Resolved] Unminified Javascript
qwertyzw
ParticipantThanks, this hack didn’t work out the way I hoped though.
I did manage to successfully swap out the .min.js with the .js but buddypress is exhibiting broken behaviour.
To be specific I’m swapping out bp-cover-image.min.js and bp-plupload.min.js with their unminified equivalents, and that’s breaking the cover photo step in group creation.
add_action('wp_enqueue_scripts', function () { /* * Unminified js breaking cover photo */ wp_dequeue_script('bp-plupload'); wp_enqueue_script('bp-pluploadz', plugins_url() . '/buddypress/bp-core/js/bp-plupload.js'); wp_dequeue_script('bp-cover-image'); wp_enqueue_script('bp-cover-imagez', plugins_url() . '/buddypress/bp-core/js/cover-image.js'); }, 100);March 1, 2017 at 3:23 pm #264320danbp
ParticipantHi,
try
bp_get_loggedin_user_link()More here: http://hookr.io/plugins/buddypress/#index=g&search=loggedin_user
March 1, 2017 at 2:03 pm #264317In reply to: How to set a testimonial page for members?
Henry Wright
ModeratorBuddyPress doesn’t have testimonial functionality but you should be able to find a plugin to get what you need.
March 1, 2017 at 11:25 am #264314In reply to: Activity media
valuser
ParticipantAFAIK BuddyPress Activity Plus works, free, as outlined on the WordPress.org plugin page.
You could also try MediaPress by a very reputable BuddyPress developer.
or
The last one has some paid – for add-ons.
There may well be others.
-
AuthorSearch Results
