Search Results for 'wordpress'
-
AuthorSearch Results
-
October 3, 2010 at 10:35 am #94118
In reply to: Forums link not working, results in 404
Paul Wong-Gibbs
KeymasterYou haven’t installed WordPress under a subdirectory called “forums”, have you? e.g. mysite.com/forums/wp-admin/
October 3, 2010 at 10:27 am #94116In reply to: How to turn OFF multisite?
Paul Wong-Gibbs
KeymasterOctober 3, 2010 at 10:22 am #94115In reply to: New User Register Problem
Paul Wong-Gibbs
KeymasterA lot of us try to help answering questions on these boards, but we’re just volunteers doing this for fun. We seem to get most issues replied to within a two day period, which I think is very good.
Regarding above — neither of you have provided sufficient detail (have a look at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/ for the sort of information we’d find useful). Does WordPress (without any plugins or custom themes installed) send emails correctly, for example on user registration?
October 3, 2010 at 9:41 am #94107In reply to: where do I define email notification
Roger Coathup
ParticipantBy default, WordPress sends system email using sendmail.
If you receive admin emails (new user joining, password changes, etc.), your email server is working, and it should send out notification emails to members without problem.
Members configure their settings: My Account … Settings … Notifications
If you want to use a different email server, e.g. smtp, this may help: http://maisonbisson.com/blog/post/12939/using-wordpress-with-external-smtp-server/
If you want to send specific emails to members, you could look at something like the Welcome Pack plugin
October 3, 2010 at 5:40 am #94095Rob Sbaglia
ParticipantWhich folder should the buddypress plugin be in? It’s currently in /public_html/thenorthschool.com/wordpress-mu/wp-content/plugins
October 3, 2010 at 3:54 am #94087Rob Sbaglia
ParticipantUpdate was automatic. I don’t think I have a caching plugin – would that be through wordpress?
October 2, 2010 at 10:35 pm #94076In reply to: Best Plugin for a points system
LPH2005
ParticipantCubePoints
CubePoints is a point management system designed for WordPress blogs. Users can earn points by posting comments on your site. To display user’s points, just put “ in your template or activate the sidebar widget.CubePoints Buddypress Integration
Adds CubePoints support to Buddypress. Reward members using your BuddyPress portion of your website by giving them points!BuddyPress Member Profile Stats
Adds a few basic count stats and per day avg under member’s profileYou may see integration of the plugins on http://www.thechembook.com
Profiles: http://www.thechembook.com/members/admin/profile/public/When a member is logged into the site then the navigation bar shows the points, too.
October 2, 2010 at 10:33 pm #94075In reply to: Best Plugin for a points system
Paul Wong-Gibbs
KeymasterThanks @nahummadrid
@JordashTalon There is some more detail on my Achievements plugin at http://byotos.com/. An alternative to Achievements is CubePoints, https://wordpress.org/extend/plugins/cubepoints/
October 2, 2010 at 5:54 pm #94047In reply to: 404 Page not found
roopunk
Memberhey pals, I had the same problem. Searched a little in the wp documentation about permalinks. Seems that to use the permalinks other than the default one, mod-rewrite needs to be enabled in apache server. I followed the steps and enabled the mod-rewrite module and now everything is working fine. here’s the documentation https://codex.wordpress.org/Using_Permalinks
October 2, 2010 at 12:52 pm #94029In reply to: Blog section isn’t working
Bowe
ParticipantHave you enable Multisite on your wordpress install? Blogs are only enabled if you use multisite:
October 2, 2010 at 12:43 pm #94026In reply to: Translating buddypress
John
Participant@rogercoathup Thanks, apparently this plug-in is only working until the version 2.9.2 of WordPress.
Do you know a plug-in who could offer the user the choice to choose the buddypress’s function language ?
October 1, 2010 at 4:27 pm #93991In reply to: How to turn OFF multisite?
@mercime
Participant“The site was originally installed on WordPressMU”
You can convert a WPMU install with only one site to single WP, it’s not hard to do and there are tutorials online on how to go about it. But none take BuddyPress into consideration and you’re on WP 3.0.1, so all bets are off. I would suggest experimenting on test install first and see how that works out, taking into consideration avatar and media upload paths. Main work would be on database. In the meantime, I assume that in your dashboard > Super Admin > Options > only user registration is allowed.
October 1, 2010 at 2:09 pm #93981In reply to: Translating buddypress
John
Participant@rogercoathup Thanks but this will be applied to all the blogs ? My buddypress is on a secondary blogs. And I just want to offer the users the choice to translate the functions in their languages.
I have found something who could really fit my needs but I can’t make it work :
https://wordpress.org/extend/plugins/fw-quick-langswitch/I’ve installed it, but if I click on the flags nothing happen. I have named my images according to the name of my languages files (buddypress.pot et buddypress-fr_FR.mo)
October 1, 2010 at 1:08 pm #93979tweetyx
ParticipantProblems solved on actually bp and wordpress 3.0 for profile
The first problem was the js conflict with jquery -> dynamic marks not works
the second is the profile maps doesn’t work so ->
the file bp_maps_profile_init.php contain a bp_maps_profile_init() function where the function bp_maps_profile_is_enabled, bp_is_profile_edit and bp_maps_profile_is_map_group return false so the js aren’t be loaded .
So you must change the condition for it work!
this is my code
function bp_maps_profile_init() {
global $bp;//backend options
add_action( ‘bp_maps_admin_plugins_div’,’bp_maps_profile_admin_plugins_div’);
//the numer of my group edit for the location page (/members/admin/profile/edit/group/6/)if(strpos($_SERVER[“REQUEST_URI”], “edit/group/6?) !== false):
//change infobulle content to set user’s info
add_filter(‘bp_maps_marker_infobulle_content’,’bp_maps_profile_infobulle_content’,10,2);
//add_filter(‘bp_maps_get_markerslist_marker_content’,’bp_maps_profile_marker_content’,10,2);//change infobulle content to set user’s info
add_filter(‘bp_maps_get_marker_title’,’bp_maps_profile_marker_title’,10,2);
add_filter(‘bp_maps_get_marker_list_title’,’bp_maps_profile_marker_title’,10,2);add_action(‘wp_print_scripts’,’bp_maps_profile_print_scripts’); //edition scripts (address autocomplete)
add_filter(‘bp_maps_get_map_js’,’bp_maps_profile_add_map_js’,10,2); //array to contain the field ids
add_action(‘wp’,’bp_maps_profile_edit_no_marker’);//TO FIX : useless ?
//add_filter(‘bp_maps_get_new_marker_address’,’bp_maps_profile_get_new_marker_address’);do_action(‘bp_maps_profile_edit_map_screen’);
bp_maps_head_init(); //load maps JS
endif;
}
If you want to dll my version it here http://www.sky-flop.com/buddypressmaps-titi.rar
October 1, 2010 at 1:01 pm #93976In reply to: Error with the plugin BuddyPress Maps
tweetyx
ParticipantProblems solved on actually bp and wordpress 3.0 for profile
The first problem was the js conflict with jquery -> dynamic marks not works
the second is the profile maps doesn’t work so ->
the file bp_maps_profile_init.php contain a bp_maps_profile_init() function where the function bp_maps_profile_is_enabled, bp_is_profile_edit and bp_maps_profile_is_map_group return false so the js aren’t be loaded .
So you must change the condition for it work!
this is my code
function bp_maps_profile_init() {
global $bp;//backend options
add_action( ‘bp_maps_admin_plugins_div’,’bp_maps_profile_admin_plugins_div’);
//the numer of my group edit for the location page (/members/admin/profile/edit/group/6/)if(strpos($_SERVER[“REQUEST_URI”], “edit/group/6”) !== false):
//change infobulle content to set user’s info
add_filter(‘bp_maps_marker_infobulle_content’,’bp_maps_profile_infobulle_content’,10,2);
//add_filter(‘bp_maps_get_markerslist_marker_content’,’bp_maps_profile_marker_content’,10,2);//change infobulle content to set user’s info
add_filter(‘bp_maps_get_marker_title’,’bp_maps_profile_marker_title’,10,2);
add_filter(‘bp_maps_get_marker_list_title’,’bp_maps_profile_marker_title’,10,2);add_action(‘wp_print_scripts’,’bp_maps_profile_print_scripts’); //edition scripts (address autocomplete)
add_filter(‘bp_maps_get_map_js’,’bp_maps_profile_add_map_js’,10,2); //array to contain the field ids
add_action(‘wp’,’bp_maps_profile_edit_no_marker’);//TO FIX : useless ?
//add_filter(‘bp_maps_get_new_marker_address’,’bp_maps_profile_get_new_marker_address’);do_action(‘bp_maps_profile_edit_map_screen’);
bp_maps_head_init(); //load maps JS
endif;
}
If you want to dll my version it here http://www.sky-flop.com/buddypressmaps-titi.rar
October 1, 2010 at 9:42 am #93945In reply to: Plugin development – please can you help
Anonymous User 96400
InactiveWell, when yo call xprofile_template_loop_end, then this hook should only run once the complete loop has finished. There’s no way of adding stuff before or after a certain action hook (except when there’s another hook), only right where the hook is. One way of adding things to a loop is to use a counter for the loop and then add a dynamic hook to every entry, like so:
`do_action( ‘some_custom_hook_’. $counter );`BuddyPress plugins are just WordPress plugins, so the best starting point is probably the WP codex:
https://codex.wordpress.org/Main_PageThen there’s the skeleton component that does a pretty good job of explaining some BP specific stuff:
https://wordpress.org/extend/plugins/buddypress-skeleton-component/And of course the BP plugin files and other BP plugins, that you can have a look through.
October 1, 2010 at 1:37 am #93915In reply to: Static Front Page, Blog Link Doesn’t Work
rayd8
MemberI’m going to try and add the steps for the fix again. I didn’t see the note about using backticks for code…
1. Open the index.php, save it to your theme as posts-page.php (or whatever template name you like).
2. Edit the newly created posts-page.php file and place the following at the top to create a page template:`<?php
/*
Template Name: Posts Page
*/
?> `3. Now scroll down in the posts-page.php to the beginning of the WordPress loop and just before the line “ add this one line of code “ Note: (5 == the number of post to show you can change this to whatever you want.)
4. Save the posts-page.php file.
5. In your WordPress/BuddyPress admin panel create a new page called “Blog” (or something similar) and select “Posts Page” under Template.
6. Publish page.You should now be able to go to your Settings -> Reading menu and set a static page and select your Posts Page to show your blog posts.
October 1, 2010 at 12:26 am #93912paulhastings0
ParticipantWe meet online every 2 weeks. You can suggest agenda items here: http://bpdevel.wordpress.com/
Wednesdays @ 19:00 UTC
IRC: irc.freenode.net
Channel: #buddypress-dev
Web-based IRC client: http://java.freenode.net/Roger posted some good links too. I’ve been really impressed with the potential of filters and the like.
September 30, 2010 at 10:25 pm #93907In reply to: Howto : put a picture between header and content
Roger Coathup
ParticipantThere are any number of ways you can do this using CSS positioning (and developing your own bespoke website theme).
This isn’t really a BuddyPress question though, it’s a general website development / CSS question. I suggest a good book on CSS would be a starting point.
Incidentally: There’s no need for div wrappers just to position an image (you are adding unnecessary bloat), and I’d certainly avoid inline style definitions (which can be a maintenance nightmare).
@pcwriter – I’m not sure what you are trying to write with your CSS, but I suspect you’ve confused absolute and relative positioning. For the approach you are suggesting, you should make your main header div relatively positioned, and use absolute positioning on your image to position it absolutely in relation to the header div: http://css-tricks.com/absolute-positioning-inside-relative-positioning/
As to suitability of BuddyPress for a ‘simple site’ – it depends what you want that site to do – if you want user profiles, messaging, groups, activity streams, etc. – then BuddyPress gives you a great platform to build on.
If you just want a simple content management system with posts, then you’d be better building on vanilla WordPress.
If you don’t need content management, then your simplest site would just be HTML and CSS.
September 30, 2010 at 4:11 pm #93886In reply to: Bug: "Recent Site Wide Posts" Widget
paulhastings0
Participant@jutecht12 Something else appears to be the problem here. When I visit your blogs tab it says that most of your blogs were updated over a month ago. But when I visit the individual blogs some say they were updated just a couple of days ago.
Let me guess, did you upgrade either BuddyPress or WordPress on September 8th?
I would try installing BuddyPress and WordPress one more time again from scratch. Possibly even change the name of the database. Make sure to create backups though.
September 30, 2010 at 11:18 am #93846nit3watch
ParticipantI thought of trying to make a function that would take preference over the build in wordpress $id.
something like:
function id()
$id = $bp->groups->current_group->idbut doesn’t take effect, is there some way to take priority like with css !important ?
Edit: instead of trying the above I changed all instances of $id to my own function $group_rate
Though I just need a little help with the function and after which I dont see why it shouldn’t all work
Here’s my version, my function’s on line 7-10 : http://pastebin.com/dR74qbqM
September 30, 2010 at 11:15 am #93845Hugo Ashmore
Participant@kimprasannanielsen welcome to the help forum, firstly the forum is not a coding service as such we can’t do the work for you but will help you where you get stuck.
If you find an aspect confusing then please explain what stage you are at and what you’re stuck with and someone with experience of using the template pack will hopefully be able to guide you along.
If however you do want professional help then rather than post your email address here post a request on the jobs board group for help getting this sorted.
September 30, 2010 at 9:45 am #93835nit3watch
ParticipantMotivation

