Search Results for 'theme'
-
AuthorSearch Results
-
April 6, 2009 at 4:17 am #41898
In reply to: Forum Integration: HELPING HINTS
mStudios
Participantalright, same outcome problem but with a little twist:
4) Edit \”settings\” to enable xmlrpc and pingbacks (both)
can\’t do as I do not have these checkboxes anywhere, not in bbpress nor wpmu.
bbpress works fine by itself but obviously is not connected as the bp theme does not translate and getting the dreaded error in groups when I try to post a topic.
so, where should those checkboxes be? up to there I followed all points and also 6) and 7) seem fine.
any hint appreciated!
downloaded all 3 installs within the past 3 days, so all should be the latest.
April 6, 2009 at 2:33 am #41896In reply to: Members widget
2326584
InactiveI got it, I changed the following line on the functions.php file of my theme directory
if ( function_exists(‘register_sidebar’) )
register_sidebars(2);
I changed the “2” and just wrote any number (7 in my case) and I was able to see more sidebars. Members widget was somehow in sidebar 4!
I deleted it and thats it!
Hope it helps!
April 6, 2009 at 1:53 am #41895In reply to: How to make “about me” kinda profile field?
takuya
Participantfunction my_fix_linking(){
remove_filter( \'bp_the_profile_field_value\',
\'xprofile_filter_link_profile_data\', 2 );
add_filter( \'bp_the_profile_field_value\',
\'my_filter_link_profile_data\', 2, 3 );
}
add_action(\'bp_member_theme_functions\', \'my_fix_linking\');
This code seems to be wrong. Anyone can figure out another working code?
April 6, 2009 at 1:44 am #41893In reply to: How to make “about me” kinda profile field?
takuya
Participant<br />
function my_fix_linking(){<br />
remove_filter( \\\\\\\'bp_the_profile_field_value\\\\\\\',<br />
\\\\\\\'xprofile_filter_link_profile_data\\\\\\\', 2 );<br />
add_filter( \\\\\\\'bp_the_profile_field_value\\\\\\\',<br />
\\\\\\\'my_filter_link_profile_data\\\\\\\', 2, 3 );<br />
}<br />
add_action(\\\\\\\'bp_member_theme_functions\\\\\\\', \\\\\\\'my_fix_linking\\\\\\\');</p>
<p>function my_filter_link_profile_data($field_value,<br />
$field_type = \\\\\\\'textbox\\\\\\\', $field_id){<br />
if ( \\\\\\\'textbox\\\\\\\' == $field_type)<br />
return $field_value;<br />
else xprofile_filter_link_profile_data($field_value, $field_type);<br />
}<br />If above code is used, textareas will not show any contents although the data is still available on the database. If you modify the above code to only disable textareas, then textboxes will disappear.
BBpress is modifying the code too much!!!!!!!!!!!!!!!!!!!!!!!!
April 5, 2009 at 11:25 pm #41890In reply to: Members widget
gcs123
ParticipantI’m using the latest version of Buddypress, downloaded only a few days ago, I’m using my own theme and was playing about with registering the sidebars, I thought perhaps I might have assigned Members to a sidebar I am no longer using but when I reactivate these sidebars which I am no longer using it says there are no widgets registered to them.
Is there a way to reset all the widgets so that none are being used? or any other solution?
April 5, 2009 at 11:12 pm #41888In reply to: Icon problems
Burt Adsit
ParticipantI think you should first get firebug and determine what is overriding the image size in your custom theme.
April 5, 2009 at 10:49 pm #41884In reply to: what’s the use for the actual forum ?
Burt Adsit
ParticipantSome people will want to keep everything in bp and only use group forums. Don’t want their users going out of bp. Perhaps they don’t want to create another theme for bbpress. Keeps the forum solution simple.
Keeping all group forum activity in the group *is* the purpose of bp’s group forums.
There isn’t a forum in the demo other than the individual group forums.
April 5, 2009 at 5:04 pm #41874In reply to: Using Proloque Theme as Home theme
Archie Webmaker
ParticipantThanks a lot Andy,
April 5, 2009 at 4:53 pm #41873In reply to: Using Proloque Theme as Home theme
Andy Peatling
KeymasterFollow these instructions, you will need to update WPMU too.
April 5, 2009 at 4:39 pm #41872In reply to: Using Proloque Theme as Home theme
Archie Webmaker
ParticipantWhere is the link to the latest trunk version and it’s version number?
April 5, 2009 at 4:29 pm #41871In reply to: Using Proloque Theme as Home theme
Andy Peatling
KeymasterIf you use the latest trunk it will work fine.
April 5, 2009 at 4:18 pm #41870In reply to: Using Proloque Theme as Home theme
Archie Webmaker
ParticipantYes I am talking about P2, The hompage is ok, but others pages like \”groups-members-blogs are in disorder
How do I make it work/look like the default buddypress homepage
April 5, 2009 at 2:46 am #41843In reply to: BuddyPress in /plugins/ not /mu-plugins/ from r1303+
Robert
ParticipantProblem: [Members], [Groups] or [Blogs] links not working after this update.
Solution: read on ..
I have just spent all day trying to make it work with my custom theme. It finally works the way it should so I just thought I\’d post the solution here in case someone else is having the same problem.
I upgraded by following the instructions step by step including the costume theme updates and everything went smoothly. My custom theme is based on the default BP theme but heavily modified.
As I said everything worked fine except when I clicked on [Members], [Groups] or [Blogs] directories I was getting \”Access Denied – you don\’t have permission blah blah ….\” message.
I found out the updated default Buddypress members theme is missing page.php and there was a new directory \”directories\” added which contains the pages for [members] [groups] and [blogs]
So everyone who\’s having the same problem as I had, just copy the \”directories\” from the latest bp members theme and put it in your theme. Style it to match your theme look and that\’s it.
I hope that helps.
EDIT: Andy, maybe it would be a good idea to mention it in the upgrade instructions above
April 5, 2009 at 12:08 am #41833Robert
ParticipantIn your theme look for header.php. There you can change the names of the links.
For example:
<?php _e( \’Blog\’, \’buddypress\’ ) ?>
Change it to
<?php _e( \’My Blog\’, \’buddypress\’ ) ?>
Remember to change it in your members theme too.
Note that this will only change the text not the actual link. So it will show [My Blog] but it will still go to yoursite.com/blog
April 5, 2009 at 12:08 am #41832takuya
ParticipantApril 4, 2009 at 11:55 pm #41828takuya
Participantblog only displays posts of the root (admin blog).
blogs is a directory of members’ blogs.
There is similar thread, and I’ve seen the solution. Search for “member slug” or “member url” etc…
April 4, 2009 at 10:45 pm #41827shtirlic
Participant@andy did what u suggest, but still no luck
so i have this tree
mu (svn from branch 2.7 )
--wp-content
--bp-themes
----buddypress-member (symlink from buddypress)
--mu-plugins
--plugins
----buddypress (svn from trunk)
----zoneideas-bp (svn from google code)
bp-zoneideas
bp-zoneideas.php--themes
----buddypress-home (symlink from buddypress)
So with this i have
Warning: require_once(bp-core.php) [function.require-once]: failed to open stream: No such file or directory in /usr/home/shtirlic/public_html/mu/wp-content/plugins/zoneideas-bp/bp-zoneideas.php on line 13
my line 13 as always
require_once( \\\\\\\'bp-core.php\\\\\\\' );
So buddypress is working, my plugin not, what to do?
UPDATE:
a edited this line and added this
<br />
require_once( BP_PLUGIN_DIR . \'/bp-core.php\' );<br />and now plugin is working, but there is now mention about it an docs or in example component
April 4, 2009 at 8:52 pm #41821In reply to: BuddyPress in /plugins/ not /mu-plugins/ from r1303+
Nirok
ParticipantHi this was straight forward and fixed a few issues i had with images showing up… I don\’t know if you mentioned it but with your custom theme you also need to update the functions.php within your \”theme\” folder aswell as the function.php within the “bp-theme” folder… well I was getting alot of errors till i did that… very straight forward up grade Thanks
April 4, 2009 at 12:42 pm #41791In reply to: Help in hosting buddypress on Amazon EC2
Jeff Sayre
ParticipantGpo1-
I, too, have been investigating Amazon EC2. I will be using Amazon’s S3 for a site, but have not yet determined if I want to also take advantage of Amazon’s Compute Cloud services. Either way, here are a few links that might point you in the right direction:
1. This guy is already doing what you want to do. He runs his WordPress-based site on EC2 using S3. He talks about the process in this article. Perhaps you could contact him for more details if needed.
2. Information on using Amazon’s S3 with WordPress Mu:
– http://tantannoodles.com/toolkit/wordpress-s3/
– https://mu.wordpress.org/forums/topic.php?id=6351
– http://www.ringofblogs.com/2008/04/12/off-loading-wpmu-theme-files-to-amazon-s3/
Good luck! Let us know if you get this working.
April 4, 2009 at 12:27 pm #41787In reply to: BuddyPress in /plugins/ not /mu-plugins/ from r1303+
trcwest
ParticipantOk so i just uploaded my svn and it has messed up a few things like the admin bar is displaying funny on the bottom and my profile nav buttons and options nave buttons are now displaying funny..
Currently i am runing bp 1309 and a stable zip uploaded wpmu 2.7
My site Spots kenya is part of a final year degree project and so its quite important that when i reach the handin (May 15) it is fairly stable.
The question I have are these..
1) Should i revert back to a svn previous to 1303 and just work with that or…
2) Should i start from scratch quite literally… I have no users at the moment so my database can be scrapped.
3) if i start from scratch i assume that i…. c o svn.automattic.com/wordpress-mu/trunk/ into what a) my root OR b) a folder eg wpmu then transfer the files to spotskenya base or root. c)
4) once i have wpmu running perfectly i can then
a) co svn.buddypress.org/trunk/ to say /wp-content/buddy press
b) use symbolic links to /wp-content/plugins —- guide here ( https://codex.buddypress.org/developer-docs/installing-through-svn/) which needs to be updated to plugin btw.
c) or just transfer (which will not update latest svn changes.
5) Re upload my bp-spotskenya-theme to /wp-content/bp-themes/ (WHAT CHANGES NEED TO BE MADE THE THEM ?)
Anything that i ahve missed?? Please say…
Sorry if this is all really basic but i am learning as i go but really do need to get it right as its quite a chunk of my degree..
thanks so much..
April 4, 2009 at 10:58 am #41784In reply to: FaceBuddy updated to the latest trunk
mesgains
Participanthi Sgrunt,
I’ve installed the latest trunk’s version and the FaceBuddy Theme for 1281 trunk
I ve got a blank page for the facebuddy home when i try to install the theme.
put the files within the bp-themes and themes directories.
do you have any ideas to fix it ?
April 4, 2009 at 10:18 am #41782In reply to: register Page
Famous
ParticipantThis is to answer the original question:
I can tell you exactly what this is…
You are missing the information from the functions.php file in the latest trunk of buddypress-home. You are most likely using a functions.php from your own custom theme, which creates the redirect above.
Without that data the registration and activation won’t work.
April 4, 2009 at 10:15 am #41781Famous
ParticipantI can tell you exactly what this is…
You are missing the information from the functions.php file in the latest trunk of buddypress-home. You are most likely using a functions.php from your own custom theme, which creates the redirect above.
Without that data the registration and activation won’t work.
April 4, 2009 at 9:52 am #41778In reply to: BuddyPress in /plugins/ not /mu-plugins/ from r1303+
Paul Wong-Gibbs
Keymaster3. I doubt there is one. I suppose you could read through the Trac if you were very desperate. Most of the stuff has been bug fixes; short of some of the theme changes and this plugin directory change, I can’t think of anything that’s a “new” feature.
April 3, 2009 at 8:25 pm #41754In reply to: Select theme to use for member pages not working
Jeff Sayre
ParticipantBuddyPress member themes should be located under /wp-content/bp-themes/.
Please note, just recently this changed. Before, the BP member themes were installed under /wp-content/member-themes/.
Of course, it depends on which version of BP you’re running, but you should check to see if you have a /bp-themes/ or a /member-themes/ folder under /wp-content/. Then, make sure that you have an actual member-based theme installed in that folder.
-
AuthorSearch Results