Title: atrialstudios's Replies | WordPress.org

---

# atrialstudios

  [  ](https://wordpress.org/support/users/atrialstudios/)

 *   [Profile](https://wordpress.org/support/users/atrialstudios/)
 *   [Topics Started](https://wordpress.org/support/users/atrialstudios/topics/)
 *   [Replies Created](https://wordpress.org/support/users/atrialstudios/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/atrialstudios/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/atrialstudios/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/atrialstudios/engagements/)
 *   [Favorites](https://wordpress.org/support/users/atrialstudios/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] VideoPress can’t upload no longer and videos are not avaiable anymore](https://wordpress.org/support/topic/videopress-cant-upload-no-longer-and-videos-are-not-avaiable-anymore/)
 *  Thread Starter [atrialstudios](https://wordpress.org/support/users/atrialstudios/)
 * (@atrialstudios)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/videopress-cant-upload-no-longer-and-videos-are-not-avaiable-anymore/#post-15822100)
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] VideoPress can’t upload no longer and videos are not avaiable anymore](https://wordpress.org/support/topic/videopress-cant-upload-no-longer-and-videos-are-not-avaiable-anymore/)
 *  Thread Starter [atrialstudios](https://wordpress.org/support/users/atrialstudios/)
 * (@atrialstudios)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/videopress-cant-upload-no-longer-and-videos-are-not-avaiable-anymore/#post-15819157)
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] VideoPress can’t upload no longer and videos are not avaiable anymore](https://wordpress.org/support/topic/videopress-cant-upload-no-longer-and-videos-are-not-avaiable-anymore/)
 *  Thread Starter [atrialstudios](https://wordpress.org/support/users/atrialstudios/)
 * (@atrialstudios)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/videopress-cant-upload-no-longer-and-videos-are-not-avaiable-anymore/#post-15818935)
 * 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
 * > [View post on imgur.com](https://imgur.com/a/OaOgIA6)
 * Video error link
    [https://onlytomodachi.com.br/example-post/](https://onlytomodachi.com.br/example-post/)
 * I followed the jetpack tutorial (link: [https://jetpack.com/support/troubleshooting-video-hosting-issues/](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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[miniOrange Social Login and Register (Discord, Google, Twitter, LinkedIn)] Disable “Connect with” woocommerce_login_form_start hook](https://wordpress.org/support/topic/disable-connect-with-woocommerce_login_form_start-hook/)
 *  Thread Starter [atrialstudios](https://wordpress.org/support/users/atrialstudios/)
 * (@atrialstudios)
 * [4 years ago](https://wordpress.org/support/topic/disable-connect-with-woocommerce_login_form_start-hook/#post-15704519)
 * [@jimnouvakis](https://wordpress.org/support/users/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 4 years ago by [atrialstudios](https://wordpress.org/support/users/atrialstudios/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[miniOrange Social Login and Register (Discord, Google, Twitter, LinkedIn)] Disable “Connect with” woocommerce_login_form_start hook](https://wordpress.org/support/topic/disable-connect-with-woocommerce_login_form_start-hook/)
 *  Thread Starter [atrialstudios](https://wordpress.org/support/users/atrialstudios/)
 * (@atrialstudios)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/disable-connect-with-woocommerce_login_form_start-hook/#post-15435951)
 * Nvm i just found out

Viewing 5 replies - 1 through 5 (of 5 total)