Search Results for 'theme'
-
AuthorSearch Results
-
May 14, 2015 at 8:53 am #239056
In reply to: Edit Group and Profile Templates
danbp
ParticipantYou should ask for this on your premium theme support.
Read first here:May 14, 2015 at 1:18 am #239051In reply to: Edit Group and Profile Templates
agalassi0917
ParticipantThe sidebar automatically is pushed to the bottom of the profile and group templates, I’d like to be able to move it to the right where the default position is. I think it could be pushed to the bottom due to the Divi theme, but i’m not sure.
I’d like to know if there were a way to add widgets such as side bars or menus to the template pages in order to facilitate easier navigation through the buddypress pages.
Thanks for your help!
May 13, 2015 at 11:55 pm #239049In reply to: Edit Group and Profile Templates
agalassi0917
ParticipantThank you, I’ve created a child theme based off of the Divi theme. Is the only way to edit the buddy press template files though adding the code to the php files, or is there another way to edit these pages (plug-in, buddypress specific theme, etc.)?
May 13, 2015 at 4:28 pm #239042In reply to: Remove friend notifications for all activity page
shanebp
ModeratorYou can place this in your theme/functions.php or in bp-custom.php.
It will stop recording entries for 3 types after you include the function.
You can add othertypesas desired to the$excludearray.function steve_dont_save_activity( $activity_object ) { $exclude = array( 'new_avatar', 'updated_profile', 'friendship_created' ); if( in_array( $activity_object->type, $exclude ) ) $activity_object->type = false; } add_action('bp_activity_before_save', 'steve_dont_save_activity', 1, 1 );To delete existing entries, use the interface here
[yoursite]/wp-admin/admin.php?page=bp-activityMay 13, 2015 at 1:34 pm #239039In reply to: Bp register page
airdrummer
Participantand i just verified that the theme isn’t @fault…
May 13, 2015 at 1:25 pm #239037In reply to: Bp register page
airdrummer
Participantnothing works4me:-\ i have all the pages correctly created & linked, but nothing shows up:
http://lalofoundation.webhop.org/index.php/about-us/members/register/
is there a conflict with my theme(hathor)?
May 13, 2015 at 1:17 pm #239036In reply to: Avatar preview has been stretched on BuddyPress site
awaise17
ParticipantHi. Thank you for getting back to me.
Here are the responses to your queries.1- If you switch to a WP theme like 2013, does the problem persist?
Ans: I haven’t tried that. I’ll check them and will let you know asap.2- What are your media settings re images? Are they square? Here: β¦/wp-admin/options-media.php
Ans:3- Have you have set any avatar size constants in code?
Ans: No, I haven’t defined any constants in the code. Should I?May 13, 2015 at 1:10 pm #239035In reply to: Avatar preview has been stretched on BuddyPress site
shanebp
ModeratorIf you switch to a WP theme like 2013, does the problem persist?
If not, it’s something in your theme.What are your media settings re images? Are they square?
Here: …/wp-admin/options-media.phpHave you have set any avatar size constants in code?
See: https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/#how-to-change-buddypress-avatar-sizesMay 13, 2015 at 8:50 am #239027In reply to: Edit Group and Profile Templates
danbp
ParticipantBuddyPress templates are stored in bp-templates/bp-legacy/buddypress/
To customize your theme, create first a child-theme.
In this folder, add a folder called buddypress and copy any file you want to modify into it from /bp-legacy/, by respecting the original path child-theme/buddypress/members/xxx.php or /child/buddypress/activity/xxx.phpMore details are avaible on codex.
May 13, 2015 at 1:21 am #239018jkin
ParticipantHi Shanebp,
Thank you very much for your prompt reply.
The programer that helped me to setup the theme with buddypress/bbpress and userpro, from the Theme Dutch, told me that they use userpro’s register, hence, the ‘register’ and the ‘activate’ pages are not associated with the buddypress.
When I land http://www.enihongo.net/register/, it would jump to http://www.enihongo.net/profile/register (for userpro) now.
There is no ‘activate’ page now.May 12, 2015 at 10:24 pm #239008In reply to: BuddyPress login problem
Henry Wright
ModeratorDo you know how to get rid of it?
Try using a different theme.
May 12, 2015 at 4:17 pm #238984In reply to: No Sidebar on Profile Page
maddogprod
ParticipantIn case anyone has this problem, here’s how I fixed it (I’m still not sure why it wouldn’t work as intended automatically):
– I registered the sidebar in fucntions.php
– Added a copy of page.php to the child theme directory: /wp-content/themes/wellness/buddypress/members/single using the name: index.php
– Where the code in that page calls the Sidebar, I changed it to:
<?php dynamic_sidebar( 'new_members_area' ); ?>which of course includes the registered name of the sidebar– For some reason it wasn’t picking up the Sidebar CSS so I enclosed it in a div:
<div id="sidebar"> <?php dynamic_sidebar( 'new_members_area' ); ?> </div>-VOILA!
May 12, 2015 at 2:55 pm #238980In reply to: How to edit the blog display
shanebp
ModeratorYou can create template overloads of the files you want to change.
The single group templates are here:
buddypress\bp-templates\bp-legacy\buddypress\groups\single\May 12, 2015 at 1:48 am #238964In reply to: Editing group role permissions
shanebp
ModeratorCreate a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\groups\single\activity.phpIn the overload, change this:
<?php if ( is_user_logged_in() && bp_group_is_member() ) : ?>to this:
<?php if ( is_user_logged_in() && bp_group_is_admin() ) : ?>May 11, 2015 at 11:26 pm #238955modemlooper
ModeratorMay 11, 2015 at 9:14 pm #238950In reply to: HIde BuddyPress and bbPress items from guests
caniwigirl
ParticipantHi @minglonaire,
The forum part is easy because that is built into bbPress in the first place. If you read the “Getting Started with bbPress” page https://codex.bbpress.org/getting-started-with-bbpress/ you will note that there are three settings for forum visibility:
Public β Anyone can see these forums
Private β Only logged in registered users can see these forums
Hidden: Only Moderators/Admins can see these forumsI made my base forum (which is actually a category) Private, and the majority of sub-forums Public – but tied into the BuddyPress groups so you required membership to each particular group to access each of the forums. This only works if BuddyPress is hidden from logged out users.
If you don’t want to use BuddyPress groups… just make all your forums Private.
Note that BuddyPress defines Public, Private and Hidden slightly differently than bbPress
I had issues with my theme not displaying Hidden Groups to the people it should… If this is an issue for you, check out another thread… https://buddypress.org/support/topic/hidden-groups-and-forums-not-showing-for-members-of-them/
All the best! π
May 10, 2015 at 10:52 am #238915In reply to: Show Activity Comments To Everybody
dolphspeed99
ParticipantHi and thank you for such a quick answer. I know I should have checked with a stock theme first, but I noticed the problem when the traffic was quite high on my website and didn’t want to ruin the users experience by changing to another theme. It seems that 2015 theme is fine, so this is theme related, you were right.
However, the link you gave me has nothing to do with my problem, that is a matter of CSS, not a matter of permissions.
Thank you once again.
May 10, 2015 at 7:19 am #238913In reply to: Minimum password strength
Lisa
ParticipantI tested it on my site and on a clean installation and both do not work on members/member_name/settings/ . Users do see a password strength meter, but can still change their password into something simple as 1 or A. How did you get it to work on members/member_name/settings/?
With WordPress there are many plugins (none that work with buddypress frond-end settings page) that set a minimum strength for passwords. Such as Login Security Solution and iThemes Security. You can force users to change their password or set an amount of days when users must change their password.
It seems like a major security problems (that has existed for a few years) that Buddypress allows simple passwords such as 1 and A on members/member_name/settings/
May 10, 2015 at 4:16 am #238909In reply to: Automatic links in profile fields
Klosurdo
ParticipantThese are the errors I receive when trying to activate buddypress
Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home1/cmpgorg/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
Fatal error: Cannot redeclare kleo_bp_replace_placeholders() (previously declared in /home1/cmpgorg/public_html/wp-content/themes/kleo/lib/theme-functions.php:1894) in /home1/cmpgorg/public_html/wp-content/themes/kleo/lib/plugin-buddypress/config.php on line 105
May 9, 2015 at 10:39 pm #238899In reply to: Show Activity Comments To Everybody
danbp
ParticipantYou’re using kleo theme.
Many related topics related to it are avaible on this forum.
One of the latest:
https://buddypress.org/support/topic/buddypress-activities-overlaps-on-post-click/And about third party premium themes, read here
https://buddypress.org/support/topic/when-asking-for-support-2/May 9, 2015 at 2:01 pm #238867In reply to: Automatic links in profile fields
shanebp
ModeratorTry this in your theme/functions.php or in bp-custom.php
function klosurdo_unlink_fields( $field_value ) { $no_link_fields = array( 'Photographer Bio' ); $bp_this_field_name = bp_get_the_profile_field_name(); if ( in_array( $bp_this_field_name, $no_link_fields ) ) $field_value = strip_tags( $field_value ); return $field_value; } add_filter( 'bp_get_the_profile_field_value', 'klosurdo_unlink_fields', 99, 1 );May 8, 2015 at 3:41 pm #238832In reply to: Groups issue
Rene Streber
ParticipantSo back to buddypress forum π
First of, it is working again but I created a new page without a parent (first level) and allocated the group component to that new page.
The old page was at a second level and as I told you, had the same issue to open the single groups with another theme.
Now it is also working with new Boss Theme!
Thanks for your quick support!
May 8, 2015 at 1:28 pm #238829danbp
Participantit feels like βGroupsβ are one of the biggest draws to BuddyPress that makes it more social
It’s one of the interrest of BuddyPress, indeed !
Yes, you can remove status from the template. Search this forum, the’re many topics about this subject.
You could remove this from groups/single/home.php – needs just a template overload.
<div id="message" class="info"> <p><?php bp_group_status_message(); ?></p> </div>May 7, 2015 at 9:39 pm #238803In reply to: Adding xprofile data to the Activity Stream
majecdad
ParticipantI tried in a number of different places, and while not perfect, I settled for placement just above the activity-header. I also caught the div was there and was able to target it to make styling mods in the theme.
One of these days I’ll figure out how all this works, but for now trial and error (and error and error and error) π will have to do.
Thanks for the help guys. Have a great day.
May 7, 2015 at 8:46 pm #238802caniwigirl
ParticipantGood news everyone. My theme developers and I have solved this issue on the theme I am using!
The first tricky hurdle was discovering a !important directive in the main.css of the theme for handling .hidden so I removed it to become
.hidden{display:none;visibility:hidden}so styling in my child theme would work.In my child theme, I did an ‘inspect element’ to discover that the hidden groups were listed as:
<li> class='odd hidden is-admin is-member">_</li> <li> class='even hidden is-admin is-member">_</li>So, I added the following code to my style.css in the child theme
.odd.hidden.is-admin.is-member { display: block; visibility: visible; } .even.hidden.is-admin.is-member { display: block; visibility: visible; }This worked for admin, but not members of the groups who weren’t admins so… Logged in as one of those and using ‘inspect element’ I found that private groups were listed as:
<li> class='odd hidden is-admin is-member">_</li> <li> class='even hidden is-admin is-member">_</li>Applying the same logic as above, I added the following code to my style.css
.odd.hidden.is-member { display: block; visibility: visible; } .even.hidden.is-member { display: block; visibility: visible; }And now everything works π
I don’t know if anyone at BuddyPress support can help tidy up my code, but it does the trick and I hope it helps you @bewitchingfiction @donalconlon @olay And thanks for your help @danbp
-
AuthorSearch Results