Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created July 27, 2018 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/6286d905e603a61f422efba26d6e061f to your computer and use it in GitHub Desktop.
Save KaineLabs/6286d905e603a61f422efba26d6e061f to your computer and use it in GitHub Desktop.
Integrate NEXTEND PLUGIN
<?php
/**
* Integrate NEXTEND PLUGIN
*/
function yz_integrate_nextend_plugin() {
if( class_exists( 'NextendSocialLogin', false ) ) {
echo NextendSocialLogin::renderButtonsWithContainer();
}
}
add_action( 'logy_before_login_fields', 'yz_integrate_nextend_plugin' );
add_action( 'bp_before_account_details_fields', 'yz_integrate_nextend_plugin' );
@franksysgfx
Copy link

@franksysgfx
Copy link

si no fuinciona en el LOGIN pero si en el registro, cambiar la linea 5 por function yz_integrate_nextend_plugin() { POR function youzify_integrate_nextend_plugin() { Y SI NO APARECE en el registro es porque aun les falta configurar el nextend, y si sigue sin mostrar desactiven cache

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment