In this tutorial, we will take you through how to add BookThatApp Booking Forms to the Symmetry theme. Before you start we recommend you take a backup of your current theme.
Note: Widgets are our newest type of booking form. We highly recommend using a widget over a classic booking form. Our booking forms are available in the app for the Business or higher app subscriptions. Besides requiring no coding changes and having a more modern look that flows better with the theme, the widgets have more settings and greater app performance in comparison to the classic forms. Since the widgets require no coding changes you can easily have many different types of widgets in your store to handle all types of booking scenarios.
If you have not tried out a widget yet please see the following:
https://support.zetya.com/hc/en-us/articles/360000984495-Widgets
Step 1 - Choose Your Booking Form
- Login to BookThatApp
- In BTA Admin, select the Install link from the left hand navigation menu
- Click on the Install button next to the form that you want installed. Clicking the Install button creates a booking-form snippet in your current theme. Please refer to our article how to choose the booking form if you need help with this step.
Step 2 - Add the booking form to the Shopify product page
- In Shopify Admin, open your current theme.
- Open the product-template.liquid file under the Sections area of your Theme Editor.
- Copy and paste the below code on line 225.
108. <div class="input-row">
109. {% include 'booking-form' %}
110. </div>
- Click Save
Step 3 - Updating the Cart Page
- Continue with the instructions in the BTA Admin Install page. There is no need to add line item properties for this theme, however we recommend disabling the quantity in the cart page. To do this, please follow the instructions under Step 3 on the install page. The relevant code for step 3 on line 65 of the cart-template.liquid Sections file.
Step 4 - Updating the Email Templates
- Continue with the instructions in the BTA Admin Install page.
Step 5 - Additional Code Changes
1. Capturing Product ID's
- Access the Snippet file named booking-form.liquid and remove the code shown below.
var bta = {
productId: {{ product.id }}
}
- Now access the theme.liquid file in order to copy and paste the below code to the end of the file.
<script>
var ids = [];
$("form[action='/cart/add']").each(function(i, e) {
ids.push($(e).attr('data-product-id'));
})
var bta = {
product_id: ids.join(',')
}
</script>
Please note that you can add CSS to your booking form, but it is not recommended for this theme since formatting is inherited from the input-row class.
The app should now be successfully installed in the Symmetry theme. If you have any questions or the booking form is not appearing, please create a ticket and we'll be happy to help.
Comments
0 comments
Please sign in to leave a comment.