K well trying this with the Five Star Rating plug-in: https://wordpress.org/extend/plugins/five-star-rating/
Here’s what I have so far, though $id ( from line 176 onwards ) is confusing me.. and not quite sure to do there?
I cant get it to save the group data..Im calling the ‘stars’ using the shortcode in the group header: http://pastebin.com/R1gsTudD
Here’s my edited fsr.class.php: http://pastebin.com/qczBCb18
September 30, 2010 at 5:32 am #93822In reply to: Seems my entire forum section is gone? [NSFW]
JohnnyScience
MemberOk thanks, I’m looking into changing everything now.
I’ve been talking with the help desk at Hostgator & they said this:
Andrew Mi: You need to pull the files for the forum install. I only see the wordpress files there.
So I’m currently downloading a back up from August 1st right now to my computer, what files do I need to pull for the forum install?
Quote:when you’re secure again try running through the forum setup procedure from the backend using the existing setup optionand also visit the WP permalinks page under ‘Settings’ to ensure that the rules are flushed.
Ok sorry I’m not following this, so I need to run the Forum Setup procedure, but where is the “Backend” and where is the setup option from there?
Thanks.
September 30, 2010 at 4:14 am #93817In reply to: WordPress Profile vs BP X-Profile
youngmicroserf
ParticipantNo one has any additional info on the profile integration?
-
AuthorSearch Results
