Search Results for 'theme'
-
Search Results
-
Hi,
Wordpress 5.2.2, Buddypress 4.3.0 Reign theme from Wbcom http://www.tipua.com
I’ve got this code to hide comments by default with a show/hide option on each activity update, and it’s working fine on my staging site. Ideally though I’d like to display 3 comments by default with a read more option. I’ve read that BP uses a WP config to set the number of comments displayed initially, but the posts I’ve read seem to indicate that was on older versions. Is there a configuration I can set to show the number of comments by default, (In which case I could dispense with the code module) or do I need to modify this code. If the latter, any guidance would be greatly appreciated.
Thanks
Chrisadd_action( ‘wp_footer’, ‘add_comment_hide_show’ );
function add_comment_hide_show() {
?>
<style>
.activity-comments ul{display: none;}
</style>
<script type=”text/javascript”>
jQuery(function($) {
setInterval(function() {
$(‘.activity-meta’).each(function() {
if( !$(this).find(‘.show-comments’).length ){
var html = ‘Show/Hide‘;
$(this).find(‘.button.acomment-reply’).after(html);
}
});}, 500);
$(‘body’).on(‘click’, ‘.show-comments’, function(e) {
e.preventDefault();
var obj = $(this).closest(‘.activity-content’).next(‘.activity-comments’).find(‘ul’);
obj.slideToggle();
return false;
});});
</script>
<?php
}Hello,
I am using BUddypress 4.3.0 on wordpress 5.2.2. Under the option for a member to hide their profile from the members list. If the user selects yes then the profile is hidden.
If you then try to change back to no (so the profile is visible) then the profile remains hidden in the members list. This happens in both the theme I am using (customify) and the Twenty Nineteen theme.
Any help would be much appreciated.
Many Thanks Les
Got this error on this theme.
Fatal error: Uncaught Error: Call to undefined function bp_is_user_forums() in /Applications/MAMP/htdocs/moview/wp-content/themes/moview/members/single/home.php:85 Stack trace: #0 /Applications/MAMP/htdocs/moview/wp-includes/template.php(724): require() #1 /Applications/MAMP/htdocs/moview/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(155): load_template('/Applications/M...', false) #2 /Applications/MAMP/htdocs/moview/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(61): bp_locate_template(Array, true, false) #3 /Applications/MAMP/htdocs/moview/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(338): bp_get_template_part('members/single/...', NULL) #4 /Applications/MAMP/htdocs/moview/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-theme-compat.php(212): bp_buffer_template_part('members/single/...', NULL, false) #5 /Applications/MAMP/htdocs/moview/wp-includes/class-wp-hook.php(286): BP_Members_Theme_Compat->single_dummy_content('') #6 /Applications/MAMP/h in /Applications/MAMP/htdocs/moview/wp-content/themes/moview/members/single/home.php on line 85This file line is: /Applications/MAMP/h in /Applications/MAMP/htdocs/moview/wp-content/themes/moview/members/single/home.php on line 85
elseif ( bp_is_user_forums() ) : bp_get_template_part( 'members/single/forums' );
If I delete this folder from this theme, style is broken.
Please help me.
Topic: Profile Picture Upload Error
Wordpress: 5.2.2
BuddyPress: 4.3.0
Theme: AstraI have an error when changing profile picture. After selecting picture from computer, the green progress loading bar is only “full” for a couple of seconds (as opposed to “filling” corresponding to the file upload), and then it displays a picture for “crop” that is either nothing or miniscule. All that is visible is the “crop” button and what appears to be the four corner dots of the crop tool all bunched together. I have screen shots of the error, but don’t know how to upload them.
Hello, I think this issue has been going on for years, but I dont seem to be able to find that it had been fixed at some point!
I am using wp 5.22 bbpress 2.5.14 and buddypress 4.3.0
It still happens when I use different themes and if I uninstall other plugins.I have hidden buddypress groups which show in the activity stream even if you are not registered or logged in see here
Core women is a hidden buddypress group and should be not visible to anybody except the group members.In bbpress I have a plugin called private groups which also show in the activity stream. You cant enter the forum via the link, but still you see the heading and actually also the text.
I wonder if this problem is because of a false bbp and BP integration? BP doesnt get the info for private/hidden forums?I am very new to this and dont have much experience so please tell me what more information I can give.
Has there ever been a solution to this?
Thank you!Topic: Members not Showing in List
I know this has been asked and resolved before, but none of the solutions have worked for me. When I look at the members page – either while logged in as admin, or logged in as a different registered user – the members page is not finding any members.
I’ve tried adding the php that changes the ‘last activity date’ to the functions.php file, then the bb-custom.php file. Neither changed a thing.
Is there anything else I should try? The Buddypress plugin came as part of a theme I purchased. Their support suggested I try to disable plugins, then enable the bp plugins to see if they work. Is this a correct way to go? It seems like a lot of people have this same issue, so I’m hoping the fix is something simple.
Thanks.
LauraTopic: Any free or premium theme ?
Hi all. In fact I know Buddypress for a long time but never I use it for my projects. Now I am searching for pro themes. Any suggestions it would be appreciated.
Hey team,
Having a problem getting any comments from a user on a custom post type to show up on the activity stream. Currently using the mylisting theme with buddypress integration. I have site tracking enabled and have double checked that I can see comments on the listing in the admin section.
I also found this snippet which enabled a new Activity feed action when ever anyone creates a new listing but does not pick up on any comments:
Would greatly appreciate any help, I’m brand new to buddypress and so far have been really impressed with how powerful it can be, but just running into a bit of a brick wall here.
Thanks in advance,
B