Search Results for 'wordpress'
-
AuthorSearch Results
-
December 24, 2008 at 12:39 am #34960
Burt Adsit
Participantgpo1, nope. I’ve got too much on my plate right now. I’m not going to be able to do much else except get a site launched by the 1/1/09 deadline.
I talked to Andy about enabling bp to use standard wp widgets in the member theme. Got a couple of ideas but no time at the moment to play with them. The problem is that mu deals with *one* theme per blog. The members theme is sort of this invisible theme that lurks in the background. mu doesn’t even know about it. Only bp knows about it. It *is* bp.
The way I understand that widgets work is:
Register a ‘sidebar’ in mu with a name. 1,2,3 or ‘BP Member Profile’, ‘BP Member Blogs’. The sidebar gets registered to a specific blog id.
register_sidebar(array('name'=>'Main Sidebar',
'before_title' => "<h3 class='widgettitle'>",
'after_title' => "</h3>n",
));In theme code call mu’s sidebar launcher fn.
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Main Sidebar') ) : // begin primary sidebar widgets ?>I just had some questions that I didn’t have time to investigate. When can I call call register_sidebar()? Any time I want, anywhere I want? I see it done in theme functions.php.
When I access any bp member theme functions do they execute in the blog id 1 environment? I think so.
If I register some bp member theme sidebars in bp code will it show up in the mu backend? I think so.
Seems like only the site admin who owns blog id 1 will be able to add widgets to the member theme. Well that’s a *good* thing. This is a feature.
Lots of questions and unknowns right now and not much time to explore answers. Have at it! Have fun.
December 23, 2008 at 7:08 pm #34942In reply to: Lifestream-like plugin for individual users
rwallen
MemberHave you taken a look at this? https://wordpress.org/extend/plugins/lifestream/
It will post stream info in the users blog, if you tinker with it you should be able to get it running in the users profile.
I took apart simplepie and I have news feeds running in the users profile.
December 23, 2008 at 5:14 pm #34929In reply to: Create blog does not create subdomain
Wardee
ParticipantHave you enabled wildcard subdomains such as in this post (linked to from bp docs)
http://www.blogopreneur.com/2006/11/06/installing-wordpress-mu-on-a-cpanelwhm-server/
December 23, 2008 at 3:07 pm #34909In reply to: How do I view the plugins??
Wardee
ParticipantIn mu-plugins, these are plugins that help your WPMU site administration/installation. You won’t find them in the Plugins list. Most likely they’ll have areas in Site Admin.
The wp-content/plugins are for use by the blogs on your network. Here’s where you’d put wp-stats, akismet, and most of the plugins from https://wordpress.org/extend/plugins.
Here’s how I think of it: if it helps me run WPMU, it goes in mu-plugins. If it helps me or a member blog, it goes in wp-content/plugins.
Everything in wp-content/plugins shows up in Plugins for activation/deactivation.
December 23, 2008 at 1:42 pm #34901gpo1
Participantthanks, have you tried it?
December 23, 2008 at 5:28 am #34886Burt Adsit
ParticipantHowdy, the area I think you are talking about is the default form when you view a member’s profile right? ‘me’ > profile > public. The template that generates that screen is in /member-themes/buddypress-member/profile/index.php
You’ll see the calls to generate all the sections on that page. One of them is the wire. Line 47:
<?php bp_wire_get_post_list( bp_current_user_id()… and so on …
You were gonna make a copy of the theme, make whatever changes you need to run a custom bp member theme and edit that one right?
I think it’s in the bp rules and code of conduct. I’ll have to check.
December 23, 2008 at 1:27 am #34876gpo1
Participantsorry, after my wire section in profiles
December 23, 2008 at 12:30 am #34873gpo1
Participantbelow the group status bar..
December 22, 2008 at 9:04 pm #34845nicolagreco
Participantdepends on where do you want put your widgets
December 22, 2008 at 8:19 pm #34844gpo1
Participantany help on this?
December 22, 2008 at 3:19 pm #34827In reply to: VPS Company, Bandwdith, and satisfaction.
David Bisset
ParticipantI use media temple, cheapest VPS. Never had a problem regarding getting WordPress MU or BuddyPress to work with them. Hope that helps.
December 22, 2008 at 1:05 pm #34821gpo1
Participantwhere n which file shall i shall edit the code?
December 22, 2008 at 11:58 am #34818nicolagreco
ParticipantIt should work adding for example <?php wp_tag_cloud(”); ?>, bp is always wordpress, don’t forget !
December 21, 2008 at 10:39 pm #34795Huda Toriq
MemberWith regard to the title: “Feature that MUST be included in next version for me..”
I’m in need of event listing. And if we look at how Facebook manage their event list, I think a pseudo-blog would also be a good base to build on. A “blog” that is open to any member to post and comment. The blog post is the event description. The blog custom field can hold specific informations: venue, RSVP, speaker, etc. The category system, tagging, etc. All is perfect, I think. Then we exclude/hide it someway so it’s not considered someone’s blog–to differentiate it with the real blogs.
Anyway, we’re all used to develop WordPress into anything we need aren’t we? 😆
@nicolagreco I think it looks like the same with the earlier version facebook status (without the status comment system)
In the previous revisions, buddypress hold each profile page as blogs. It’s not blog, it’s profile page but use the database structure like a blog. I came here in the end part of that stage of BP. I’m not sure the whole structure behind it.
December 21, 2008 at 7:23 am #34747In reply to: Problem in creating a new blog
Burt Adsit
ParticipantYou are running on windows right? Just a guess. Before installing bp you need to get mu running properly. It’s a pain on windows. What package are you using? WAMP?
To get your subdomains to work you have to edit the ‘hosts’ file in windows for *each* blog you want to have running on your windows box. The hosts file is in:
Windows 95/98/Me c:windowshosts
Windows NT/2000/XP Pro c:winntsystem32driversetchosts
Windows XP and Vista c:windowssystem32driversetchosts
Once you find it you have to create a line for each blog so:
127.0.0.1 ourcommoninterest.dev
127.0.0.1 adminstoy.ourcommoninterest.dev
That’s a sample from my laptop which I use to play with new things in mu, buddypress and bbpress. This is only the beginning of your problems on windows. I know I went thru *all* of them.
However, for now, you should replace the domain name with your chosen domain name. Replace the subdomain name with any blog subdomain name you’ve chosen. ‘trial’ in your case.
Try reading up on what it takes to install mu. Then what it takes to install mu on windows. Google finds lots of things related to mu. Here’s a start:
https://mu.wordpress.org/forums/topic.php?id=4624
You also need to follow the directions in the mu readme.txt file as it relates to apache.
December 20, 2008 at 9:01 pm #34673In reply to: BP on WordPressWeekly (TalkShoe)
Bentrem
ParticipantNo fear Andy, especially the first part was right meaty … good overview. And the rest is likely of interest to those geekishly-inclined.
December 20, 2008 at 3:23 pm #34670In reply to: Who wants a media plugin for BP
gpo1
Participantdimensionmedia, thats sounds good, but we need to build it for BP. The solution am thinking of is Kaltura (all in one) plugin for wordpress.
The developer just needs to adapt it to user profile..
Keep up the feedback, yes we can over come this !!!
December 20, 2008 at 3:00 pm #34669In reply to: limit 1 blog per user
neuromancer2701
ParticipantThis seems pretty easy.
December 20, 2008 at 2:48 pm #34668In reply to: BP on WordPressWeekly (TalkShoe)
David Bisset
ParticipantVery good interview. Nice to throw out questions in the chatroom.
December 20, 2008 at 8:09 am #34663In reply to: BP on WordPressWeekly (TalkShoe)
Burt Adsit
ParticipantThanks Andy. I tuned in at the tail end of things when they were putting chairs on tables and sweeping the floor.
December 20, 2008 at 5:55 am #34661In reply to: BP on WordPressWeekly (TalkShoe)
Andy Peatling
KeymasterI hope people can understand what I say.

Direct MP3: http://tr.im/2hqb
December 19, 2008 at 11:10 pm #34655In reply to: limit 1 blog per user
nicolagreco
Participanti think that you’ve to ask in wordpress-mu forum, not here..
December 19, 2008 at 5:59 pm #34639In reply to: Who wants a media plugin for BP
David Bisset
ParticipantYou might want to check this out:
https://wordpress.org/extend/plugins/wordpresscom-video-server/
December 19, 2008 at 4:48 pm #34636In reply to: Who wants a media plugin for BP
awedjob
Member@gpo1 when you type “Users will be able to upload videos or ‘link’ videos from youtube and similar websites” do you mean embed the videos?
Currently I embed videos in my WordPress sites w/ Vodpod. It works with almost any video hosting site but it’s not the best solution. Have yet to test it on buddypress.
I was part of an online community called the ORG that had a very slick solution. All media was entered into one media entry box. Just by adding the URL to the flickr photo or YouTube video the site took care of seeking out the proper embed code and placed it in the photos gallery or video gallery. No idea how “Support and Comfort” did it but it sure was handy.
December 18, 2008 at 11:42 pm #34598Gilbert Cattoire
ParticipantBonjour à tous, la traduction française est bientôt mise à jour pour le nouveau fichier .po disponible dans le dernier trunk en date.
Mise à disposition prévue: vendredi 19 décembre, dans la mesure où le fichier aura été testé avant. Simple question de disponibilité personnelle. Merci pour votre patience.
@bebopcool,@mandriam: j’utilise pour l’instant WMPU 2.6.5, ce qui n’a aucune incidence sur la traduction française de BuddyPress. Par principe je préfère tester sur l’avant dernière version d’un logiciel(généralement plus stable), quand la nouvelle version vient juste de sortir. La 2.7 pose en effet quelques petits soucis, si j’en crois les premiers à l’avoir testée ( https://mu.wordpress.org/forums/topic.php?id=10163&page=2 ).
J’attendrai pour ma part la 2.7.1
-
AuthorSearch Results