Hi,
Did you purchase the domain name .co.il you want ? Then go to your project settings => main domain & SSL => disable SSL => once done, switch to the new domain => then enable SSL on the new domain
Hello Patrick,
You want to move your domain from AppDrag to 02Switch and you already have the EPPCode.
So it has to be done on 02Switch. You will have to transfer it from there and they'll ask your EPPCode that you already found on AppDrag.
If you need more help you have to ask to 02Switch.
By the way I removed the EPP Code you provided as with that anyone can transfer it to it's own account, that was very risky to do it...
To check if it's well configured you only have to go to Google Analytics and check if you have data or no. If you don't we can help you to understand why.
If you want to add some scripts, you can use AppDrag Source Code embed components and paste the scripts google provide you.
Hello,
You would need a little bit of javascript to do it.
First of all on all your different training program download button you would do a link to your form with an additional URL parameter "training=mytraining1"
Then on your form configuration go to in After Summit >insert HTML after submission (or in a CloudBackend function it would be after function call > execute custom javascript code)
Your javascript would look like something like this
var targetFile = '';
var training = getParamFromUrl('training'); // getParamFromUrl is available on all AppDrag Websites
if (training == 'mytraining1') {
targetFile = 'https://linktomypdffile1.pdf';
}
if (training == 'mytraining2') {
targetFile = 'https://linktomypdffile2.pdf';
}
if (targetFile != '') {
window.open(targetFile, '_blank'); // this code open it in a new tab if you want to be redirected entirely to the file use window.location.href = targetFile;
}
You have multiple solutions, the easiest one is to use AppDrag Shop feature and to define your items as digital goods.
Another solution is to create a custom database of items with AppDrag CloudBackend and in frontend do some logic to have a cart and link it to a PayPal button.
I don't have the big picture to advise you which solution is the best for your project so I wish one of those solutions would help you to move forward!