Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,026 through 7,050 (of 68,949 total)
  • Author
    Search Results
  • #271223
    phonoptikj
    Participant

    Hi 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!!

    #271222

    In reply to: Forum topics list

    Venutius
    Moderator

    There’s no private messaging here. Did you take a look at this page?
    https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

    #271218
    raypasnen
    Participant

    Hi. 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.

    #271213
    Venutius
    Moderator

    Search 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.

    #271206
    Venutius
    Moderator

    One 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.

    #271202
    HDcms
    Participant

    Hi,
    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;	
    //	}
    }
    #271197
    Arize Nnonyelu
    Participant

    So 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. Repair

    #271191
    Venutius
    Moderator

    You 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?

    #271189
    Venutius
    Moderator

    I 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.

    Venutius
    Moderator
    #271184
    HDcms
    Participant

    Hi

    I do not understand why BP_AVATAR_ORIGINAL_MAX_FILESIZE does not work
    but with

    Limit BuddyPress User and Group Avatar File size

    it’s ok 🙂

    #271183
    Simon Bame
    Participant

    Hi, I have this problem, Could you help me further please, how do I disable all activity from Buddypress? How did you do this?

    #271171
    orribu
    Participant

    Hello, 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?

    #271164
    David Cavins
    Keymaster

    OK, 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.

    Navigation API

    This should get you close: https://gist.github.com/dcavins/e7708f2a58aab16b61bbf7b06acf9756

    #271162
    David Cavins
    Keymaster

    CSS. 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%;
    	}
    }
    
    #271161
    David Cavins
    Keymaster

    Hi, 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#L956

    #271158
    orribu
    Participant

    Ah, 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 162

    #271154
    brianbattenfeld
    Participant

    Hey 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.

    #271143
    David Cavins
    Keymaster

    If 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.

    #271142

    Also, 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.

    #271141
    kwavewd
    Participant

    so 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/buddydrive

    they are also redirected to homepage but I just need when they visit

    members/username

    Thanks again!

    Henry 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

    #271134
    HDcms
    Participant

    Hello

    [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 734

    I 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 1924
    #271126
    kevins1553
    Participant

    I 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?

    hiverizecaro
    Participant

    thanks 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.

Viewing 25 results - 7,026 through 7,050 (of 68,949 total)
Skip to toolbar