Support

Home Forums Social Media Buttons Add-on Move location of social sharing options on registration details page.

Move location of social sharing options on registration details page.

Posted: March 24, 2017 at 2:17 pm


Josh

  • Support Staff

March 24, 2017 at 5:02 pm

Hi there,

You can add some code to your website to move those:

add_action(
  'AHEE__thank_you_page_overview_template__bottom', 
  'my_move_buttons_ee_social', 
  11 
);

function my_move_buttons_ee_social() {
  ?>
  <script>jQuery( document ).ready(function($) {
    $('#espresso-social-buttons-dv').insertBefore('#espresso-thank-you-page-overview-dv');
    $('#espresso-social-buttons-dv').append('<div class="ee-clearfix"></div>');
  } );  
  </script>
    <?php
}

You can add the above to a functions plugin or into your WordPress theme’s functions.php file.

The support post ‘Move location of social sharing options on registration details page.’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso