domain = $domain; } /** * Register the Additional CSS nudge. * * @param \WP_Customize_Manager $wp_customize_manager The core customize manager. */ public function register_nudge( \WP_Customize_Manager $wp_customize_manager ) { $nudge = new CSS_Customizer_Nudge( $this->get_nudge_url(), __( 'Purchase a Premium Plan to
activate CSS customization', 'jetpack' ), 'jetpack_custom_css' ); $nudge->customize_register_nudge( $wp_customize_manager ); } /** * Get the nudge URL in WPCOM. * * @return string */ private function get_nudge_url() { return '/checkout/' . $this->domain . '/premium'; } }