-
Jeremy Love replied to the question Get component type or activity type of photos in the forum BuddyBoss Wall 10 years ago
I was able to write up a function to pull the activity meta from the db by passing the activity id into it the function.
If you place this function into the functions file
function activity_meta_info($activity_id){
[Read more]
global $wpdb;
$meta_info = $wpdb->get_results("SELECT * FROM wp_bp_activity_meta WHERE activity_id='.$activity_id.'");
return… -
Jeremy Love replied to the question Get component type or activity type of photos in the forum BuddyBoss Wall 10 years ago
I was able to write up a function to pull the activity meta from the db by passing the activity id into it the function.
If you place this function into the functions file
function activity_meta_info($activity_id){
global $wpdb;
$meta_info = $wpdb->get_results("SELECT * FROM wp_bp_activity_meta WHERE activity_id='.$activity_id.'");
return…[Read more]
-
Jeremy Love replied to the question Get component type or activity type of photos in the forum BuddyBoss Wall 10 years ago
I was able to write up a function to pull the activity meta from the db by passing the activity id into it the function.
If you place this function into the functions file
function activity_meta_info($activity_id){
global $wpdb;
$meta_info = $wpdb->get_results("SELECT * FROM wp_bp_activity_meta WHERE activity_id='.$activity_id.'");
return…[Read more]
-
Jeremy Love's profile was updated 10 years ago
-
Jeremy Love started the question Get component type or activity type of photos in the forum BuddyBoss Wall 10 years ago
Im trying to customize the theme of my site and I am using the bp wall plugin and ive had some success, except for when I am customizing the the activity if the content thats being shown is a photo I have no way of detecting if it is a photo or a regular post. I check the component using bp_current_component() to see if it says its a photo and to…[Read more]