Search Results for 'wordpress'
-
AuthorSearch Results
-
January 22, 2010 at 9:12 pm #61395
In reply to: Buddypress Profile Sidebar
@mercime
ParticipantBuddyPress 1.2 is still in development – you can download either by
SVN – svn co https://svn.buddypress.org/trunk OR you might prefer
Zip file near bottom of page – https://trac.buddypress.org/browser/trunk
As for widgetizing sidebars, it is not BuddyPress-related but basic WordPress function. When your user creates a blog, he/she can choose whatever theme you’ve uploaded to your WPMU installation. Just make sure the sidebars of those themes are widgetized or are “dynamic sidebars” and your users can change widgets via their own dashboards at Appearance > Widgets.
January 22, 2010 at 4:04 pm #61370@mercime
ParticipantThis is basic WordPress, see https://codex.wordpress.org/Template_Tags and click on the link to the specific template tag you’ll need to add.
e.g. if you want a list of categories on your sidebar, you click on wp_list_categories link and you get this basic template tag,
<?php wp_list_categories( ); ?>, and you add arguments per page I linked to.January 22, 2010 at 2:01 pm #61366Diesel Laws
Participant1. WordPress MU 2.8.6
2. Directory
3. Root
4. Yes, 2.8.4 I believe
5. Yes
6. 1.1.3
7. 1.1.2
8. Yes, a lot, however they were installed previously
9. Customised
10. Slightly in regards to avatars not working
11. no
12. bbPress built-in
13. Few errors but nothing that I believe relates
14. Hostmonster
January 22, 2010 at 12:45 am #61334In reply to: Multiple user types – possible?
David Lewis
Participant@Peter: WordPress is the same. If you want to do something that it doesn’t do by default you have to dig into the Codex and forums and figure out a little bit of PHP. The only changes you can make with “some html/css” are visual changes. No matter what the software is. If you take a look through the WordPress.org forums you will find thousands of posts with people discussing code, php, template tags, action hooks, custom queries, arrays. And WordPress plugins break after updates too. All the time.
Sorry… what was the original question again? Oh yah… different user types. I guess that has already been answered above… as best as it can be. Topic has been marked as “resolved” too.
January 21, 2010 at 10:50 pm #61326In reply to: Base theme?
Paul Wong-Gibbs
KeymasterNot so much your theme, but compare the 1.1 default BuddyPress theme http://dangerous-minds.org to the 1.2 theme http://testbp.org/. 1.2 also has the following big features:
Standard WordPress support (not just MU)
Activity stream threaded commenting.
Ability to mark an activity stream item as a favorite.
Activity stream item permalinks.
Advanced activity stream filters.
New default theme with improved usability and customization options
There have been some template tag changes (incl. the template tag loops), I would advise you get a copy of the 1.1 default and 1.2 default theme, look at the changes and apply them to your site. There’s no documentation written yet.
January 21, 2010 at 10:22 pm #61320In reply to: Base theme?
Sal (SCRAWLfx.com)
ParticipantTwo weeks? That’s excellent!
I was a bit worried, because I looked up an old thread about regular WordPress availability and it was from a while ago. Then, apparently, development was going to take longer than they thought – or something like that.
Two weeks. Is that certain?
January 21, 2010 at 10:17 pm #61318In reply to: Base theme?
r-a-y
KeymasterIf you can wait about two weeks, you’ll be able to use BuddyPress on your regular WordPress site!
—
To create forums, you need to create a group with discussion forum enabled.
January 21, 2010 at 7:11 pm #61303In reply to: Edit "Your Profile" on your "Profile" Page
Nick Watson
ParticipantOh yeah, I know that’s there, but that is only the Nickname thing from the wordpress.
I was wondering if there as anyway to edit the other fields (stored by wordpress) on the profile page.
January 21, 2010 at 5:51 pm #61300In reply to: Multiple user types – possible?
peterverkooijen
ParticipantWhy’s that worrisome? It just shows how fast you can get results with BP.
Only when you are a PHP programmer. If you are not, you waste weeks figuring out little things like storing firstname/lastname, fixing Ajax buttons that are intricately connected with CSS elements and fixing plugins that break between versions of WPMU.
The worrisome thing is when BP developers assume the end users are all PHP programmers. Or if they are not, that they should learn PHP.
WordPress was originally intended for content creators who know some html/css, but don’t have to know “programming”. I’d hate to see Buddypress abandon that goal.
That basically means you talk an aweful lot about things you really don’t know that much about…
I don’t and make that very clear, but I still need to figure out ways to get these little things to work or they would derail my project. And I can’t afford to hire anyone to do it for me.
I know general structural things; I don’t know programming from scratch. In particular working with arrays etc. is pure hocus pocus to me.
January 21, 2010 at 5:31 pm #61295In reply to: Site Wide Activity stream not working
bbrian017
ParticipantAfter getting support from the wpmu team the issue might in fact be with buddy press.
Please see the thread at wpmu, https://mu.wordpress.org/forums/topic/16374?replies=20
Final answer so far,
Brian, you’re facing a code issue it seems. Looking at the current trunk of BP anyway.
When BP generates the text for the “[time] ago” stuff, it passes a time string into a function in bp-core.php called bp_core_time_since.
In this function the date passed in is compared against a possible second value passed to the function. By default, that value is false.
When the value is false, it gets the current time as a numerical value (like using the time() function) for the current time as GMT using gmdate to create a date string, which is then converted to a numerical time value.
Here’s the problem. The time being passed into the function as the first parameter is the current server time, and not the GMT time. The second parameter to the function is not passed, thus defaulting to a false condition which then generates the value based on GMT.
The two times (older and newer as the vars are labeled) are then compared.
See the problem yet?
Yes, that’s right. It’s comparing one time to another, but they aren’t in the same timezone.
If is set as say, 7 hours behind GMT, the initial time passed into the function will be GMT -7. It then creates the current time as GMT without any offset to check against the time passed into the function.
So, no matter what you do, you’re already at a 7 hour difference within this function, and it will show something currently added to the activity as being 7 hours ago even though it just happened right now.
The times coming into this function either need to be in GMT, or when the time to compare against is created, it needs to be the server time.
Whichever happens, they need to both be in the same timezone so that 5 seconds ago is 5 seconds ago.
In summary, you don’t have a server problem, or an install problem. It’s a BP problem somewhere.
January 21, 2010 at 4:54 pm #61292In reply to: BuddyPress screencasts – what do you want to see?
dlittle800
ParticipantYou need a test case!
Here’s a thought…
I am creating a social networking site for entrepreneurs.
You can use my website as an example, and interview me as I go through the process of learning buddypress and setting up my site.
I’ve been working with WordPress for 5 years, but am not a PHP programmer. I’m guessing this probably defines most of the (non-developer, business oriented users) who will be using Buddypress.
I am open to ideas.
– Derek
You can contact me at:
January 21, 2010 at 1:37 pm #61282globalmama
ParticipantHi there,
I dont understand the fix you’re proposing Issidha, because when I go to the WordPress MU files you indicate need tweaking, I dont SEE those lines pertaining to taking out the www in front of URLs… ??
I tried entering the domain name where i’m trying to have Buddypress with a www. in front but I have the same issue:
— > The main page is showing up but all other pages ( Members/Blog…) are not accessible: ie, I get a wrong URL message.
As in:
Trying to go to : http://www.sitename/groups
*** The requested URL /groups was not found on this server. *****
I and other users CAN access wp-admin ( http://www.sitename/wp-admin/) , as if only the WordPress MU was working, and not all the Buddypress features.
I also installed a fresh copy of WP MU, and installed Buddy Press 1.1.3, as recommended, through the instal Plugin of the WP MU dashboard.
I had also installed a couple more plugins, the Buddypress SEO, Hashcash and a forum subscription plugin for BP, which I just deactivated to see if that helped. But it makes no difference.
Thanks for your advice…
January 21, 2010 at 1:36 pm #61281In reply to: Multiple user types – possible?
David Lewis
Participant@Peter: Yes… BuddyPress is quite new. Comparing it to WordPress isn’t really fair since WordPress has been around for 7 years. BuddyPress hasn’t even turned 1 yet. The first public release was last spring.
January 21, 2010 at 1:17 pm #61279In reply to: bp-sn-parent: Cannot modify header warning
5723653
InactiveI am having the same problem and also any of the links /members, /groups, /register (which goes to the login form), and /login (“The page you were looking for was not found.”) and also al the links related to does not work.
Please tell me how can I get it to work, whithout having to reinstall all of the scripts in there.
I am using WordPress 2.9.1.
January 21, 2010 at 12:42 pm #61276In reply to: How To Hard Code Widgets Into Member Themes
Dainismichel
ParticipantOK, this helps as well
https://codex.wordpress.org/Customizing_Your_Sidebar
Now, how can I find where to put those customizations if I’ve
copied bp-default and named it bp-default-members
copied bp-sn-parent and named it bp-sn-parent-members
appropriately called bp-sn-parent-members from bp-default-member’s style.css file
…what I mean is that when I look at sidebar.php. it looks like it’s putting the same code into all 3 sidebars to me…so how do I put the customization I want into the sidebar I select?
Also, since this is BuddyPress, how do I make sure that I’m pulling in “Recent Posts” from the member blog and not from all blogs…maybe that’s what happens anyway…
and how do I define what people will see when viewing a member’s posts? Is that one of the existing sidebars? I actually hope not, since I want to code that differently.
January 21, 2010 at 10:52 am #61267In reply to: Edit "Your Profile" on your "Profile" Page
Brajesh Singh
ParticipantIt is already there.
But you may not edit the Fields which are stored by wordpress(If your User had registered before activating buddypress). Only Buddypress xprofile fields can be edited from profile page.
Under profile link, you will see edit profile which will allow you to change the basic details(xprofile fields).
Under settings->general you can change email/password.
January 21, 2010 at 9:12 am #61262In reply to: Different Blog, Different Groups
danbpfr
ParticipantHi alone,
did you try this ?
https://wordpress.org/extend/plugins/bp-groupblog/
and this ?
https://wordpress.org/extend/plugins/buddypress-multilingual/
January 20, 2010 at 11:26 pm #61238In reply to: BuddyPress screencasts – what do you want to see?
Bowe
ParticipantI see your point jivany, but so far I’ve seen that about 90% of the active BP Communities use the default theme with some slight modifications. With some clever editing/focus on certain things which almost every BP site has, it could be very useful.
Think of something like http://www.wordpress.tv:
I would also rather see very specific and in-depth tutorial from BP Pro’s sooner then later, but if you look at the questions asked on these forums, you can not skip the basics here and simply presume that the “easier” stuff will be figured out as they go.
Imagine you stumbling upon BuddyPress.org and being able to get a few nice basic video instructions. You get a sense of professionalism and a clear view of what’s possible with the software, the advanced stuff we all like to see can be covered at a later point imo
And about Facebook and Twitter;
A screencast of twitter would have saved me quite some time, and don’t even start about Facebook lol.. I’ve tried 2 hours to find a feed of my status updates and after trying everything known to man I still haven’t found it. Facebook is awesome but it makes no sense whatsoever on certain aspects
January 20, 2010 at 7:21 pm #61222In reply to: Multiple user types – possible?
David Lewis
Participant@Peter Separation of logic, data and presentation doesn’t mean that you don’t have to know how to code if a program doesn’t have the logic you require. And I disagree that the layers are less separate in BuddyPress than WordPress.
If you want to learn PHP… I would highly recommend lynda.com. I use their training videos all the time and they are worth every cent.
January 20, 2010 at 1:50 pm #61195In reply to: Multiple user types – possible?
peterverkooijen
ParticipantOK, I know this might not be well-received, but learning a bit of PHP will allow you to do almost anything with WP … I’m not a programmer, but a guy who bought a book on PHP/MySQL awhile back and WP is so easy you could teach yourself the basic stuff.
I’m being dragged kicking and screaming into learning PHP. I don’t have the time and can’t afford to hire a PHP programmer, but keep running into things that I’d consider basic core functionality that isn’t up to standard.
I’m not asking for new features, I just need a solid core that will let me get things done, starting with member management, including things like multiple user types.
When WordPress first arrived the point was to separate layout (html/css), functions (php) and data (mysql) as much as possible, so anyone with basic web development skills (html/css/design/content) could build and maintain sites. In Buddypress it all starts to mix again.
January 20, 2010 at 1:32 pm #61190In reply to: Starting point – groups
nit3watch
ParticipantSorry about the above post, wasn’t thinking. But I need to find out, say I wanted to customize the wordpress-mu/groups/absa, (absa being a random group so I can see the page.) How can I find the page that contains like the order the widgets appear in, (where <div class=”inner-tube”> is). Like Discription, News.. and so on, if I wanted News to appears above Discription, what page would I do this on.
I can edit through firebug but cant/dont know how to save the change, which would be wrong anyway cause the page was generated?
So how would I find the ‘layout’ page? If that makes more sence
January 20, 2010 at 7:24 am #61181In reply to: bbpress standalone in activity stream
John James Jacoby
KeymasterThe backpat plugin is only going to support the 1.1 branch of code, and not the dual theme massive integration headache that came before it.
To have the activity stream update when you post a topic or post a reply, bbPress would need a special plugin to be made, and/or bbPress would need to be “deeply” integrated with WordPress/BuddyPress to have those functions natively available.
The other thing you could do is look into previous versions of BuddyPress that included that kind of support. In BP 1.0 it was assumed that if you wanted forums, that you were using the voo-doo magic method of integrating things.
January 20, 2010 at 1:05 am #61170In reply to: can't DISABLE avatar
@mercime
ParticipantCheck out this plugin – https://wordpress.org/extend/plugins/buddypress-remove-avatars/
This plugin will completely remove ALL avatars (including default, uploaded, or gravatar) from displaying on your site. This includes hiding the step for choosing avatars when creating groups or user accounts, and removing the menu items for editing avatars.January 19, 2010 at 10:42 pm #61154In reply to: bbpress standalone in activity stream
berchman
ParticipantJust to clarify you have BuddyPress (latest trunk) running with a standalone WordPress 2.9.1 (NOT MU) and BBPress 1.0.2?
I am looking at doing this. Just need to know.
Any advice?
Thanks!
January 19, 2010 at 9:32 pm #61149In reply to: bbpress standalone in activity stream
berchman
Participanthi Arturo,
I don’t see a link to your example. Can you post it?
Just to clarify you have BuddyPress (latest trunk) running with a standalone WordPress 2.9.1 (NOT MU) and BBPress 1.0.2?
Thanks.
-
AuthorSearch Results