Skip to content

Commit

Permalink
fix: wrong function call
Browse files Browse the repository at this point in the history
  • Loading branch information
abaicus committed Jul 30, 2024
1 parent 41e8fa3 commit 3d0e3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/customizer/options/upsells.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) );
Expand Down

0 comments on commit 3d0e3dd

Please sign in to comment.