Search Results for 'wordpress'
-
AuthorSearch Results
-
February 11, 2016 at 10:23 pm #249794
shanebp
ModeratorThanks for opening the ticket.
https://buddypress.trac.wordpress.org/ticket/6895
In the ticket, please add a reference to this thread and also paste your useful filter.February 11, 2016 at 9:49 pm #249789shanebp
Moderatorbp_core_validate_email_addressuses the WP functionemail_exists.
So perhaps that WP function should check the signups table.You can open a ticket here and a decision will be made as to whether it should actually be a WP ticket:
https://buddypress.trac.wordpress.org/newticket
Use the same suer / pw you use for these forums.February 11, 2016 at 6:15 pm #249777WalkerDesign1
ParticipantDoes anyone know where I should be implementing the code that @imath has shared with me regarding the error message I have received?
Upload Failed! Error was: That photo is too big. Please upload one smaller than
This error message only happens when their is an upload of the profile photo within BuddyPress. The same profile photo can be uploaded into the media library within WordPress successfully. Unfortunately BuddyPress does not look for the media library to upload the profile image. It looks for the users hard drive.
Note: The upload of the profile image was working for the original install 2 months ago. I was able to upload 400 members profile images and then one day it stopped working. Not sure if there was an update that is causing the conflict.
Help would be appreciated as this is delaying the launch of this website.
February 11, 2016 at 5:34 pm #249772In reply to: private event for exclusive company site
calvin
Participantyou can make available certain contents for members only using one of the many wordpress membership plugins, just browse around to find one suitable for you.
https://wordpress.org/plugins/tags/members-onlyFebruary 11, 2016 at 3:51 pm #249759In reply to: Mystery privacy
shanebp
ModeratorBy default, all BP pages are public.
Your feedback page is not a BP page, afaik.
Therefore something in your theme, plugins or custom code is setting that WordPress page to private.
I doubt it is related to .htacessFebruary 11, 2016 at 3:45 pm #249757In reply to: Hide pages /Member 2 plugin
shanebp
ModeratorHave you tried this plugin?
https://wordpress.org/plugins/bp-simple-private/February 11, 2016 at 9:46 am #249750In reply to: Can´t upload avatars and proflie covers
Mathieu Viet
Moderatori have the problem after migrating my wordpress installation from one server to another
Meaning this wasn’t happening before this migration?
In the meantime, you can temporarly fallback to the “old” Avatar UI by adding this filter:
// This will disable the Avatar UI and let you use the old UI add_filter( 'bp_avatar_is_front_edit', '__return_false' ); // These will disable the cover image. add_filter( 'bp_is_profile_cover_image_active', '__return_false' ); add_filter( 'bp_is_groups_cover_image_active', '__return_false' );February 11, 2016 at 8:03 am #249747In reply to: Can´t upload avatars and proflie covers
Leg3ndAry
ParticipantWordpress Version: 4.3.1
Theme: Enfold
Plugins with media:Better bbPress Signature
EWWW Image Optimizer
W3 Total CacheThere are more plugins but they are only for bbpress.
I also installed the Buddypress Beta, but the bug is still there.And thank you already for your time 🙂
February 11, 2016 at 7:47 am #249746In reply to: Can´t upload avatars and proflie covers
Mathieu Viet
ModeratorHi,
thanks everyone for reporting this issue. Could you give us details about your configs ?
WordPress version?
Theme activated?
Plugins dealing with media activated?February 11, 2016 at 4:33 am #249742In reply to: Request: Add multi-line, plaintext field
johnywhy
Participantthe basic php filter code was share with me, needed for this. Now i’m investigating how to put a ‘Rich Text’ checkbox on the fields editor.
Feel free to help over here
https://wordpress.org/support/topic/how-to-add-textarea-field-to-buddypress-xprofile-custom-fields-typethx!
February 10, 2016 at 11:44 pm #249741In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participantthank you very much!
your solution is slightly different from this other one, which helps me learn.
https://wordpress.org/support/topic/how-to-add-textarea-field-to-buddypress-xprofile-custom-fields-type?replies=5#post-8009134thx!
February 10, 2016 at 8:50 pm #249733In reply to: Registration Site is blank and link problems
sure45
Participantyes , i install it through wordpress, when i see such problem ,so i download new buddypress 2.4.3 ,then unzip to check ,so i found these 2 folder are missing , then i post here for my problem , it works as an admin , when i checking it from other brower ,probelm is still same after upadting the permalink structure.
I am also using wocoomerce and S2 membership plugin ,but buddypress registaion and activation is missing
February 10, 2016 at 8:44 pm #249731In reply to: Registration Site is blank and link problems
yinjang
ParticipantWhy don’t you install it through WordPress?
Dashboard -> Plugins -> Install -> search for Buddypress and then install it.
Then go to Settings -> Buddypress -> Sites and you can change the site fore registration and activation, it can be, that the sites don’t exist, so you need to create them and link them to it.February 10, 2016 at 4:22 pm #249714David Cavins
KeymasterThis plugin automatically activates new user accounts: https://wordpress.org/plugins/bp-disable-activation-reloaded/
I sure hope that you’re weeding out spammers on the way in, or this site isn’t open to the world.
February 10, 2016 at 4:16 pm #249713In reply to: Few Issues
David Cavins
KeymasterThat’s quite a laundry list.
1) https://premium.wpmudev.org/blog/limit-access-to-your-wordpress-dashboard/
2) http://wptavern.com/wordpress-tip-disable-the-toolbar-on-a-per-user-role-basis
3) Can’t help there.
4) Check out “Edit activity” plugin here: http://www.buddyboss.com/free-buddypress-plugins/February 10, 2016 at 4:09 pm #249712In reply to: Registration Site is blank and link problems
David Cavins
KeymasterIt sounds like you need to update your permalink structure: https://codex.wordpress.org/Using_Permalinks#Choosing_your_permalink_structure
February 10, 2016 at 2:38 am #249700In reply to: How To Get Plaintext Multiline Field?
johnywhy
Participanthmm, ok, taking a different approach. i’m inspecting donmik’s files in ‘buddypress-xprofile-custom-fields-type’. Hope that’s ok, donmik!
i found ‘datepicker’ in:
bp-xprofile-custom-fields-type.php
classes\Bxcft_Field_Type_Datepicker.php
lang\buddypress-xprofile-custom-fields-type.pot
lang\en_US.mo
lang\en_US.po(ignoring the non-english files for the moment).
i simply duplicated all the ‘datepicker’ code-chunks in these files, and replaced ‘datepicker’ with ‘textarea’.
also duplicated the file ‘classes\Bxcft_Field_Type_Datepicker.php’, renamed it ‘Bxcft_Field_Type_Textarea.php’, and removed any date-specific code i found there.
and so on and so forth.
then i zipped it, uploaded to wordpress, activate, and added my new Textarea field to a form.
i actually got no errors, and actually got a text field on my registration form!
unfortunately, it’s only a one-line textbox, not a multiline textarea.
hrm. In inspector, the displayed field is:
<input type="string">so something in donmik’s code, or BP, or WP, is causing this to render as an <input> rather than <textarea>
….
February 9, 2016 at 7:37 pm #249680In reply to: Forum help
jhvalet
ParticipantThanks for the reply! You couldn’t find any links because my post never gets posted. I have not repeatedly tried to post it – I waited 2 days between each post and there is only 1 link in my post and that is to my web site. I really need help with my issue and both my hosting company and wordpress.org’s support forum have told me to post on buddypress.
February 9, 2016 at 7:20 pm #249677In reply to: Few Issues
February 9, 2016 at 7:19 pm #249676In reply to: Few Issues
calvin
ParticipantFebruary 9, 2016 at 5:28 pm #249662In reply to: Add Category field to Buddypress Activity
calvin
ParticipantIt is still not working after changing to your code. Seems like it is unable to capture the value of $_POST[‘bpcat’] and update to the database.
bpcat is still stored as NULL in the mysql database.
I am using the latest buddypress and wordpress.again my full code http://pastebin.com/MBNcn2pe
February 9, 2016 at 5:55 am #249648In reply to: Where’s Conditionals?
johnywhy
ParticipantSolved.
It’s this plugin:
Introducing Conditional Profile Fields for BuddyPress plugin
really appreciate the awesome developer who built this!not this one. Unfortunately doesn’t work on WP 4.4.2
https://wordpress.org/plugins/buddypress-conditional-profile-field/February 9, 2016 at 4:44 am #249647In reply to: Private Messaging Limit with Membership plans
SuitePlugins
ParticipantHi all,
I created a plugin call BP Premiums. If you are ok with using WooCommerce, I can create an add-on that will allow BP users to purchase message quotas.
I have created purchasable for BuddyPress Storage and RTMedia Pro Gallery.
Let me know your thoughts
February 8, 2016 at 7:41 pm #249621In reply to: How to redirect after registration?
johnywhy
Participantthis thread says bp_core_signup_user does not work:
https://wordpress.org/support/topic/how-to-hook-into-add-new-member-in-buddypressthe weird thing is, it’s doing something (because it goes to the login page with the hack, and to the activation page without the hack).
So i think bp_core_signup_user is working. The issue appears to be bp_core_redirect.
Paul Gibbs, Keymaster, suggests bp_core_redirect might get called in the wrong place– “too high up in the stack”. The OP also mentions that
wp_redirectworks, and in fact wp_redirect works for me.So, unless there’s some special reason why i should not use wp_redirect, that’s my fix.
why does bp_core_redirect even exist, if wp_redirect is available? I assume it has some special function that wp_redirect cannot do. right?
any ideas why it doesn’t work in this scenario? Maybe something wrong with those parameters i’m passing it, 100 and 1? What are those params? Where can i find documentation for bp_core_redirect? can’t find…..
many thx
February 8, 2016 at 7:30 pm #249619In reply to: How to redirect after registration?
johnywhy
Participant<?php /* Plugin Name: Redirect After Register Plugin URI: http://laptopacademy.net Description: Redirect after user registration. Version: 1.0.0 Author: John Weiss Author URI: http://laptopacademy.net/wordpress/instructor License: GPL-2.0+ License URI: http://www.gnu.org/licenses/gpl-2.0.txt Text Domain: redirect-after-register Domain Path: /languages */ -
AuthorSearch Results