DaveTheKnave
Forum Replies Created
-
I have a similar issue with characters.
Namely, the ampersand &
The player will play Cheech & Chong
However, when I click to download the mp3 with the download button, I get the expected pop up to save as yet the title is shortened to just “Cheech” and the file is 0kb.
Any help would be very much appreciated.
thank you!
Forum: Plugins
In reply to: [Social Login] How to redirect user to profile upon login or registrationThank you Claude.
This snippet is working in functions.php with no errors.
Login redirect to Buddypress Profile –
/*Add a filter to filter the redirect url for login*/ add_filter("oa_social_login_filter_login_redirect_url","bpdev_redirect_to_profile",100,3); add_filter("login_redirect","bpdev_redirect_to_profile",100,3); function bpdev_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){ /*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/ if(empty($redirect_to_calculated)) $redirect_to_calculated=admin_url(); /*if the user is not super admin,redirect to his/her profile*/ if(!is_super_admin($user->user_login)) return apply_filters("bpdev_login_redicrect_url",bp_core_get_user_domain($user->ID ),$user->ID);//allow top redirect at other place if they want else return $redirect_to_calculated; /*if site admin or not logged in,do not do anything much*/ }
Credit:
Plugin Name: BP Redirect to Profile for Buddypress
Author: Brajesh Singh
Author URI: https://buddydev.com
Plugin URI:https://buddydev.com/buddypress/bp-redirect-to-profile-plugin-redirect-users-to-their-profile-on-login-on-buddypress-sites/Forum: Plugins
In reply to: [Social Login] Showing Social Login everywhereIf you’re using the Social Login widgets in the sidebar, you can restrict to certain pages by using the Dynamic Widgets plugin.
If you want to put the Social Login widget within a pages content, you may be able to use the shortcode….
[oa_social_login]
If that doesn’t work, go to a page where your Social Login form is displayed and then go to page source and copy the forms html and insert into a page that way.
Forum: Plugins
In reply to: [Social Login] Avatar size problemI have this same issue.