• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

Implementing Popup Checkout Pages in Pabbly Subscription Billing

Pabbly Subscription Billing provides a versatile feature that allows you to implement Popup Checkout Pages on your website. Popup checkout pages offer a seamless payment experience without redirecting users to a different page, contributing to better conversion rates. Follow this guide to successfully implement Popup Checkout Pages.

Step 1: Creating plan

The process of creating plan involves providing basic information like amount, billing cycle etc to get your hosted payment page created. You can learn how to create plans by watching this video.

Step 2: Go to customizer

To navigate to the customizer, you'll have to click on the three dots menu on the right of the plan's name.

1648209607833.png


Step 3: Click on the background of the page to get the option to select the layout.

1648213381618.png


Step 4: Select the layout type

Select "popup" from the option to select layout type and save.

1648210042614.png


Step 5: Pasting code in the header

The first code that you see in the smaller box needs to in the header of your website. This code is common for all the pop checkout pages that you'll create. For example, if you'll put three popups for three different plans on the same page, you'll have to insert this code once in the head of the webpage.

1648210313940.png


Step 6: Pasting code under the BUY Button

The code in the larger box needs to go under the buy button or the part on which the popup needs to appear when clicked. This code is unique for all the popup checkout pages that you've created. If you have three different plans, you simply need to paste the respective codes under the buy button.

1648210769991.png


Step 7: That's all! It's done.

The process has been completed. You can reload your website and see your popup checkout page appear when the button is clicked. If it doesn't appear, please try clearing cache data and it would fix the problem.

1648280424272.png


This is the default view of the popup checkout page. You can use the checkout customizer to make customizations in appearance if required.


Implementing Multiplan Popup Checkout Pages:

Implementing a multi-plan checkout page in a popup layout is no different than implementing a single-plan popup checkout page. All you need to do is change the checkout page URL in the popup button code.

For example, if this is the single plan popup checkout code -

<a onclick="open_center_popup(' ?is_popup_preview=true')" class="anchor_button popup_checkout_button" style="background-color: #007bff; color: #ffffff;">Click Me</a>

Then you just need to replace the checkout page URL with the multi-plan checkout page URL.

<a onclick="open_center_popup(' ?is_popup_preview=true')" class="anchor_button popup_checkout_button" style="background-color: #007bff; color: #ffffff;">Click Me</a>
That's All!


NOTE:
If you are facing any error with WordPress such as WordPress replacing the default code, then you can use the below-given code in order to implement the pop-up checkout page.


<a id="popUp" onclick="" class="anchor_button popup_checkout_button" style="background-color: #007bff; color: #ffffff;">Click Me</a>

<script>
document.getElementById("popUp").addEventListener("click", showPopUp);
function showPopUp() {
open_center_popup('https://payments.pabbly.com/subscri...ebook-purchase-checkout?is_popup_preview=true')
}
</script>
<script src="https://payments.pabbly.com/api/checkout/popup-checkout.js"></script>

Here is the video tutorial for your better understanding -
 

Attachments

  • 1648210130601.png
    1648210130601.png
    91.9 KB · Views: 176
  • 1648211170321.png
    1648211170321.png
    51.6 KB · Views: 181
Last edited by a moderator:
Top