atrialstudios
Forum Replies Created
-
It’s been more than 24 hours and I still haven’t received any support from the jetpack unfortunately I’m forced to ask for a refund it’s a shame the system was great I can’t say the same about the technical support
is this problem global or just my account? and where exactly can I put this shortcode in support? in the “Short description” or “Long description” field
do i need to be worried? because I need this video hosting
i would like it to be private but private support takes a long time to respond i will release a link to access to reproduce the error and an image of my wordpress dashboard
image link
Video error link
https://onlytomodachi.com.br/example-post/I followed the jetpack tutorial (link: https://jetpack.com/support/troubleshooting-video-hosting-issues/)
I disconnected the account and reconnected it again, uninstalled all plugins and activated it again but the errors persist
@jimnouvakis Hey sorry for the delay i can show the path i did to make work
in you dashboard go to “miniOrange Social Login, Sharing” > “Social Login” > “Display Options” and disable all the options from:
“Select the options where you want to display the social login icons”
After that go to your theme functions.php and copy and paste this code:
/** * Call [miniorange_social_login] shortcode above login form */ add_action( 'woocommerce_login_form_start','add_login_btn' );
function add_login_btn() { if ( shortcode_exists( 'miniorange_social_login' ) ) { echo do_shortcode('[miniorange_social_login]'); //Code to execute if the shortcode is present } else { return false; }
This will display the login buttons above the username Input on login form
If your theme have separate login and registration form you need to call the shortcode in your custom registration page here’s the code:
/** * Call [miniorange_social_login] shortcode above registration form */ add_action( 'woocommerce_register_form_start','add_reg_btn' );
function add_reg_btn() { if ( shortcode_exists( 'miniorange_social_login' ) ) { echo do_shortcode('[miniorange_social_login]'); //Code to execute if the shortcode is present } else { return false; }
I hope this will fix your problem
- This reply was modified 2 years, 5 months ago by atrialstudios.
Nvm i just found out