Replies
- John B on November 10, 2019 at 3:37 pm in reply to: MediaPress – One Upload button instead of many. #26372
Awesome, thank you.
- John B on October 24, 2019 at 2:46 am in reply to: [Resolved] BuddyPress Moderation Tools Report Button – Modal Pop-up Window #26121
A million times thank you. That worked.. You’re the best!!
- John B on October 10, 2019 at 8:16 pm in reply to: BuddyBlog/BP Simple Front End Post – Post Thumbnail URL(How to add link to post) #25824
It seems like a BuddyPress issue. I’ve opened a couple of tickets on the BuddyPress Support page.
https://buddypress.org/support/topic/activity-stream-blog-posts-make-featured-image-clickable/
https://buddypress.org/support/topic/remove-or-replace-from-blog-post-excerpts-on-the-activity-stream/I’m able to target the Featured Image and Excerpt on all pages except the Activity Stream.
If I can figure this out I’ll update this ticket in the future. Thx
- John B on September 2, 2019 at 12:59 pm in reply to: [Resolved] Simple Front End Post – iFrame Height Issue – mce-tinymce #25154
That did the trick. Thank you!!!!!!!!!!!!!!
- John B on August 19, 2019 at 10:51 pm in reply to: [Resolved] BuddyBlog – Display Blog Count – Custom Page #24768
Thank you for leading me in the right direction. The following code worked for me.
<?php echo count_user_posts( $user_id = bp_displayed_user_id(), $post_type = 'post' ) ?>
When I arrive on a users profile, it now shows me how blog posts the users has created. Below is the code is its entirely.
<a href="<?php echo bp_displayed_user_link().'buddyblog/'; ?>"> <?php echo count_user_posts( $user_id = bp_displayed_user_id(), $post_type = 'post' ) ?> Blog</a>
This issue is resolved.
Thx!!
- John B on August 17, 2019 at 3:29 am in reply to: [Resolved] BuddyBlog Issue – Activity Stream missing content – Excerpt not appearing #24689
This issue is resolved.
I had a bad function in my functions.php file.