Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 451 through 475 (of 22,678 total)
  • Author
    Search Results
  • #332241

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    Hi @westmdresearch

    Thanks a lot for your feedback 😍. I’m happy to read you succeeded in troubleshooting issues on your side. We always try to imagine what could go wrong when we update our code but at the same time, we need to go forward. This release is very important as we’ve tried to explain as much as we could, it’s a starting point: fully complying with WordPress way of parsing requests will help us on various fields in the future. We know it’s a massive change and I feel sorry to read there are cases we were not able to anticipate: but we strongly believe it’s a needed change for the better of our next community features.

    #332239
    Mathieu Viet
    Moderator

    Hi @jane-blonde

    As we informed into an Admin notification after the 11.4.0 upgrade and at each 12.0.0 pre-releases. So it’s not an issue.

    We’ve moved Legacy widgets into the BP Classic back compatibility add-on. Since version 9.0.0 we’ve transformed these legacy widgets as block widgets.

    BP Classic

    #332238
    bastibln
    Participant

    Hey,

    there seems to be something not working properly, independent from the theme I am using and with having no plugins activated at all:

    When I enter my First and Last Name in the usual User -> Profile Dashboard from WordPress, ervything is fine. Let’s assume I choose a Nickname as well:

    First Name: Tom
    Last Name: Train
    Nickname: Tommy

    In the Public Name dropdown, I choose ‘Tommy’.
    Save it.

    Now I already have created some additional profile fields, like the gender.
    If I change my data there now, from option 1 to option 2, and I save it, and I go back to the first “Profile” tab within the WordPress Dashboard, all my name declarations are gone, except Tommy.

    Is this a known problem for someone?

    #332231

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    Hi @gyrus

    Sorry to read about this issue.

    We’ve built BP Classic a back compatibility Add-on, maybe you can try activating it to see if it solves the issue:

    BP Classic

    If not, I’ve explained into this reply how to rollback to 11.4.0 (you’ll need BP Classic anyway)

    BuddyPress 12.0.0

    > if you want to rollback, activate BP Classic (to get the regular directory pages back into your regular WordPress pages), then deactivate BuddyPress and BP Classic. You’ll need to manually reset the « DB Version » to the one of you version, see https://codex.buddypress.org/releases/. For instance for version 11.4.0, into the wp_options table the _bp_db_version option should be 13408. Only then download and activate a previous BuddyPress version (11.4.0).

    #332213

    In reply to: Enqueuing CSS in 12.0

    Mathieu Viet
    Moderator

    Hi @lordmatt, another way to fix it is to use this filter:

    add_filter( 'bp_enqueue_assets_in_bp_pages_only', 'return_false' );

    See: https://bpdevel.wordpress.com/2023/11/18/bp-template-pack-javascript-and-style-assets-are-now-only-loaded-into-the-community-area-of-your-site/

    #332204

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    @westmdresearch & @fraughtithrouble

    I believe there can be errors when a plugin/theme has not been updated since the last 2 versions of BuddyPress, we only load by default deprecated functions back to 2 previous versions. I suggest you to use 2 constants in your wp-config.php file:

    define( 'BP_LOAD_DEPRECATED', true ); this will load all deprecated functions (from version 12.0 back to version 1.2)
    – Errors should become deprecation notices. Errors/notices should never be output on front-end, so if some errors are output on front-end, I advise you to also use define( 'WP_DEBUG_DISPLAY', false );


    @fraughtithrouble
    if you want to rollback, activate BP Classic (to get the regular directory pages back into your regular WordPress pages), then deactivate BuddyPress and BP Classic. You’ll need to manually reset the « DB Version » to the one of you version, see https://codex.buddypress.org/releases/. For instance for version 11.4.0, into the wp_options table the _bp_db_version option should be 13408. Only then download and activate a previous BuddyPress version (11.4.0).


    @westmdresearch
    I’m sorry to read about all these troubles, we took all possible precautions to avoid it on our side: beta period was extended to 4/5 months, we documented the changes, we’ve built a backcompat plugin, unfortunately we cannot test and fix all free or premium plugins, this part remains their responsibility.

    #332192

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    Hi @varadkk

    The new way to customize URLs or directory titles is happening in Settings > BuddyPress then click on the URLs tab. More info about it here: https://github.com/buddypress/buddypress/blob/master/docs/user/administration/settings/urls.md

    If for some reason (compatibility with a 3rd party BP plugin) you need to get this page back, you can use the BP Classic add-on.


    @weathermadness
    with so few information I guess something is wrong with a potential third party BP plugin, have you activated the BP Classic plugin ?

    #332182

    In reply to: BuddyPress 12.0.0

    Mathieu Viet
    Moderator

    Hi,

    It’s a deprecation notice. According to it you are still using BP Legacy Widgets. These widgets were moved into our Backwards compatibility Add-on « BP Classic »:

    BP Classic

    You can find them back downloading and activating this Add-on.

    #332152
    Robin W
    Participant
    #332151
    Robin W
    Participant

    @imath I’m not sure you are getting informed of my question in

    https://bbpress.trac.wordpress.org/ticket/3576

    #332122
    fusionbudd
    Participant

    Two ways to use your BP profile pic as your WordPress avatar:
    1. Plugins:
    Install and activate a plugin like “BuddyPress Default Avatar” or “BuddyPress Avatar Sync.”
    These plugins automatically sync your BP profile photo with your WordPress avatar, making it a simple and hands-off solution.

    2. Custom code:
    If you prefer a more technical approach, you can add code to your theme’s functions.php file.
    This code snippet will enable syncing of the two avatars:

    PHP
    function bp_avatar_sync($user_id) {
    // Get BP profile picture URL
    $bp_avatar_url = bp_core_fetch_avatar(array(‘item_id’ => $user_id, ‘type’ => ‘full’));

    // Update WordPress avatar URL
    update_user_meta($user_id, ‘user_avatar’, $bp_avatar_url);
    }
    add_action(‘bp_core_avatar_uploaded’, ‘bp_avatar_sync’);

    Remember, both methods achieve the same result. Choose the method that best suits your technical skills and preferences.

    #332027
    emaralive
    Moderator

    @sbanner26, my apologies for not posting this sooner, I was contemplating various scenarios based on the limited information provided and not having access to the BP Member Export Import plugin (it doesn’t reside in the official WordPress plugin repository). That stated, let’s see what you think about the proposed:

    This solution is an attempt to mitigate risk for updating a user’s registration date by utilizing a WP plugin known as Edit Registration Date. This plugin adds an editable text box to each user’s profile page, as can be seen in the following screenshot:

    screenshot

    This plugin is located in the WP plugin repository at the following URL:

    Edit Registration Date

    The author of this plugin has only tested up to WP 6.2.3; meaning, I’m not sure why the author hasn’t tested, as of yet, to the current version of WP. As an aside, I tested it with WP 6.4.1 and it works as advertised. The plan would be to install stated plugin on both sites, perform a copy & paste and then update profile for each user. After completion, you can discard this plugin,, if you choose to do so. Albeit, this is a manual effort but, to reiterate, it presents the least amount of risk for updating a user’s registration date.

    Having stated the previous, this now brings up the subject as to where the fault lies with the BP Member Export Import plugin by Wbcom Designs, if any. Was it a setting that needed to be set, i.e., use original registration date or make the dates all the same? Or, is it an actual bug? If it is a bug then, this bug should be reported, as such, to Wbcom Designs by someone who has actually witnessed this anomaly.

    Furthermore, you may be able to determine in which process the fault, if any, may exist since there is, apparently, a 2 (two) step process, e.g., export and import: meaning, if you import the CSV file into a spreadsheet (MS Excel, OpenOffice/LibreOffice Calc or Google Sheets) the column that represents “registration_date” (the actual DB column name is “user_registered”) will indicate whether the dates are correct or not. If the dates are correct then the export process is not at fault and if the dates are not correct, you can infer that a fault may exist with the “export” process.

    If by chance and assuming the dates are incorrect as indicated by the spreadsheet, the dates can be manually corrected in the spreadsheet and then save/export the corrections as a CSV file then, utilize the import feature of BP Member Export Import plugin. Note: The video for this plugin shows that there is a checkbox “Enable checkbox to update existing users data” thus, you should enable the checkbox since you have existing users.

    Last but not least, there are other solutions that are applicable but, I’m not sure they are worth the effort (that is, my effort) to convey at a practical level given that your situation isn’t one that occurs on a regular basis, at least I would hope not, however, if this proposed solution is not practical, I may reconsider my position on this. Additionally, if this is truly a fault that lies with the BP Member Export Import plugin by Wbcom Designs then, reporting this fault to the developers of stated plugin would allow them to fix this fault and then you could use the new version to repeat the export/import process but this time it would work, given that no new bugs/faults were introduced.

    #332021
    harl432
    Participant

    To allow any logged-in user to post in your bbPress forum within a specific BuddyPress group, go to your WordPress dashboard, navigate to Forums > [Your Forum], and adjust the forum’s settings. Look for permissions or access settings and set them to “Logged In Users” rather than restricting it to group members only.

    #332015
    Mathieu Viet
    Moderator

    Hi @jgasba

    If it’s bbPress pagination, my first guess would be it’s a bbPress issue. Have you tried BuddyPress 12.0.0-beta4 & latest bbPress patched with the patch I’ve attached to this ticket https://bbpress.trac.wordpress.org/ticket/3576 ?

    #332009
    jgasba
    Participant

    There is a very long running issue about that, it seems, on bbpress trac here https://bbpress.trac.wordpress.org/ticket/3355#comment:4
    if you have any more info on that, please share.

    Either wait for a bbPress update (it seems that it is in a slow pace lately), or maybe include a function hooking to bbp_get_replies_pagination_base filter (for replies as an example) to fix it on buddyPress side? (or on theme/plugins dev side but then it would probably be a good thing to include it in the docs somewhere?)

    #331993
    Mathieu Viet
    Moderator

    @africanfoods Let’s discuss about it in another topic, this one is dedicated to testing BuddyPress 12.0 and BP Classic. Just imagine how you would feel if someone would interrupt a discussion you’re having about a topic with something that is not directly related to it.

    Please open a new topic, describe your configuration in it: WordPress version, BuddyPress version, PHP version, name of your theme, name of the active BP Template Pack, list of active plugin names as well as active BP Components, whether there is a bp-custom.php file into your plugins directory or any other file into a mu-plugins directory, etc. We’ve sticked this topic to the forum to help you and others have a reply to their troubles, follow these steps, then ask for support. I can’t help you with so few information.

    #331989
    aktivbuerger
    Participant

    Hello,

    we use BuddyPress Version 11.4.0 with WordPress 6.4.1.

    Users should register here: https://www.campusaktiv.de/registrieren/

    Actually there’s the problem that the page only reloads after pressing the submit button (“Registrierung abschließen”). Nothing happens, no forwarding to activation page or system message.

    Can someone help us please?

    Kind regards,
    Regina | Stiftung Aktive BĂŒrgerschaft

    #331953
    gingerbooch
    Participant

    @imath, then that was implemented between 10.3 and 11.4 😉 I will read more about this new Block Themes feature, thanks for the hint.
    Can I ask you (around) when version 12.0 will be live on WordPress ? No hurry, just for information.

    vasilkovsky
    Participant

    Hello guys.
    I’m working on creating users based on data from API response and everything is working fine, but I noticed database errors in debug.log, investigated and found it was related to wp_create_user() and bp_core_map_user_registration() conflict. bp_core_map_user_registration() hooked into user_register and is working with xprofile fields and leads to Warning: Undefined property: BP_XProfile_Component::$table_name_data and WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘.
    Commenting this action resolved issue.
    Any ideas how to fix this? Because 4 WordPress database error for 1 user creation is too much, and one API cycle is creating 100 users on my website..

    #331933
    lucasfpaixao
    Participant

    Hi, I need help to find out why “Extended Profile” fields cannot be editted (I think you guys call it “xprofile”).

    I can type on the fields normally, but it does not actually save the data after hitting “Update Profile” button.

    I’m dealing with this for two days. I already searched online but I cannot find anything useful for this case. I’m afraid I’m out of ideas.

    Here’s what I already tried:

    The system uses an external mySQL on a VPS server and the WordPress files are hosted in another web server.
    I was dealing with lots of “Got an error writing communication packets” found in the error.log of the mysql server. The website seems to work fine despite of that and the lack of extended profile update abillity. This problem seems to be solved after increasing buffer sizes of the mysql server. But I still cannot edit Extended Profile data. It does not work as admin nor as the user.

    I already disabled every single plugin to check if there is some plugin conflicts.
    I already clear the all the caches using LiteSpeed Cache Plugin.
    I already increased buffer size on the mysql server and restarted it.

    The wordpress database seems to be very big and I have a felling that something is wrong with it.

    There’s some information on the Chrome Developer Console on the “extended profile” backend:

    Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
    load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks,utils,moxiejs,plupload,jcrop&ver=6.4.1:5 JQMIGRATE: Migrate is installed, version 3.4.1
    hello.min.js?ver=2.4.50:1 Uncaught TypeError: Cannot read properties of null (reading ‘classList’)
    at HTMLDocument.e (hello.min.js?ver=2.4.50:1:157)
    57superpwa-sw.js?2.2.20:80 SuperPWA: Current request is excluded from cache.

    PS: SuperPWA is already disabled and deleted from this system.

    yatesa01
    Participant

    I’m building a new wordpress site with buddypress and have just noticed that when I have the Nouveau template active, the “Add Friend” buttons disappear from the site. When I switch it to the legacy template, the “Add Friend” button reappears. When using the Nouveau template, the send public message button appears just fine in the member profile page.

    If it is helpful, I’m running WordPress 6.4.1, using the Astra theme, and BuddyPress 11.4.

    #331876
    teeboy4real
    Participant

    Hello,

    I just updated wordpress to version 6.4.1 and buddypress buddypress 12.0 beta 4 and this error no longer occurs.

    #331873
    Mathieu Viet
    Moderator

    Hi @teeboy4real

    Thanks a lot for your report, I’ve seen this issue lately:
    https://buddypress.trac.wordpress.org/ticket/9010

    As you will see, it looks like some custom code/plugin is filtering the $activity_type to be an array instead of a string.

    I wasn’t able to reproduce it, but, I’m going to reopen the ticket and check again as I’m not sure I tested with a post comment.

    I’ll keep you updated.

    #331871
    teeboy4real
    Participant

    I updated to wordpress 6.4 while using buddypress beta 3. Accessing a members profile while I was logged out triggerd a fatal error. This is the info in my debug log below

    2023-11-08T16:55:16+00:00 CRITICAL Uncaught TypeError: Illegal offset type in /var/www/wptbox/wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php:800
    Stack trace:
    #0 /var/www/wptbox/wp-content/plugins/buddypress/bp-blogs/bp-blogs-activity.php(1038): bp_activity_post_type_get_tracking_arg()
    #1 /var/www/wptbox/wp-includes/class-wp-hook.php(324): bp_blogs_new_blog_comment_query_backpat()
    #2 /var/www/wptbox/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #3 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-functions.php(401): apply_filters()
    #4 /var/www/wptbox/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php(291): bp_parse_args()
    #5 /var/www/wptbox/wp-content/themes/klein-child/buddypress/activity/activity-loop.php(3): bp_has_activities()
    #6 /var/www/wptbox/wp-includes/template.php(792): require('...')
    #7 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(222): load_template()
    #8 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template()
    #9 /var/www/wptbox/wp-content/themes/klein-child/buddypress/members/single/activity.php(41): bp_get_template_part()
    #10 /var/www/wptbox/wp-includes/template.php(792): require('...')
    #11 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(222): load_template()
    #12 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template()
    #13 /var/www/wptbox/wp-content/themes/klein-child/buddypress/members/single/home.php(34): bp_get_template_part()
    #14 /var/www/wptbox/wp-includes/template.php(792): require('...')
    #15 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(222): load_template()
    #16 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template()
    #17 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(407): bp_get_template_part()
    #18 /var/www/wptbox/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-theme-compat.php(212): bp_buffer_template_part()
    #19 /var/www/wptbox/wp-includes/class-wp-hook.php(324): BP_Members_Theme_Compat->single_dummy_content()
    #20 /var/www/wptbox/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #21 /var/www/wptbox/wp-content/plugins/buddypress/bp-core/bp-core-theme-compatibility.php(767): apply_filters()
    #22 /var/www/wptbox/wp-includes/class-wp-hook.php(324): bp_replace_the_content()
    #23 /var/www/wptbox/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #24 /var/www/wptbox/wp-includes/post-template.php(256): apply_filters()
    #25 /var/www/wptbox/wp-content/themes/klein/buddypress-full-content.php(20): the_content()
    #26 /var/www/wptbox/wp-includes/template.php(792): require('...')
    #27 /var/www/wptbox/wp-includes/template.php(725): load_template()
    #28 /var/www/wptbox/wp-includes/general-template.php(206): locate_template()
    #29 /var/www/wptbox/wp-content/themes/klein-child/buddypress.php(90): get_template_part()
    #30 /var/www/wptbox/wp-includes/template-loader.php(106): include('...')
    #31 /var/www/wptbox/wp-blog-header.php(19): require_once('...')
    #32 /var/www/wptbox/index.php(17): require('...')
    #33 {main}
      thrown in /var/www/wptbox/wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php on line 800
    #331856
    zoddshop63
    Participant

    How can I deactivate activation email and make wordpress activate users automatically.

    Also can I have users autologged in after filling our registration form?

Viewing 25 results - 451 through 475 (of 22,678 total)
Skip to toolbar