Search Results for 'buddypress'
-
AuthorSearch Results
-
June 11, 2011 at 9:32 pm #114375
In reply to: [Resolved] Buddypress Theme – Header Menu
mexxa84
MemberI figured it out
June 11, 2011 at 9:07 pm #114373sidjags
Memberany progress? would love to see whats been done and test it out to see if we can use it… really looking forward to this.
June 11, 2011 at 9:05 pm #114372In reply to: Limiting text length of activity update posts
Nahum
Participant@aljuk thanks for the tip. that was just something i dragged together and it has worked for me. i’m no pro is for sure but what a pro once told me, “if it works!, it works!” hehe. I thought the copy and paste issue was an issue but folks are saying it hasn’t been so right on.
@justbishop sorry i had my code highlighter plugin deactivated on that post…i’ve fixed it now.
June 11, 2011 at 8:00 pm #114365In reply to: Template File For Single Activity?
pcwriter
ParticipantJust checked too. Like @mercime said, adding the !important param to css style rules sometimes helps when you just can’t tighten up the specificity any more.
If you ever run into a jam where the !important thing just doesn’t cut it, try “weighting” the specificity of the element you’re trying to style. Here’s a simple set of guidelines to help get you started: http://htmldog.com/guides/cssadvanced/specificity/
Just throwing in my 2¢
June 11, 2011 at 7:31 pm #114364In reply to: Limiting text length of activity update posts
justbishop
MemberThanks guys!
@modemlooper: at the risk of seeming like a total idiot, does the code in your pastebin link go between php open/close tags? To be honest, I’m not quite sure at all what to do with it *blush*
June 11, 2011 at 7:29 pm #114363In reply to: [Resolved] Sidebar widgets not showing in item nav
@mercime
Participant== copied the “register” sidebar from the function.php file of twenty ten and added it to the buddypress default theme function file ==
So you had to copy the function to register the sidebar from functions.php file of twentyten. Could be that not all files were uploaded properly to server when you installed BuddyPress. I didn’t have to copy anything when I tested fishbook theme or any bp-default child theme.
At this point, it would be beneficial on your end if you download a fresh copy of BuddyPress https://buddypress.org/download/ and re-upload the files manually (FTP/cpanel/etc) to wp-content/plugins/buddypress/ just to make sure that all files have been uploaded.
June 11, 2011 at 7:11 pm #114360@mercime
ParticipantWP Multi-Network and http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/
June 11, 2011 at 5:48 pm #114355In reply to: Template File For Single Activity?
@mercime
Participant== I think i have the activity in between the sidebars and looking OK. ==
Confirming that it’s looking good

