Forum Replies Created
-
thanks trent
Could you please point me to that thread (the plugin working out of /plugin/)?
or you could do this: https://buddypress.org/forums/topic.php?id=591#post-2876
are you using the new bp_custom_profile_sidebar_boxes hook ?
I wouldn’t expect / demand that buddypress should work with a beta. I believe Andy et al. will after 2.7 is released.
What’s nice with WP/WPMU is that you don’t need to include the most popular javascript libraries with your plugin, they are already installed (scroll down a bit and you see the list: https://codex.wordpress.org/Function_Reference/wp_enqueue_script ), and using wp_enqueue_script you avoid conflicts.
E.g.: BPDEV-FLICKR should/could do (not tested):
function init_scripts() {
global $bp;
wp_enqueue_script('prototype');
wp_enqueue_script('scriptaculous-builder');
wp_enqueue_script('scriptaculous-effects');
wp_enqueue_script('bpdev-lightbox', bloginfo('wpurl').$bp['flickr']['lightbox'] . 'js/lightbox.js' , array( 'prototype','scriptaculous-builder','scriptaculous-effects' ) );
}
add_action('init','init_scripts');I mention it before, and Nicola will (I hope) use it in the next version, scripts and styles should be added using https://codex.wordpress.org/Function_Reference/wp_enqueue_script and https://codex.wordpress.org/Function_Reference/wp_enqueue_style
using smtp, you use the outgoing mail server at your xDSL provider or hoster.
Note: Sometimes have to use a different port number than 25 (I have to use 587). You usually get this information from the support page at your xDSL provider or hoster.
Use SMTP instead, more information here: http://subscribe2.wordpress.com/2008/05/15/smtp-mailer/
@nicola I did
renamed and moved to http://www.soderlind.no/code/?source=ps-bp-change_newblog_defaults.php
will appear at bpdev soon (I’ve posted it)
ok, you’re correct, it’s the 404 bug that’s causing this. I tried to create slugs as you mention at https://buddypress.org/forums/topic.php?id=666#post-3003 but it didn’t help.
As long as I now the cause I can live with it, http://snakkis.no is a beta site.
No, I’m not talking about 404s or other themes that the standard BP member theme. I’m running the latest trunk.
You’ll see what I mean if you go to http://snakkis.no/register (site is (mostly) in Norwegian, but the title is in English).
edit: isn’t it typical, just posted the stuff above and I find the cause i.e. the All in One SEO Pack plugin. I’ll post the fix when I find it.
any news on this ?
a phpxref of BP would be nice
if you need to search for do_action and apply_filters, this will give you the files (including path and line number), run it in mu-plugins:
egrep -nr 'do_action|apply_filters' @pwd@"/"* /dev/null | grep bp | grep -v svnreplace @ with backticks
You don’t need to hard code the links, this examples shows how to add links to the “main menu”:
<?php
function add_about_to_main_menu() {
$class = (bp_is_page('about')) ? ' class="selected" ' : '';
echo '<li ' . $class. '><a href="' . get_option('home') . '/about" title="' . __( 'About', 'buddypress' ) .'">' . __( 'About', 'buddypress' ) .'</a></li>';
}
add_action('bp_nav_items','add_about_to_main_menu');
?>I’m having problems displaying the error message (empty captcha / wrong captcha). I’ve set the messages in site admin.
Any clue why this is happening (on the /register page) ?
sorry, my bad .. I created “the bug”
eh .. there’s a bug in buddypress, when you’re on the main page, “Test” is missing from the admin bar. If you enter a member page, it’s there. I’ve reported this in ticket #283
nice, very nice. thank you david
I’m planning to move to Slicehost after reading http://wpmu.org/big-smart/. Slicehost is owned by Rackspace.
NetConnect.com, the company I’m a CTO at, have an Intensive hosting plan at Rackspace, and their support is Fanatical
done, added as ticket #272