-
Tanner Moushey commented on the post, An online community learning hub to deepen studies during IRL meetings, on the site BuddyPress.org 5 years, 1 month ago
Thanks Renato!
I’d already had so me experience with VueJS, so we went that route. However it’s very similar to React, so the same principle would apply. Hoping we’ll get an excuse to try this in React sometime soon!
-
Tanner Moushey replied to the topic SalesForce & BuddyPress in the forum How-to & Troubleshooting 10 years ago
Hey @qmai! I have setup a system before to link BuddyPress Profile Fields to SalesForce, but it takes a good amount of custom work. The method I ended up doing was to add a piece of custom meta to the Profile Field edit screen that allows you to specify a SF field id. Unfortunately, the process of adding custom meta to a BuddyPress Profile Field…[Read more]
-
Tanner Moushey replied to the topic Change Activity Stream and Profile Background Color in the forum How-to & Troubleshooting 10 years ago
Super! Glad that helped!
-
Tanner Moushey replied to the topic Change Activity Stream and Profile Background Color in the forum How-to & Troubleshooting 10 years ago
I hope that helps!
-
Tanner Moushey replied to the topic Change Activity Stream and Profile Background Color in the forum How-to & Troubleshooting 10 years ago
Hello @boki88! Unfortunately it sounds like theme you are using does not have the ability to change those BuddyPress styles without some custom coding. Fortunately, it looks like you have Jetpack enabled and Jetpack has a CSS editor where you can enter custom styles without having to edit code in the theme files.
Go to the edit css page…[Read more]
-
Tanner Moushey replied to the topic [Resolved] Redirect users to Registration other wise set Activity as front page in the forum How-to & Troubleshooting 10 years ago
Great, glad that fixed it! You can see the list of WP actions here: https://codex.wordpress.org/Plugin_API/Action_Reference.
To limit this redirect just to the home page update it to something like this:
add_action( 'template_redirect', 'redirect_visitors' );
[Read more]
function redirect_visitors() {
if ( !is_user_logged_in() && is_front_page() )… -
Tanner Moushey replied to the topic [Resolved] Redirect users to Registration other wise set Activity as front page in the forum How-to & Troubleshooting 10 years ago
Hey @braun_trutta! Try changing your action to ‘template_redirect’ instead of ‘init’.
so like this:
add_action( 'template_redirect', 'redirect_visitors' );
-
Tanner Moushey replied to the topic Allow members to write blog posts for main blog in the forum How-to & Troubleshooting 10 years ago
@doodledogcody, have you tried Gravity Forms? It has a good solution for user submitted posts. See this article for more details: http://gravitywiz.com/use-gravity-forms-to-create-user-submitted-posts/
-
Tanner Moushey replied to the topic Buddypress pages not loading (activity, profile, groups or members) in the forum How-to & Troubleshooting 10 years ago
Hey @professornate! Thanks for posting in the forums!
The issue you are seeing here is a result of some BuddyPress assets not loading. The site is throwing a Javascript error and that is preventing the page from loading.
First thing to try here is to deactivate and reactivate the BuddyPress plugin. If the issue persists, try changing your theme…[Read more]
@tanner-m
Active 2 weeks, 2 days ago