== I just have the admin bar width issue to figure out ==
The adminbar in that permalink page is styled like so in bp-default adminbar.css
` body#bp-default.activity-permalink #wp-admin-bar .padder {
min-width: 960px;
max-width: 960px;
}`
I see you have a fixed width of 1000px for your site. So if you have custom.css listed after the @import of adminbar.css, just add this
` body#bp-default.activity-permalink #wp-admin-bar .padder {
min-width: 1000px;
max-width: 1000px;
}`
but if you use stylesheet listed before @import of adminbar.css, you’d have to add `!important` to your min-width and max-widthYou should also correct the width of the site when in permalink view
` body.activity-permalink {
min-width: 960px;
max-width: 960px;
}`
change to 1000pxJune 11, 2011 at 5:07 pm #114353pszostak
MemberWhoops, this was already answered: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-query-for-groups/
Somehow I missed that on my first search. Sorry! If anyone else wants to know how to do this, it’s all spelled out at the bottom of that page.
June 11, 2011 at 4:56 pm #114352In reply to: Being re-directed to your Profile Page after login
laconic
Member> but why does BuddyPress think it’s not the case that a user should redirect to their info?
That’s just the way it works. By default, the BuddyPress front page is not the user’s profile page.
> Is there a way to code this, without getting into BuddyPress and later regretting it. I don’t want to use anymore plugins.
You can either edit/create bp-custom.php in the plugins directory or use a plugin that someone has created like bp-profile-as-homepage. If you look at the code for this plugin (one short php file), it is very simple. It taps into a wordpress hook to add a check to see if the user is logged in and if so whether the current page is the front page. If it is, then it redirects to the user’s profile page. That seems to be what you want.
June 11, 2011 at 4:42 pm #114350In reply to: Edit user posts in groups? Buddypress
grooveman
MemberI think it was this one..
https://wordpress.org/extend/plugins/buddypress-edit-activity-stream/
June 11, 2011 at 9:32 am #114345In reply to: Limiting text length of activity update posts
aljuk
Member@nahummadrid – nice solution. It’s concise, and responsive (VERY important). Every other solution I’ve tested slows down the text input to a crawl, which isn’t acceptable for a public site and will really annoy anyone who types with all their fingers. I haven’t encountered the issue to which you alluded re. users breaking the limit with copy/paste. It’s working flawlessly. Thanks a bunch for it.
@justbishop – yes, the code display has been mangled by wp texturise, and contains a cpl small errors. Here it is clean:
`
//<![CDATA[
function limitText(limitField, limitCount, limitNum) {
if (limitField.value.length > limitNum) {
limitField.value = limitField.value.substring(0, limitNum);
} else {
limitCount.value = limitNum – limitField.value.length;
}
}
//]]>
``@ `
“
Incidentally, I think it’s best to place the script itself in entry.php, not post-form.php (assuming you’re also setting a character limit on replies). The reason for this is that it should only be loaded once, and if you place it in post-form.php it won’t be available on an individual activity page (ie. the page you get when you click the “View” link), but if you place it in entry.php it will be loaded when viewing the activity stream, and also when viewig the individual activity.
June 11, 2011 at 8:59 am #114344In reply to: [Resolved] Sidebar widgets not showing in item nav
goldbrick
MemberThanks for your replies, i did try this but couldnt find the problem.
To solve the problem i copied the twenty ten sidebar.php and put that in to buddypress default theme, then copied the “register” sidebar from the function.php file of twenty ten and added it to the buddypress default theme function file. and hay presto it is working.
Hope it helps someone else if need.
June 11, 2011 at 8:42 am #114343In reply to: My “About” page
@mercime
Participant1. Create a child theme of bp-default
– https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/2. Copy header.php from bp-default and paste in your child theme folder.
https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-themes/bp-default/header.php3. Open up header.php in your child theme folder. In the area below and insert the code in bold below.
`-
<li class=”selected”><a href="” title=””>
- class=”selected”><a href="/about/” title=””>
`June 11, 2011 at 8:01 am #114339In reply to: My “About” page
hkcharlie
ParticipantI’m using the buddypress packaged theme
June 11, 2011 at 7:13 am #114338In reply to: Being re-directed to your Profile Page after login
Famous
ParticipantI am really trying to understand this one, however, I cannot get it. All logins should redirect to the user profile, because that is why a user uses your site in the first place. They care about their information, not the websites general data. I have seen many posts about this, but why does BuddyPress think it’s not the case that a user should redirect to their info?
Is there a way to code this, without getting into BuddyPress and later regretting it. I don’t want to use anymore plugins.
Thanks for any enlightenment on this topic, and any help.
June 11, 2011 at 6:46 am #114333@mercime
ParticipantYou’re welcome
June 11, 2011 at 4:46 am #114330June 11, 2011 at 2:53 am #114328In reply to: Can’t get to BP from WP
@mercime
Participant@boonebgorges I agree with you. Fortunately, new version of Platform theme (1.3) has been submitted in WP theme review queue and author has removed “buddypress” tag when I checked it. I guess he “heard” you
June 11, 2011 at 2:08 am #114327In reply to: [Resolved] Sidebar widgets not showing in item nav
@mercime
ParticipantTo troubleshoot, deactivate all plugins except BuddyPress and change to bp-default theme. You will note that sidebar widgets will not disappear when you move from one BP component to the other. Then activate fishbook theme, then plugins one at a time to determine what is causing erratic behavior in your site.
June 11, 2011 at 2:03 am #114326In reply to: bbpress forums / sidebar. Need Help Please! :)
@mercime
Participant@jonobradley two points mainly:
1. Platform theme should not have been tagged buddypress at all. I agree with Boone – https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/cant-get-to-bp-from-wp/#post-100830
2. As to the HTML part. Since you want to use that theme, you would have to check theme’s
– header.php (from up to what HTML tag is covered by this file) and
– footer.php ( from what HTML tag to closing is covered by this file) then
– look at source code of your site online, copy it and delete HTML covered by header.php then delete HTML covered by footer.php
– delete content area and what remains is the markup you will be using to impose on BP template pack files transferred to your active WP theme folder in server.Since theme author has deigned to tag his theme as “buddypress” he should provide documentation on how it could truly be BuddyPress-compatible.
June 11, 2011 at 1:08 am #114324In reply to: Template File For Single Activity?
pcwriter
Participant@mercime Thanks for the link…
@justbishop There’s your backup.
EDIT: just saw your edit… hi!
June 11, 2011 at 1:00 am #114323In reply to: Template File For Single Activity?
@mercime
ParticipantTemplate file – https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-themes/bp-default/members/single/activity/permalink.php
EDIT – pcwriter, didn’t see you there. Bad habit of mine to take phone calls and chatting first before answering forum post
June 11, 2011 at 12:56 am #114322pcwriter
ParticipantQuick Post Widget allows guest posting with captcha:
https://wordpress.org/extend/plugins/quick-post-widget/BuddyPress Activity Plus allows embedding or uploading media directly to the activity stream:
http://wpmu.org/introducing-buddypress-activity-plus-a-free-plugin-for-uploading-and-embedding-media/
https://wordpress.org/extend/plugins/buddypress-activity-plus/Hope this helps!
June 11, 2011 at 12:42 am #114321In reply to: Template File For Single Activity?
pcwriter
ParticipantSorry, forgot about the sidebar issue

The easiest way to duplicate the layout of your site pages in permalink.php is to copy page.php and replace the contents in that file with the contents from permalink.php, keeping the container structure and sidebar calls from page.php intact, then rename that new file permalink.php to overwrite the old one. Keep a backup of your original permalink.php in case stuff gets screwed up

-
AuthorSearch Results