pulpee
Forum Replies Created
-
Here’s a working turnaround by adding this code as a Snippet. Nevertheless, the error still appears in the console when the button is clicked on mobile.
add_action('wp_enqueue_scripts', 'enqueue_sweetalert2_script');
function enqueue_sweetalert2_script() {
wp_enqueue_script('sweetalert2', 'https://cdn.jsdelivr.net/npm/sweetalert2@11', array(), null, true);
wp_add_inline_script('sweetalert2', '
const originalSwalFire = Swal.fire;
Swal.fire = function(options) {
if (options.allowOutsideClick && options.backdrop === undefined) {
options.backdrop = true;
}
return originalSwalFire(options);
};
');
}Hello, first of all I would like to point out the very low quality of your support (two weeks to provide a solution that is not a solution).
Secondly I would like to help people who are looking for the resolution of this problem. To remove the .pdf file from the email sent to the beneficiary you just have to remove the line 83 from the file wpgv_giftcard_pdf.php.
$pdf->output($upload_dir,'F');
Hopefully this will help some of you !
Hi ! Further investigation the error was due to additional CSS.
#select-template-voucher{ display:none; }
This CSS hides the canvas template (on the right of the form).
My needs require to hide canvas (sending the code without linked pdf).Would you have another solution to remove this section without triggering errors and/or does the pro version allow it ? Thanks
Hi, thank you for quick answer ! I’m already running on version 4.1.6, I also reinstalled the plugin without result. Could the pro version solve this problem ?
Forum: Plugins
In reply to: [FullScreen AJAX Loader] Exclude URL of Static homepage‘/’ to exclude homepage
i faced same issue, you can add lines of css to resolve problem :
#user_pass_field{ display:block; } #user_confirm_password_field{ display:block; }
Have a nice day !