Вход на сайт

Просмотр новости

Найдите то, что Вас интересует

manonetc started the topic Xprofile Fields in Activity Form in the forum How-to & Troubleshooting

Дата публикации: 30-03-2026 15:32:42



Основное содержимое страницы с новостью.

Does anyone know how to add xprofile fields into the Activity form?

I would like to add a dropdown field, populated with 6 xprofile fields, that when a member s posting they can choose from the dropdown field, and add their choice to the activity they are posting.

I’m almost have it, I’m stuck at this first stage, but the names aren’t showing up:

add_action( 'bp_activity_post_form_options', 'render_pet_activity_fields' );
function render_pet_activity_fields() {
	echo '<label for="our-pets">Choose pet:</label>';
	echo '<select name="our-pets" id="our-pets">';

	$args = [
		"field" => "137",
		"user_id" => bp_get_activity_user_id(),
	];
	$petnames = [bp_profile_field_data($args)];
	if (!empty($petnames)) {
		foreach($petnames1 as $petname) {
			echo '<option value="' . strip_tags($petname) . '">' . strip_tags($petname) . '</option>';
		}
	}    
	$args = [
		"field" => "138",
		"user_id" => bp_get_activity_user_id(),
	];
	$petnames2 = [bp_profile_field_data($args)];
	if (!empty($petnames2)) {
		foreach($petnames2 as $petname2) {
			echo '<option value="' . $petname2 . '">' . $petname2 . '</option>';
		}
	}  
	
	echo '</select>';
}

Using WordPress version 6.94.

Схожие новости

#Наименование новостиТональностьИнформативностьДата публикации
1Noel Colby started the topic Not able to comment on activity streams in the forum How-to & Troubleshooting0513-11-2025
2jone started the topic in the forum Installing BuddyPress0516-02-2026
3ED-EX started the topic in the forum Ideas0003-04-2026
4Yvan Morel started the topic link BuddyPress to my site's main menu in the forum Installing BuddyPress0526-03-2026
5Titan Vina started the topic in the forum Installing BuddyPress0508-04-2026
6jessica555 started the topic How can I customize the members/community page? in the forum How-to & Troubleshooting0214-01-2026
7Antipole replied to the topic Warning: Attempt to read property "id" on null [...]bp-xprofile-template.php in the forum How-to & Troubleshooting0221-04-2026
8Steve replied to the topic Error Updating the Profile Picture in the forum How-to & Troubleshooting0507-03-2026
9Indigetal WebCraft replied to the topic Add `privacy` column to `bp_activity` for per-item visibility control in the forum Requests & Feedback0205-06-2026
10Mike Witt replied to the topic How to hide or replace Gravatar text on profile in the forum How-to & Troubleshooting0527-06-2026

Классификация: Пресс-релизы. Схожих патентов: 0. Схожих новостей: 10. Тональность: 0. Информативность: 2. Источник: buddypress.org.