No such option “profile_label”
-
Line 94 of buddypress.php:
echo $this->options[‘profile_label’];
But the configuration screen doesn’t set this nor does it get a default in the activation hook.
My workaround/hack is/was to punch in my own value in the registration hook by hacking line 34 of buddypress.php to
$defaults = array(‘confirmation’ => 1, ‘welcome’ => 1, ‘status’ => ”, ‘subscribe’ => 0, ‘subscribe_label’ => ‘Subscribe to our newsletter’, “profile_label” => “Manage your newsletter subscription”);
and then deactivating and reactivating the plugin.
This works around the problem semi-permanently, unless you want to change the label ??
- The topic ‘No such option “profile_label”’ is closed to new replies.