-
Murray replied to the question shortcode to show all latest pictures added from users in the forum BuddyBoss 3.0 10 years, 4 months ago
hi there @milena
have a look at
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src -
Murray replied to the question shortcode to show all latest pictures added from users in the forum BuddyBoss 3.0 10 years, 8 months ago
fyi
$image = wp_get_attachment_image_src( $attachment_id, $img_size );
$img_size isnt defined; -
Murray replied to the question Can't create groups in Buddyboss in the forum BuddyBoss 3.0 10 years, 8 months ago
Hi there
I found it was a conflict with group hierarchy plugin – disable that and create groups worked fine.
cheers
m -
Murray replied to the question shortcode to show all latest pictures added from users in the forum BuddyBoss 3.0 10 years, 9 months ago
Hi there
I was looking in to this…
REF
andAdd custom filters to loops and enjoy them within your plugin
I ended up making a custom page template and popping in the activity-loop.php filtered to include only the activity…[Read more]
-
Murray replied to the question User can create slides? in the forum BuddyBoss 3.0 10 years, 10 months ago
ok
quick fix is to replace
‘capability_type’ => ‘post’,
in buddyboss-slides-loader.php line 31:
‘capability_type’ => ‘page’,
(in buddyboss/buddyboss-inc/buddyboss-slides)
and hope that that user role isn’t able to edit pages too. 🙂oh –
and dont update the theme -
Murray replied to the question User can create slides? in the forum BuddyBoss 3.0 10 years, 10 months ago
Hi there
I have the same issue…
Even if you install a role manager plugin you dont see the buddyboss_slides roles ?
therefore how would remove_cap work???This is because when you created the CPT in the theme ..tsk tsk. You aligned its capabilities to post creation in buddyboss-slides-loader.php line 31:
‘capability_type’ => ‘post’,
(not cool…[Read more]