AIOD - All in One Automatic Discount app helps merchant to
increase sales by offering multiple automatic discounts to
customers. With AIOD, merchants can easily create & manage
offers, and mix-match offers that work best for their store.
Having easy, and user-friendly discounts in your Shopify
store can help to boost Average Order Value. This app offers
various discounts like Bundle, Quantity discounts, Free
gifts, BOGO offers, etc…
ShipZip simplifies shipping rates by enabling custom rules
based on the product (SKU, Types, Tags, Vendors), zip
codes/postcodes, customer tags, distance, etc… With this
app, you can also manage store pickup, local delivery,
delivery date-specific rates. You can easily restrict the PO
box address if XYZ product is in the cart. Our ShipZip app
has covered it all!
With our form builder app, you can create your own custom
form for your Shopify store. Our app has many features like
drag-and-drop, file uploads, multi-step forms, conditional
fields, and Google reCAPTCHA to avoid spam submissions. Our
app also integrates with Mailchimp, Klaviyo, and Google
Sheets for a seamless experience. This application is easy
to use with many functions. Try it out and create killer
custom forms today!
Payfy: Payment Rules is a Shopify app that enables merchants
to conceal payment methods based on cart total, digital
product, customer tag, and B2B customers. To make it easier
for customers to complete the checkout process, you can sort
and reorder payment methods or manage the cash-on-delivery
(COD) option.
The Multi Store Locator app allows you to list all your
offline stores on a single page to help your customers to
find nearby stores quickly. You can easily add, update and
delete the store using the bulk import method. You can also
set your custom design on the map using your own Custom Map
styling with JSON. The main feature of the app is that it
supports all themes and is easy to install.
Shipzy ‑ Shipping Rules lets Shopify merchants hide, rename, or reorder shipping rates based on flexible rules like location, cart value, weight, product tags, or SKUs. Without coding, you can create tailored checkout experiences, ensuring customers see only relevant delivery options, improving convenience, and streamlining order fulfillment.
Auto Discount App – Supercharge your sales and boost AOV with smart, seamless discounts! Easily create volume discounts, tiered pricing, BOGO deals, and free gift offers that your customers will love. Showcase enticing quantity breaks right on product pages, and keep checkout smooth with no draft orders. Works brilliantly with POS and gives you the choice of automatic or manual discount codes, the perfect way to turn browsers into buyers!
If you want an auto-complete address like the above video then you just need to go through the below code.
Here is code [YOURAPIKEY] is needs to be your Google map API key & ‘YOUR FORM ID’ needs to be your created form ID. You will get the form ID from the inspect element of the browser like the below screenshot.
Below is the sample code.
<script src=”https://maps.googleapis.com/maps/api/js?key=[YOURAPIKEY]&libraries=places&callback=PlaceAutocompleteSearch” async defer></script>
<script>
function csFormShotcodeLoded(formId) {
if (formId == ‘YOUR FORM ID’) {
var placeSearch, autocomplete;
autocomplete = new google.maps.places.Autocomplete((document.getElementById(‘address’)), { types: [‘geocode’] });
function fillInAddress() {
var place = autocomplete.getPlace();
$(‘#street_address’).val(”);
$(‘#route’).val(”);
$(‘#city’).val(”);
$(‘#state’).val(”);
$(‘#zip_code’).val(”);
$(‘#country’).val(”);
If you want just an auto-complete address without different fields like Street address, Route, City, etc… then just use the below code.
<script src=”https://maps.googleapis.com/maps/api/js?key=[YOURAPIKEY]&libraries=places&callback=PlaceAutocompleteSearch” async defer></script>
<script>
function csFormShotcodeLoded(formId) {
if (formId == ‘YOUR FORM ID’) {
var placeSearch, autocomplete;
autocomplete = new google.maps.places.Autocomplete((document.getElementById(‘address’)), { types: [‘geocode’] });
}
}
</script>
Note: Above code is configured when you used the shortcode to init the form on your page.
If you used HTML code to set the form on your page then you have to use the below code.
The below code is with HTML form code with just the Address auto-complete field.
<script src=”https://maps.googleapis.com/maps/api/js?key=[YOURAPIKEY]&libraries=places&callback=PlaceAutocompleteSearch” async defer></script>
<script>
function PlaceAutocompleteSearch() {
var autocomplete;
autocomplete = new google.maps.places.Autocomplete((document.getElementById(‘address’)), { types: [‘geocode’] });
}
</script>
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.