Search Results for 'buddypress'
-
AuthorSearch Results
-
June 12, 2012 at 2:54 am #135688
In reply to: [Resolved] Remove Comment under Activity Feed
@mercime
Participant@goviral Closed your other thread with basically the same questions.
1. To remove commenting (and comment button) in activity stream,
Just add this to your theme’s functions.php file
`// Do not allow commenting in activity stream
add_filter(‘bp_activity_can_comment’,’__return_false’);`2. is there any way I can change other buttons/icons through the child theme?
Simplest way is to use text-indent to the specific button and add the image background. For example, for the Activity Favorite button, you’d add something like this in your theme’s style.css file
`#activity-stream .activity-meta .fav {
background: #000 url(“images/myfavoriteimage.png”) 0 0 no-repeat;
text-indent: -9999px;
}`then change background color or image when you hover over the favorite link. Use Firefox add-on Firebug or use Chrome developer to identify selectors to change styles/values for in your stylesheet.
June 12, 2012 at 1:45 am #135687In reply to: Change Favorites button to my own icon/word
@mercime
ParticipantJune 12, 2012 at 1:44 am #135686zrb0529
MemberStill no luck. Is there something I need to change in Apache config?
June 12, 2012 at 1:42 am #135685In reply to: Problems with Layout of profiles
@mercime
ParticipantGot a 404 on your link and BuddyPress was not activated in your install when I checked it.
June 12, 2012 at 1:36 am #135683@mercime
ParticipantBP requires pretty permalinks. Go to Settings > Permalinks and set permalink to other than what’s there on default.
June 11, 2012 at 11:48 pm #135682In reply to: [Resolved] Unable to style my admin bar menu
danbpfr
ParticipantThank you @imath
1) your solution works partialy.
The float applied to the span brings the number on the same line as the text, but the span content is upper the normal baseline.I had to adjust with heigh and lineheigth. Here’s the whole css i applied to the span:
Now it’s OK !span.toto { float:left; margin: 3px 5px 3px 15px; height:15px; line-height:15px; background: #dd0000; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #fff; font-weight: bold; padding: 2px 8px; }2) The whole admin menu is coded without ending li tags for each list element. Closing tag for li is not required. http://webdesign.about.com/od/htmltags/qt/optional-html-end-tags-when-to-include-them.htm
June 11, 2012 at 9:09 pm #135680In reply to: [Resolved] Unable to style my admin bar menu
Anonymous User
InactiveHello @chouf1,
you can fix it by css :
#toto span{ float:left; margin:5px; }But at line 4 of your code don’t forget to close the li tag
..."_blank">Users</a> </LI>';June 11, 2012 at 8:24 pm #135679In reply to: buddypress text editor suggestions?
Mike3853
Memberok, so the “reply_text”/editor id field doesn’t matter what is in it? Wondering how it knows which editor to use?
June 11, 2012 at 8:03 pm #135678In reply to: Buddypress Teams?
vienem
MemberYeah I tried it and was almost perfect for what I needed but I needed to limit the hierarchy so that only core groups could make sub groups instead of it being infinite.
I did post on there forums but no replies with no luck
I’m still learning WordPress and Buddypress and browsed the code but couldnt see how I would limit them.June 11, 2012 at 7:39 pm #135676In reply to: Buddypress Teams?
danbpfr
ParticipantHi,
maybe try this plugin ?
https://wordpress.org/extend/plugins/bp-group-hierarchy/June 11, 2012 at 7:22 pm #135673In reply to: Building a child theme: overriding default.css
pgideonbolger
MemberHi Chouf1
Sorry, I’m not being clear enough. I’m already using style.css, but I’m finding that overriding the #nav rules in default.css more complicated than its worth.
What I’d like to do is override default.css in the theme with a local copy so I can comment out the section which is causing me problems and replace it with fresh rules in style.css.
This is more a WordPress question than a Buddypress one, but is it possible to get WordPress to load a theme css file by placing a copy in your child theme, or do I need to mess with the PHP to change the location? In the interests of BC and upgradablility I’d rather not trash all the CSS.
June 11, 2012 at 12:53 pm #135670In reply to: Building a child theme: overriding default.css
danbpfr
ParticipantHi, you don’t need to copy default.css to your child theme. Use instead style.css in the child theme and add your changes to the specific part taken from default.
Example: let’s say you want to change the width of div#content .left-menu from 170 to 200px
in default.css you have`div#content .left-menu {
float: left;
width: 170px;
}`In your child theme, you write this in the style.css file
`div#content .left-menu {
width: 200px;
}`https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
June 11, 2012 at 12:43 pm #135668In reply to: buddypress text editor suggestions?
danbpfr
ParticipantHi,
you can use the code above “as is” and yes, you got the right path to topic.php
June 11, 2012 at 12:35 pm #135667In reply to: [Resolved] Remove Comment under Activity Feed
danbpfr
ParticipantHi,
perhaps read this on codex ?
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/June 11, 2012 at 11:42 am #135664goviral
MemberI’d love to find out about this too. BuddyPress is awesome and would be fantastic in an app!
June 11, 2012 at 8:45 am #135661karljung
MemberI have posted the above on my style.css, but bullets are still there?
KJune 11, 2012 at 7:59 am #135660karljung
MemberMerciMe I looked at your https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
Looking at your advice where exactly must I place the suddested lines in my child style.css file
http://pastebin.com/yCSVjfiK
Please help.
Thank you . KarlJune 11, 2012 at 7:39 am #135659karljung
MemberI had made comments see here http://godstruths.com/2012/06/06/salvation-the-biblical-understanding/ but cannot get page numbers to show? Last hurdle.
June 11, 2012 at 7:32 am #135658karljung
Member@mercime thank you, manged to get the look and visuals sorted out, will take your advice.
Then maybe you have some wisdom, on my posts page, when people comment I want these pages to display pagenumbers ie after 5 or 10 comments, then break and make a next page.
I have used the default settings, no go; then added every related plugin possible but page numbers dont show.
Have you any wisdom?
Thank you. KarlJune 11, 2012 at 5:07 am #135655In reply to: Signatures on forum posts
@mercime
ParticipantNo, you’d need to create a totally different plugin to add signature to the Group Forums as it’s using the bbPress 1.0 custom BuddyPress version while that plugin is for the totally revamped bbPress 2.+ .
There was a plugin for the old BP1.2/bbPress1.+ but it was not updated for BP 1.5 https://wordpress.org/extend/plugins/buddypress-group-forum-extras/ you could try to update yourself or hire a developer to do so.
Other than the above, you could wait for BP 1.6 where Group Forums will be migrated over to bbPress 2.+ Sitewide Forums where you could use the signature plugin.
June 11, 2012 at 4:49 am #135654@mercime
Participant@karljung from your post at https://buddypress.org/community/groups/installing-buddypress/forum/topic/compatability-with-enews-theme-from-elegant-themes/
I just checked out the BP pages in your site. Looks like you’ve already completed the major part of the compatibility process. The layout structure looks good and you only need to tweak the styles to correct some vertical spacing and removing the bullets from ordered lists, etc.
June 11, 2012 at 4:44 am #135653@mercime
Participant@karljung let’s bring it back to your original topic https://buddypress.org/community/groups/installing-buddypress/forum/topic/begging-plz-help-buddypress-default-theme-clashes-issues-with-suffusion/
June 11, 2012 at 4:40 am #135652In reply to: Signatures on forum posts
Artisantopia
ParticipantThanks @mercime that’s what I thought. But, that seems very odd to me – why not have one that works on both types of forums. This is a pretty basic thing to offer to members.
I know enough php to get myself into trouble, with some guidance do you think I could perhaps edit that plugin to make it work on group forums?
thanks for your help
June 11, 2012 at 3:58 am #135651In reply to: [Resolved] Using theme musiclife will not align.
@mercime
Participant@aarc I didn’t notice that the code got messed up above before I left the forums, sorry about that.
Delete the current content of your sidebar-buddypress.php file. Replace it with the cleaned up code above and upload to server.
June 11, 2012 at 3:30 am #135650goviral
MemberOh, now I won’t feel so bad when I can’t find the search function.
Thanks
-
AuthorSearch Results