Search Results for 'wordpress'
-
Search Results
-
Topic: Email Placeholders
WordPress 6.3 Multi-Site Network with BuddyPress Version 11.3.1
Site: https://kamito.org/
Theme: Twenty Twenty-Three (generic)Placeholders are not working in > Emails > All Emails
To replicate, register a new user(1) check the “Recipient has registered for an account” email >
the subject line is showing: “[] Activate your account” instead of displaying the site.name instead of the brackets.(2) check the “Recipient has successfully activated an account.” email >
the subject is showing: “[] Welcome!” instead of displaying the site.name instead of the brackets.
(2a) click on the ‘profile’ link inside the email and the ‘this page’ link you’ll see what I mean with this error. Links in system generated emails seems like adding “%7B%7B%7B” to the URL or “http://” infront of the URL(3) check the new user email again, WordPress continue to send their own “Welcome Email”
My WordPress is running on Docker’s Debian operating system, I enabled the multi-site network mode, hoping to create a separate forum, but when I installed the BuddyPress plugin and created the group, there were some problems: although the group function can be created, the group cannot be accessed normally.
At first, I thought it was a conflict problem with a certain plugin, and I disabled all plugins, but the bug still exists, and I hope that the official can fix this bug.Details:
– Runtime Environment: Docker
– Docker Version: 24.0.5
– Docker Image: wordpress:latest
– PHP Version: 8.0.30Topic: registration page blank
My site is https://buriedladies.com. My register page is blank. I deleted buddypress today and uploaded a new copy. The software creates the page but it’s blank. I’ve enabled anyone to register and they become subscribers. I’ve watched 3-4 videos and I have everything set up correctly. When I log out of the site, the register disappears from the top menu. I’m totally flummoxed.
Meanwhile, folks registered for my SITE because I’ve asked them to join my groups. Is there any way to move them into a group?
I have the most recent version of WordPress and buddypress. I’m using a Genesis theme.
Hi,
I am using BuddyPress in combination with Jumble wishlist plugin.
Only persons who have an account made via BuddyPress are able to add items to a wishlist.
When a person without an account clicks on “Add to wishlist” he now goes automatically to the standard WordPress login page – without being prompted that an account is needed for this functionality.
Is there a way to prevent those without an account to go to this page, but instead go to a page informing them on this functionality for site members / logged in users?
WordPress 6.3
BuddyPress 11.2.0
Website: https://klm-huisjes.ellyvandriel.nl/Thanks,
MargrietHi!
I’m using your plugin and I have a problem – when I open a member’s profile page, it takes at least 20 seconds to load. And while debugging, I found out that just this check of the bp_has_profile() function takes 18-19 seconds. I want to somehow speed up the page and the main problem is that.
Can you help me to solve it.
PHP: 7.4.33
Wordpress: 5.4.2
BuddyPress: 8.0.0Thanks in advance,
VahanHello everyone,
I am sure the problem is quite basic, but I can’t fix it. On my site, some users don’t have their email in extended profile, while there is in their wordpress profile. I want to take it from their wordpress profile and put it in their extended one.
I wrote this little piece of code to do so, that I run in the Code Snippet plugin of WordPress :function mettre_a_jour_tous_les_profils() { $users = get_users(); foreach ($users as $user) { $user_id = $user->ID; $user_data = get_userdata($user_id); $user_email = $user_data->user_email; $current_email = xprofile_get_field_data(204, $user_id); // Vérifier si l'email du profil étendu est vide if (empty($current_email)) { // Mettre à jour l'email du profil étendu avec l'email du profil WordPress xprofile_set_field_data(204, $user_id, $user_email); } } } mettre_a_jour_tous_les_profils();Here is the erro i get :
PHP Fatal error: Uncaught Error: Call to undefined function xprofile_get_field_data() in /homepages/14/d736706778/htdocs/IMABIO/wp-content/plugins/code-snippets/php/snippet-ops.php(575) : eval()'d code:9 Stack trace: #0 /homepages/14/d736706778/htdocs/IMABIO/wp-content/plugins/code-snippets/php/snippet-ops.php(575) : eval()'d code(32): mettre_a_jour_tous_les_profils() #1 /homepages/14/d736706778/htdocs/IMABIO/wp-content/plugins/code-snippets/php/snippet-ops.php(575): eval() #2 /homepages/14/d736706778/htdocs/IMABIO/wp-content/plugins/code-snippets/php/snippet-ops.php(656): Code_Snippets\execute_snippet() #3 /homepages/14/d736706778/htdocs/IMABIO/wp-includes/class-wp-hook.php(308): Code_Snippets\execute_active_snippets() #4 /homepages/14/d736706778/htdocs/IMABIO/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters() #5 /homepages/14/d736706778/htdocs/IMABIO/wp-includes/plugin.php(517): WP_Hook->do_action() #6 /homepages/14/d736706778/htdocs/IMABIO/wp-settings.php(486): do_action() #7 /homepages/14/d736706778/htdocs/IMABIO/wp-config.php(99): require_once('/homepages/14/d...') #8 /homepages/14/d736706778/htdocs/IMABIO/wp-load.php(50): require_once('/homepages/14/d...') #9 /homepages/14/d736706778/htdocs/IMABIO/wp-admin/admin-ajax.php(22): require_once('/homepages/14/d...') #10 {main} thrown in /homepages/14/d736706778/htdocs/IMABIO/wp-content/plugins/code-snippets/php/snippet-ops.php(575) : eval()'d code on line 9If some clever minds can tell me where am i wrong, it would definitely help me, thank you !