Comments Wade started the conversationMay 2, 2023 at 9:21amHi there,I trust you are well.I want to disable the QR code on the WooCommerce orders. Reason being is it does not add any value at the moment, and links to a page with broken CSS (Divi).Please advise how to disable the QR code option / remove it from WooCommerce tickets? 877Zhivko repliedMay 2, 2023 at 9:40amHi,Open file stachethemes_event_calendar / assets / php / class.helper.phpand search for following function:Place "return false;" right below it like this: Stachethemes DeveloperWade repliedMay 2, 2023 at 10:03amHi there,I trust you are well.Thank you. Will this stay persistent through updates?Wade repliedMay 2, 2023 at 10:08amAlso, Please advise if the attached is correct?Wade repliedMay 2, 2023 at 10:09amAlso, Please advise if the attached is correct?Attached files: Screenshot from 2023-05-02 12-07-48.png 877Zhivko repliedMay 2, 2023 at 10:17amYes, this is correct.I am currently writting a small filter so this function can remain disabled even after update: // Disable QR Code image generator add_filter('stec_qrcode_disabled', function(){ return 1;});This hook can be placed in your theme or child-theme functions.php file. Stachethemes Developer Sign in to reply ...
Hi there,
I trust you are well.
I want to disable the QR code on the WooCommerce orders. Reason being is it does not add any value at the moment, and links to a page with broken CSS (Divi).
Please advise how to disable the QR code option / remove it from WooCommerce tickets?
Hi,
Open file stachethemes_event_calendar / assets / php / class.helper.php
and search for following function:
Place "return false;" right below it like this:
Stachethemes Developer
Hi there,
I trust you are well.
Thank you. Will this stay persistent through updates?
Also,
Please advise if the attached is correct?
Also,
Please advise if the attached is correct?
Attached files: Screenshot from 2023-05-02 12-07-48.png
Yes, this is correct.
I am currently writting a small filter so this function can remain disabled even after update:
This hook can be placed in your theme or child-theme functions.php file.
Stachethemes Developer