Search Results for 'buddypress'
-
AuthorSearch Results
-
March 8, 2018 at 12:36 am #271223
In reply to: Impossible to upload photos (profile and cover)
phonoptikj
ParticipantHi everyone 😀
I´m having the same issue, but only with the profile and cover images. The rest of the images are uploading fine (PHP its running GD already). The thing is that my site is running WordPress with BuddyPress on Heroku. All the uploaded images go to the s3 amazon bucket, except for the profile image and cover image, which, once they are uploaded, go to the Heroku ephemeral file system, so after a little while they disappear (as this is their policy on free accounts, they restart the “dyno” as they call it, which means the server). The difference you can tell on the permalink generated for every image, for instance, If I upload an image normally from the media library or even from a plugin which let me upload images and media from my BuddyPress profile, they get this kind of permalink: “http://s3-sa-east-1.amazonaws.com/artlikeall1/content/uploads/2018/03/07212557/my-image.jpg”, now when I try to change my cover and profile image from my BuddyPress profile view, the images get uploaded with this kind of permalink: “http://mysite.herokuapp.com/content/uploads/avatars/61/myprofilepic.jpg”, and after a while it disappears.So please anyone could shed some light on this? it seems that there is no info about running BuddyPress with Heroku. Thanks!!
March 7, 2018 at 6:57 pm #271222In reply to: Forum topics list
Venutius
ModeratorThere’s no private messaging here. Did you take a look at this page?
https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/March 7, 2018 at 2:40 pm #271218In reply to: Impossible to upload photos (profile and cover)
raypasnen
ParticipantHi. You need to be sure that your version of PHP is running “GD” – that allows buddypress to save images to your gd_graphics_library. Go to cPanel -> easyapache -> customize – extensions – search for “gd” and you will find it’s listing and whether it is installed, active, whatever. Otherwise, ask your host to turn it on.
Hope this helps.
March 7, 2018 at 6:36 am #271213In reply to: Can I have 2 sets of Groups?
Venutius
ModeratorSearch for “BuddyPress Group Types” you will find a number of plugins that allow you to set a type for a group. but these are typically just starter plugins, you’d have to decide what you are going to do with those types and implement in code.
March 6, 2018 at 9:38 pm #271206In reply to: Can I have 2 sets of Groups?
Venutius
ModeratorOne option could be to use group hierarchy to nest the city groups within countries. Another option is to take a look at the group types plugins that will allow you to have different categories for groups in effect, you could then add cope to change how WordPress/BuddyPress behaves with those groups.
March 6, 2018 at 1:42 pm #271202In reply to: php warning: bp-activity-function
HDcms
ParticipantHi,
I feel that this function does not work anymore with the latest version of buddypress. If I disable it, => all works
I activate it by trying several solutions and nothing else works !!add_filter( 'bp_after_has_activities_parse_args', 'activites_affiche_infos' ); function activites_affiche_infos( $retval ) { // if ( bp_is_active( 'activity' ) ) { $retval['action'] = array( 'activity_comment', 'activity_update', //'created_group', //'friendship_created', 'joined_group', 'last_activity', //'new_avatar', 'new_blog_comment', 'new_blog_post', //'new_member', 'updated_profile' ); return $retval; // } }March 6, 2018 at 12:25 am #271197In reply to: I want to delete Activity Page.
Arize Nnonyelu
ParticipantSo after making it private, it started showing me that error you said it would show if I deleted it.
The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams. RepairMarch 5, 2018 at 6:19 pm #271191In reply to: All users marked as spammed
Venutius
ModeratorYou can disable activity completely in the Dashboard>>Settings>>BuddyPress page, you can choose to disable this component. However the issue is likely to be down to the plugin that is checking for spam on the activity component of BuddyPress, which plugin is that?
March 5, 2018 at 6:10 pm #271189In reply to: I want to delete Activity Page.
Venutius
ModeratorI wonder if setting the page to private and removing the links to it would be the best way to go. If you delete it you will end up with an error in the back end saying the BuddyPress component needs a page linked to it.
March 5, 2018 at 3:24 pm #271187March 5, 2018 at 11:57 am #271184In reply to: reduce the maximum size avatar // gravatar
HDcms
ParticipantHi
I do not understand why BP_AVATAR_ORIGINAL_MAX_FILESIZE does not work
but withit’s ok 🙂
March 5, 2018 at 11:48 am #271183In reply to: All users marked as spammed
Simon Bame
ParticipantHi, I have this problem, Could you help me further please, how do I disable all activity from Buddypress? How did you do this?
March 4, 2018 at 3:49 am #271171In reply to: Buttons Turn Grey when Hovering
orribu
ParticipantHello, thanks for getting back to me!
I tried injecting the lines from the legacy CSS and adding the changed line of code to the “Custom CSS” area both with and without the !important tag but to no avail. Here’re the adjustments I made:#buddypress .standard-form button:hover, #buddypress a.button:hover, #buddypress a.button:focus, #buddypress input[type="submit"]:hover, #buddypress input[type="button"]:hover, #buddypress input[type="reset"]:hover, #buddypress ul.button-nav li a:hover, #buddypress ul.button-nav li.current a, #buddypress div.generic-button a:hover, #buddypress .comment-reply-link:hover { background: #EFF6F8 !important; border: 0; color: #E4A732; outline: none; text-decoration: none; }The buttons still turn up grey! Am I doing something wrong?
March 3, 2018 at 3:02 pm #271164In reply to: deny access to subscriber profile
David Cavins
KeymasterOK, that’s a different issue, ha ha. You’ll have to instead of preventing access to the entire user profile, prevent access to the user profile tab on the user’s profile. Clear, right?
You’ll need to use the Navigation API.
This should get you close: https://gist.github.com/dcavins/e7708f2a58aab16b61bbf7b06acf9756
March 3, 2018 at 2:51 pm #271162In reply to: Mobile friendly registration?
David Cavins
KeymasterCSS. Something like this will fix up the default form:
@media (max-width: 600px) { #buddypress .standard-form #profile-details-section, #buddypress .standard-form #basic-details-section { float: left; width: 100%; } }March 3, 2018 at 2:47 pm #271161In reply to: Buttons Turn Grey when Hovering
David Cavins
KeymasterHi, it looks like this rule is what’s active when hovering on your registration form, so I suspect it’s what you’ll need to override:
https://buddypress.trac.wordpress.org/browser/tags/2.9.3/src/bp-templates/bp-legacy/css/buddypress.css#L956March 3, 2018 at 12:37 am #271158In reply to: Buttons Turn Grey when Hovering
orribu
ParticipantAh, forgot to answer these:
- WordPress ver. 4.9.4
- BuddyPress ver. 2.9.3
- Installation: Runs in main directory (public_html)
- Upgraded from WordPress ver. — I’m going to guess 4.9.3?
- Yep, WP was working fine. It still is, I just recovered it from a pretty bad PHP error. (disclaimer, I have NO idea how to PHP)
- Upgraded from bbPress 2.9.2
- Other Plugins: Akismet 4.0.3; bbpress 2.5.14; Blackhole for Bad Bots 1.8; Comment Mention Notifications 1.0.0; Custom Sidebars 3.1.2; Fancybox for WordPress 3.0.13; Jetpack 5.8; MailChimp 4.1.15; Maintenance 3.6.1; SiteOrigin Page Builder 2.6.2; Patreon for WordPress 2.6.2; Responsive Menu 3.1.13; Shortcodes Ultimate 5.0.3; SiteOrigin CSS 1.1.5; SiteOrigin Widgets Bundle 1.11.4; UpdraftPlus – Backup/Restore 1.14.4; User Role Editor 4.4; WooCommerce 3.3.3; WooCommerce Services 1.11.0; WordPoints 2.4.1; WP Super Cache 1.5.9; Yoast SEO 6.3.1
- Parent Theme: Rose
- I’ve uploaded the Rose theme and made a child theme. I’ve also altered wp-config.php to allow Multisite functionality.
- bbp-custom.php– I made one now! There are no functions.
- Hosted through BlueHost.
- Server OS: More than likely Linux (Apache).
Recent errors:
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 1 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 2 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 1 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 2 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 1 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 2 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 1 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 2 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 1 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162
[03-Mar-2018 00:25:08 UTC] PHP Warning: Missing argument 2 for WP_Widget::__construct(), called in /home1/database/public_html/wp-includes/class-wp-widget-factory.php on line 100 and defined in /home1/database/public_html/wp-includes/class-wp-widget.php on line 162March 2, 2018 at 4:09 pm #271154In reply to: Post Update in groups sometimes hangs
brianbattenfeld
ParticipantHey David, thanks for the info. Yea, we’re using group email subscriptions, so I’m assuming you’re correct. Thanks for that info – I’m a WP vet, but incredibly new to buddypress, so I’m entirely unaware of the common issues.
Still open to any suggestions as a workaround for the issue, but this gives me a little direction to do more digging.
March 1, 2018 at 9:38 pm #271143In reply to: Post Update in groups sometimes hangs
David Cavins
KeymasterIf you’re using BuddyPress Group Email Subscriptions, posting updates can take a long time because the plugin has to do a bunch of work to create the email notifications for all the group members. The devs are working to resolve the issue, but my crystal ball says that’s what you problem is, lacking more information.
March 1, 2018 at 7:35 pm #271142In reply to: Duplicate Register Page
OC WordPress Web Designer
ParticipantAlso, telling me to get a registration profile plugin won’t help because I have to have the buddypress integration with Geodirectory which doesn’t translate profile fields with third party registration plugins.
March 1, 2018 at 7:16 pm #271141In reply to: deny access to subscriber profile
kwavewd
Participantso I prematurely celebrated. So this does work however it also redirects the customer when the go to any pages like messages, buddydrive, ect;
I need to only block access to profile page but still allow them to visit the message or otheread tabs. I don’t use the standard buddypress design I just have custom links in the header alwso
members/username/messages
members/username/buddydrivethey are also redirected to homepage but I just need when they visit
members/username
Thanks again!
March 1, 2018 at 4:47 pm #271137Henry Wright
Moderator“bp_loaded” will also get the job done. You just need to find a hook that’s appropriate. A function needs to be defined before you call it so it’s always worth keeping track of the load order in both WordPress and BuddyPress.
Feel free to edit the documentation if you find an error. BuddyPress welcomes contributions
March 1, 2018 at 3:05 pm #271134In reply to: php warning: bp-activity-function
HDcms
ParticipantHello
[17-Feb-2018 11:37:41 UTC] PHP Warning: Illegal offset type in /home…./wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php on line 734I found where the error came from:
add_filter( 'bp_after_has_activities_parse_args', 'activites_affiche_infos' ); function activites_affiche_infos( $retval ) { $retval['action'] = array( 'activity_comment', 'activity_update', 'created_group', 'friendship_created', //nouv relation entre membre 'joined_group', 'last_activity', 'new_avatar', 'new_blog_comment', 'new_blog_post', //'new_member', 'updated_profile', 'rtmedia_update' // ajout important sinon on perd l'affichage des médiaq ); return $retval; }IF you can tell me the mistake !?
For the other, it’s the mailster plugin
[24-Feb-2018 00:59:35 UTC] PHP Warning: mysqli_query(): Error reading result set's header in /home/../wp-includes/wp-db.php on line 1924 [24-Feb-2018 01:56:20 UTC] PHP Warning: mysqli_query(): MySQL server has gone away in /home/../wp-includes/wp-db.php on line 1924March 1, 2018 at 12:28 pm #271126In reply to: s2member and Buddypress Member Type
kevins1553
ParticipantI have since purchased Buddypress Member Type Pro. Now looking through it and trying to implement it, it seems that the member type drives the s2member level. Not the other way around. Did I get that right? Is there a way to use the s2member shortcodes with the Buddypress Member shortcodes?
March 1, 2018 at 8:47 am #271125hiverizecaro
Participantthanks for the advice.
I am still confused why the “official” buddypress codex advises to hook plugins to bp_include if this is too early.I changed my code to `
add_action( ‘bp_loaded’, ‘my_plugin_init’ );`This solved the fatal error, yet I don’t see any changes in group behaviour…but I’ll look into that.
-
AuthorSearch Results