-
Andrew Tibbetts replied to the topic Buttons + Tabs Loading Whole Site Into Template in the forum How-to & Troubleshooting 8 years, 11 months ago
Ok, I’ve found that it is tied to my redirect function mentioned in https://buddypress.org/support/topic/only-administrator-can-change-avatar/. I’ll repeat it here for posterity:
// keep the 'normies' out of the admin
add_action( 'admin_init', 'custom_admin_init', 1 );
function custom_admin_init() {if ( is_user_logged_in() && !…[Read more]
-
Andrew Tibbetts replied to the topic Textarea Profile Field? in the forum How-to & Troubleshooting 8 years, 11 months ago
I wasn’t gonna say anything… 🙂
-
Andrew Tibbetts replied to the topic Only administrator can change avatar… in the forum How-to & Troubleshooting 8 years, 11 months ago
Oooooh, this must be my issue.
Here is my current redirect:// keep the 'normies' out of the admin
add_action( 'admin_init', 'custom_admin_init', 1 );
function custom_admin_init() {if ( is_user_logged_in() && ! current_user_can( 'administrator' ) ) {
wp_redirect( home_url() ); die();
}
}
Were you able to figure out how to keep the…[Read more]
-
Andrew Tibbetts replied to the topic Textarea Profile Field? in the forum How-to & Troubleshooting 8 years, 11 months ago
Works!
Thank you.WP: 4.4.1
BP: 2.4.3 -
Andrew Tibbetts started the topic Buttons + Tabs Loading Whole Site Into Template in the forum How-to & Troubleshooting 8 years, 11 months ago
When I click on certain buttons and tabs (ones that I assume are doing some ajax work) it loads the entire home page into the template (duplicating header, footer, etc).
Example:
Go to “Groups” page (default on “All Groups” tab) and click the “My Groups” tab.
Content will fade out as if about to ajax in the “My Groups” content but instead the…[Read more] -
Andrew Tibbetts started the topic Textarea Profile Field? in the forum How-to & Troubleshooting 8 years, 11 months ago
Is there a way to get a plain, non-wysiwyg textarea (“multi-line text area”) profile field? Sounds like it used to be *only* plain textarea and was recently replaced with wysiwyg. How about both?
-
Andrew Tibbetts replied to the topic HTML or WYSIWYG in text profile fields? in the forum How-to & Troubleshooting 8 years, 11 months ago
^ Bump. Why didn’t you *ADD* a wysiwyg field type? Really need a plain textarea.
-
Andrew Tibbetts started the topic Message Going To Wrong User in the forum How-to & Troubleshooting 10 years, 6 months ago
When a message is sent to User A, it incorrectly goes to User B.
:: User A ::
user_id: 15
user_login: user_a
user_nicename: user_a:: User B ::
user_id: 1785
user_login: 15
user_nicename: 15I assume it’s the ’15’ that’s the key here.
Any ideas?WP: 3.4.2
BP: 1.6.1
(I know, I know…) -
Andrew Tibbetts replied to the topic Why is my custom component inactive in the forum How-to & Troubleshooting 12 years ago
Decided to give up modifying my existing plugin and just modify the Skeleton plugin that r-a-y recommended—much better idea. I now have the notification count displaying! No notification text but I’m pretty sure […]
@andrewgtibbetts
Active 7 years, 1 month ago