app_qrr is not defined issue
-
My console shows issue:
app_qrr is not definedSame as here: https://wordpress.org/support/topic/bug-console-errors/
Reason is that some themes process the post contents before the
wp_enqueue_scripts. Therefore thewp_localize_script('qrr-front-script', 'app_qrr', $app_qrr);is executed beforeqrr-front-scriptis registered causing thewp_localize_scriptcall to fail.
Solution: Wrap thewp_localize_scriptandwp_enqueue_scriptcalls infront-form.phpto also run on thewp_enqueue_scriptshook instead of runing it at the timefront-form.phpis executed.
The topic ‘app_qrr is not defined issue’ is closed to new replies.