Search Results for 'buddypress'
-
Search Results
-
Hi,
Based on the selection a user makes of a custom field when registering, the correct “Field Group” should appear on their profile (both back-end editing and front-end viewable to the public).
I added a custom profile field to the “Base” group. It is a drop down box called “Account Type” which appears on the registration page.
The options are:
Actor
Producer
DirectorNow the part where I’m stuck.
When registering, if a user selects “Actor”, they should have the “Actor” custom profile field group appear on their profile. If “Producer” is selected, then the “Producer” custom profile field group should appear, etc.
I don’t want this based on WP role which I’ve seen some people use to solve this. Instead, it should be based on the selection of that initial custom profile field “Account Type”.
Either a plugin or custom code would be much appreciated!
I’m using the latest version of BuddyPress V2.2.3.1 and the latest version of WordPress V4.2.2.
Thank you!
Hello, so I’m trying to do some coding with buddypress on my own. I’m trying to make a search function in my website where users can search for members using the data from their profiles.
For example, There are teachers and students on the website. On a page called “Find Teachers”, I want the users to be able to search for teachers using their names and the subjects they teach. A teacher adds these subjects using checkboxes on his profile.
I have created the query for the searching by name but when I tried to add searching by the checkboxes values I couldn’t understand the way Buddypress handles the checkboxes data in the database. When the teacher checks “English”, “Math” and “Substitute” from the provided choices, the data in the database appears like this:
a:3:{i:0;s:7:”English”;i:1;s:4:”Math”;i:2;s:10:”Substitute”;}Now I want to compare the data the user will insert in the search form with the data in the website but I can’t figure out the way Buddypress Encrypts the data in the database.
Is there maybe a function included with Buddypress that would encrypt the data from the form to the format in the database or perhaps decrypt the data from the database so I can compare them in a sensible way?
I really need help with this, thanks guys!
The following line of code (run during ‘init’ action) …
$userID = $bp->displayed_user->id;
produces an error in the debug.log.
Undefined property: stdClass::$idYet if I print_r($bp->displayed_user), the ‘id’ property is there and set.
I am using the latest WordPress and Buddypress.
What am I missing?Hi,
I’ve just installed BuddyPress on my website and I want to start using it. I’ve setup the default pages and they seem to work. Now I want to create a menu structure by adding items from the BuddyPress list to my menu. Unfortunately most of these preset links won’t work. If I click on these items e.g. Activity it redirects me to my profile page (UserPro a 3rd party user profile plugin). It seems there is some kind of redirect from these menu links to default profile page. Hope anyone knows what this issue is?
Regards,
Robert
In my site (http://pickandpopculture.it) buddypress notifications works just on mentions, when I reply to a comment’s user he doesn’t see any kind of notification. Is this problem just of my site?
Wordpress 4.2.2 with “Hueman theme”Thanks
Use buddypress like whatsapp – possible?
Some broad thoughts will be appreciated.
Themes like buddyboss can probably help with always-on notification – but I have not used and no idea. Your thoughts will be appreciated.Hey,
After more hours than I care to admit, 🙂 I finally found a way to add a custom post to an activity stream without Site Tracking… thanks @shanebp for this.
However, two issues came up… 1) the blurb in the SWA is not as expected, and 2) the Featured image never came through. I’m just trying to get an idea as to why.
As referenced, the activity_action is:
$activity_action = sprintf( __( '%1$s created a new Post, %2$s', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' );But what shows up on the SWA is: “username wrote a new item” — where username links to the Author and the word item links to the post.
I was expecting something along the lines of: “username created a new Post, post title” — where post title was the title of the post and its link.
Any guidance on what I am missing to make these two things happen?
Thanks!
Topic: LaTeX and equation editing
Since the most recent question about LaTeX is about 5 years old, I think it is worth asking again if there is any improved support for this. The de facto LaTeX plug-in for WordPress has got to be QuickLaTeX, it blows the others out of the water, and QuickLaTeX relies upon parsing the text somebody writes, and rendering anything parenthesised by dollar signs $…$ as math. It has an option to apply to the entire site, which is ideal for those building websites involving lots of math.
Now, I am currently involved in designing a learning management system, and what I want is for all text produced by anyuser to be QuickLaTeXable. At the moment, LaTeX renders in many places but not all. In particular, in messages between users in the BuddyPress system it displays raw, as $\int_{a}^{b}f(x)\,dx$ for example. I haven’t tested for every possible context, and you may have a better idea of where/why equations work and don’t work.
Is there any hope of BuddyPress/bbPress working together with QuickLaTeX to produce a solution to the basic problem of having mathematical conversations on a WordPress site?
Hi,
1) I’m looking for ways to let members show Goodreads books in their profile. I was wondering if it was possible to create an extended profile field for a Goodreads ‘currently reading’ rss-link and have it display the content in the member profile?
2) Or even better, but far more workextensive, I know: How about a “Buddypress Book Club plugin” – book stuff and book shelves in your member profile and review and recommendation functions – something like Goodreads?
Thanks
Topic: BuddyPress Profile Images
We are using WordPress Multisite version 4.2.2 with sub-domain folders. We are using the following plugins:
BuddyPress ver. 2.2.3.1, BuddyPress Xprofile Custom Fields Type ver. 2.1.6, and s2Member Framework ver. 150311 + s2Member Pro v150311.
When a user uploads their avatar image to the primary website along with additional BuddyPress Profile Custom Field information the avatar image does not show in the subdomain for the user account. We added the following code to the bp-custom.php file suggested from this link but it still does not allow the profiles images to show in the sub-domain:
/* This fixes the MULTIBLOG avatar problem */ function nfm_bp_avtar_upload_path_correct($path){ if ( bp_core_is_multisite() ){ // $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, ‘upload_path’ ); $path = ABSPATH . 'wp-content/uploads/'; } return $path; } add_filter('bp_core_avatar_upload_path', 'nfm_bp_avtar_upload_path_correct', 1); function nfm_bp_avatar_upload_url_correct($url){ if ( bp_core_is_multisite() ){ $url = get_blog_option( BP_ROOT_BLOG, 'siteurl' ) . '/wp-content/uploads'; } return $url; } add_filter('bp_core_avatar_url', 'nfm_bp_avatar_upload_url_correct', 1);