This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//add script to end of form | |
(function ($) { | |
$( window ).load(function() { | |
SetRefreshButton(); | |
}); | |
window.setInterval(function(){ | |
reCaptchaV2Manager.onLoadHandler(); | |
}, 120000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Added script to order-confrirmtion.html page | |
//store data after payment has been actioned | |
$("body").on("click","#checkout-payment-continue" ,function () { | |
var CratItems = {{{json cart.items}}}; | |
var Cart = {{{json cart}}}; | |
StoreCartItems(CratItems); | |
//console.log(localStorage.getItem('transactionItems')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace ScoreBoard | |
{ | |
[Serializable] |