Search Results for 'wordpress'
-
Search Results
-
Topic: Where to find custom code
I am so sorry in advance and I really don’t know how I am having such a hard time finding this, but where can I customize my buddypress code. Here is how I installed everything. Got the domain from godaddy and installed wordpress right through them. Then on the wordpress dashboard, went to plugins and downloaded buddypress, bbpress and the theme Customify. Every time I am trying to go through a tutorial that involved customizing, I see things like “edit pb-custom.php” and things like that. Where are these files located, how do I literally access them? People say things like “its in /wp-content/plugins” but I dont know where to find that folder to begin with. Is it through the wordpress dashboard of my site? On godaddy somewhere? I know this is like 101 stuff but Im seriously confused where to find anything relating to code. I can find Customify’s Theme Editor very easily, not anything else though. Please help
Topic: Emails showing WordPress
When a user replies to one of my updates within the activity section, it shows as if it is coming from wordpress – this is not how I have configured it in the emails section of the dashpanel for buddypress as everything is like:
[{{{site.name}}}] {{poster.name}} mentioned you in a status update
And that works, but not for where it’s coming from: <wordpress@mydomain.com>
Please see screenshot: https://prntscr.com/p9bx97
How to set that for buddypress?
Thank you
I am new here so i am sorry if i am posting in wrong place. Tho i am kinda desperate since tried everything but not working.
I have changed my admin username to another because of my reasons and in wordpress everything went ok. All places where my name has to appear seems just perfect.
Except on profile. The place is on header.. there stayed old username and i want to make it disappear so can appear new username.
Anyone can help me? Tried to deactivate.. this and that.. nothing happens. Always same.
im working with pre_get_posts action hook, and calling xprofile_get_field_data in the function it is returning an empty string, after looking into the function it seems the $bp->profile array is not fully loaded, and $bp->profile->table_name_fields is missing and generating a mysql error.
I have disabled all other plugins, and still the issue persists.
what am i missing?
WordPress 5.2.3
BuddyPress Version 4.4.0
this is an intranet site!
Theme: Multi NewsVersion: 2.6.5 [www.momizat.com]The Issue does not happen on TwentyFifteen/ TwentyTwelve
Looking for a fix.
Hi,
on my site https://abtomed.com/registrieren/ nobody get’s a mail while register.
Not the user himself, nor the admin of the site.
I already tried smpt solutions, which unfortunately don’t help.
Also the plugin https://wordpress.org/plugins/bp-registration-options/ doesn’t help at all.
What am i doing wrong about that issue?
Maybe someone can help to figure out. Also i want a “I read the privacy policy informations” checkbox inside this registration form and a recaptcha spamprotection, but don’t know how to solve it… :/
Cheers
JensI’d like to limit the ability of WordPress users with the “Subscriber” role to interact with the BuddyPress functionality of my website. Is there any way to remove permissions for posting activity updates, commenting on them, etc? Basically I want one set of members to be able to post activity stream updates, and the other set to just spectate with the ability to comment on the site’s blog posts, and not much else (like the regular subscriber role w/o buddypress access).
I know BP doesn’t really work the same way with roles/capabilities as wordpress… My only ideas off the top of my head are to nest the relevant BP template bits in tags that hide them based on role, but that seems… not pretty.
Thanks for any pointers!
I actually thought this was a part of WordPress but I’ve been searching docs and googling and haven’t found anything specifically.
The site is for a physical membership site and only members in good standing will be allowed to register for an account and therefore able to use BuddyPress.
So the potential new user would fill out the registration form, submit, verify there email and wait for approval from the officers. The BuddyPress registration form will have an extra field to identify the member by their membership number.
The key is that only accounts that have been approved can see any of the BuddyPress features like member profiles, directory etc. non-logged in users shouldn’t see anything from BuddyPress except the login and registration pages.
I’m hoping this is easier than it looks so far.
Hi
I have set in WP Settings>Discussion,
“Hold a comment in the queue if it contains 1 or more links” – ie. i do not want to allow posting of any EXTERNAL links in post comments and updates on my site.
However, i DO want to allow INTERNAL links in post comments/ BP updates/ BP replies (without holding/ approval)
I found a fantastic snippet which does the job perfectly for comments on WP posts & post types here:
https://wordpress.stackexchange.com/questions/257916/exclude-internal-links-from-comment-moderation
However, BP is still blocking internal links posting – any suggestions on plugins/ snippets to allow internal links but not external links, please?
thanks very much in anticipation, Vivek
WordPress version: 5.2.1
Budddypress version: 4.4.0I am coding a friends import page, and everything is working as expected, except that when I go to view the imported friends under Friendships, no members show up. Instead there is an info box that says no members found. The friends count on the nav bar is correct. Does anyone have any idea about what might be the issue?
Here is the function I wrote to upload and parse a csv file with php.
function handleFriendsImportPostback() { $msg = [ 'message' => '', 'has_error' => false, 'friends_added' => 0, 'row_count' => 0 ]; //if there was an error uploading the file if ($_FILES["csv"]["error"] > 0) { $msg['message'] = "Return Code: " . $_FILES["csv"]["error"] . "<br />"; $msg['has_error'] = true; } else { $currentUserID = get_current_user_id(); $tmpName = $_FILES['csv']['tmp_name']; $csvAsArray = array_map('str_getcsv', file($tmpName)); foreach ($csvAsArray as $friend) { $fname = $friend[0]; $lname = $friend[1]; $email = $friend[2]; $msg['row_count']++; $user = get_user_by('email', $email); if(empty($user)) $user = get_user_by('login', $email); if(!empty($user)) continue; $userdata = array( 'first_name' => $fname, 'last_name' => $lname, 'user_email' => $email, 'user_url' => '', 'display_name' => trim($fname . ' ' . $lname), 'user_login' => $email, 'user_pass' => wp_generate_password( $length=8, $include_standard_special_chars=false ), 'show_admin_bar_front' => 'false', 'description' => '' ); $userID = wp_insert_user($userdata,true); if(is_wp_error($userID)){ continue; }else{ $msg['friends_added']++; } $user = new WP_User($userID); $user->add_role('rdp_unverified'); $user->remove_role( 'subscriber' ); friends_add_friend( $currentUserID, $userID, true); } $msg['message'] = __('Import completed.'); } return $msg; }//handleFriendsImportPostbackHello,
Our members are experiencing issues with our ‘Groups’ on our website. I’m not an expert on BuddyPress or WordPress, so I’m not sure where this issue is stemming from. The top of our ‘Ticket Exchange Group’ shows the following error. Also, new users can not even get access to the group, even though they are supposed to be added automatically. It will not allow us to add any members manually, either. Along with this, the members that can actually enter the group cannot get past the first page of postings, and are not receiving email notifications. Please help!
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘bp_group_new_topic_button’ not found or invalid function name in /nfs/c09/h02/mnt/128956/domains/ndchicago.org/html/wp-includes/class-wp-hook.php on line 286
Hello Please Help ! when any member registers and admin can approve the members or add into the participants but the members directory not growing up still after doing this can any one please help that i need that member not need login and members directory should goes up when admin approve them by using plugin in wordpress Thank you !
Hello,
My users and myself are having a problem where we recieve friend request notifications, and can see the number of friend requests notifcations we have but when we go the the “Requests” page there are no friend requests to be found. The only thing there is a message that says, “No friend requests pending”.
After some investigation I found that going in and manually changing the name of the user in the extended profile will make that specific user show up in friend requests. This is something that used to happen automatically.
Is there a fix for this?
Thanks in advance.
I will try to answer as many of the Mod questions as I can here:
Wordpress Version: Version 5.2.3
Recently upgraded from wordpress version: 5.2.2
Wordpress was functioning fine before I made this install. So was Buddypress
Current Version of Buddypress: Version 4.4.0
Updated Buddypress from Version: 4.3.0
I have many plugins installed.
Using BuddyBoss theme
Hi everyone,
Here is my setup:
WordPress 5.2.3
Buddypress Version 4.4.0
Events Manager 5.9.5
@LocalhostI did search through the forum and a famous search tool but didn’t find it yet:
I would like to link, via the url and $_GET[‘r’] data, to the “compose buddypress profil page” with more than one recipient. Something like:
a href=”mysite.com/members/user/messages/compose/?r=user1…user2…user3″>link</aIs it possible and what would be the semantic for?
If Not, what solution should I use to get the existing compose page with the field “to” containing “@user1 @user2 @user3”.
I can get the user with all data (name, login, id), as an array for exemple. And I don’t need to manage large list of user (mostly up to 5-10).Thanks for helping.
Topic: Registration fail on mobile
Hi,
My registration seems to work fine on the computer but I get reviews that some users can’t register on their mobile device. I tried to register through mobile and have the same issues. After completing the form I get redirected to the same registration form with no errors.Website info:
– WordPress version: 5.2.3–nl_NL
– Website: mierenmarkt.be
– Registration form: mierenmarkt.be/registratieI tried:
– Disable plugins (-> didn’t work)
– Change theme to default (-> didn’t work)Anyone knows any fixes? I don’t get error reports in my error logs.
Topic: Use Cyrillic Names
Hi, I use social logins plugin. When guest register by fb and in fb his name writed in Cyrillic – login in his wordpress profile also will be in Cyrillic. In this case nawigation in buddypress not work – https://i.imgur.com/CfLjbt4.png is it possible fix it?