From 3d0e3dd353ee848888e6b1b70407e3405ef0bdd8 Mon Sep 17 00:00:00 2001 From: abaicus Date: Tue, 30 Jul 2024 09:30:33 +0300 Subject: [PATCH] fix: wrong function call --- inc/customizer/options/upsells.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/customizer/options/upsells.php b/inc/customizer/options/upsells.php index 1010c411a3..f58b6602ff 100644 --- a/inc/customizer/options/upsells.php +++ b/inc/customizer/options/upsells.php @@ -38,7 +38,7 @@ public function init() { return; } - $this->upsell_url = esc_url_raw( apply_filters( 'neve_upgrade_link_from_child_theme_filter', tsdk_translate_link( tsdk_utmify( 'https://themeisle.com/themes/neve/upgrade/', 'learnmorebtn' ) ) ), 'query' ); + $this->upsell_url = esc_url_raw( apply_filters( 'neve_upgrade_link_from_child_theme_filter', tsdk_translate_link( tsdk_utmify( 'https://themeisle.com/themes/neve/upgrade/', 'learnmorebtn' ), 'query' ) ) ); parent::init(); add_action( 'customize_controls_enqueue_scripts', array( $this, 'localize_upsell' ) );