Sample jQuery attr() method to add plan ID to pricing table buttons:
jQuery(document).ready(function() {
// Add Chargebee checkout data type and create undefined button URL on all Divi pricing table buttons
jQuery(".et_pb_pricing_table_button").attr({
"data-cb-type": "checkout",
href: "javascript:void(0)"
});
// Add Chargebee plan ID to first pricing table button
jQuery(".et_pb_pricing_table_0 .et_pb_pricing_table_button").attr(
"data-cb-plan-id",
"my-chargebee-plan-id---1"
);
// Add Chargebee plan ID to second pricing table button
jQuery(".et_pb_pricing_table_1 .et_pb_pricing_table_button").attr(
"data-cb-plan-id",
"my-chargebee-plan-id---2"
);
});
I just came here from your awesome tutorial for the portal link.
However with this one, I am not sure where I can paste the code above in my Divi in order for the Chargebee Check-in to pop up. Could you kindly advise?
Hi Alex,
I just came here from your awesome tutorial for the portal link.
However with this one, I am not sure where I can paste the code above in my Divi in order for the Chargebee Check-in to pop up. Could you kindly advise?
Thank you so much.