Adding Links and Buttons to Your Website | Viva Helix

Links to Website

Summary

This guide provides direct links and HTML code snippets to integrate access to your catalog, user accounts, sessions, calendar, and bundle purchases directly from your website.

Step-by-step Instructions

ActionDescriptionLink
Register / View catalogAllows users to browse available courses and register.https://companydomain.vivadminsys.com/catalog
Access accountView training record and invoices.https://companydomain.vivadminsys.com/student_login?lang=fr-fr&login_only=1
Print diplomaFor a student with a code (9 characters) to print a diploma and view history.https://companydomain.vivadminsys.com/students/signup/code

1) Purchase button for a course

<form method="post" action="https://companydomain.vivadminsys.com/students/carts_sessions">
  <input type="hidden" name="session_id" value="XXXXX"/>
  <input type="hidden" name="lang" value="fr-fr"/>
  <input type="submit" name="submit" value="Buy this course" />
</form>

Replace XXXXX with the session ID:

https://companydomain.vivadminsys.com/students/courses/available?session_id=XXXXX

3) Sessions with the "placement" tag

https://companydomain.vivadminsys.com/students/courses/available?&tag=placement

4) All public sessions

Calendar display

Bundle purchase

<form method="post" action="https://companydomain.vivadminsys.com/students/carts_sessions">
  <input type="hidden" name="bundle_id" value="14"/>
  <input type="hidden" name="lang" value="fr-fr"/>
  <input type="submit" name="submit" value="Buy a bundle" />
</form>

Tips / FAQs

  • Always replace companydomain with your platform subdomain.
  • For session or bundle-specific links, insert the correct ID.
  • HTML buttons can be embedded directly into any page of your website.



    • Related Articles

    • Manage Bundles

      Summary Purpose of Bundles: Bundles let customers purchase multiple sessions in a single transaction, providing a lower per‑session price and encouraging the purchase of complementary training. Step-by-step Instructions 1) Select sessions Choose the ...
    • Create Activity or Course and Session

      Summary This guide explains how to create a course and a session in the platform, configure the available options, and understand the related statuses. It is intended for administrators and registrars responsible for managing the training catalog. ...
    • Automated Management of Session Publication and Registrations

      Summary This guide explains how to use Viva Helix’s new options to automate session visibility in the catalog and control when registrations become available. Two separate settings provide flexibility: the catalog publication date and the ...
    • Switch Platform Language

      Summary We improved language handling for a better user experience. By default, training site URLs are in French. If your site is French‑only, no action is needed. If you also provide an English version, ensure your links are configured correctly. ...
    • Guide – Use the “Price Coming Soon” Option in a Session

      Summary This guide explains the new feature that allows you to indicate that a session price is not yet defined. When a session is marked as “Price Coming Soon,” this message will appear in the catalog or calendar, and registrations will be ...