/home/arranoyd/energyclinic/wp-content/plugins/ecwid-shopping-cart/templates/advanced-settings.php
<h2><?php echo esc_html( sprintf( __( '%s — Advanced settings', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?></h2>

<div class="wrap">
<form class="pure-form pure-form-aligned ecwid-settings advanced-settings" method="POST" action="options.php">


	<?php settings_fields( 'ecwid_options_page' ); ?>
	<input type="hidden" name="settings_section" value="advanced" />

	<fieldset>
		
		<div class="pure-control-group checkbox">
			<div class="label">
				<label for="ecwid_is_sso_enabled" class="premium-feature">

					<input
						id="ecwid_is_sso_enabled"
						name="ecwid_is_sso_enabled"
						type="checkbox"
						<?php if ( $is_sso_enabled ) : ?>
							checked="checked"
						<?php endif; ?>
						<?php if ( $is_sso_checkbox_disabled ) : ?>
						disabled="disabled"
						<?php endif; ?>
					/>
					<?php esc_html_e( 'Customer Single Sign-On', 'ecwid-shopping-cart' ); ?>
					<?php ecwid_embed_svg( 'star' ); ?>
				</label>

				<div class="note">
					<?php echo esc_html( sprintf( __( 'Single Sign-On allows your customers to have a single login for your WordPress site and your %s. When someone logs in to your site, they will automatically be logged in to their customer account in your store as well with no need to enter their email/password again.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?>
				</div>
				<?php if ( ! ecwid_is_paid_account() ) : ?>
				<div class="upgrade-note">
					<a
						class="button ecwid-button button-green" target="_blank"
						href="<?php echo esc_url( Ecwid_Admin::get_dashboard_url() ); ?>&ec-page=<?php echo rawurlencode( Ecwid_Admin_Main_Page::PAGE_HASH_UPGRADE ); ?>">
						<?php esc_html_e( 'Upgrade to get this feature', 'ecwid-shopping-cart' ); ?>
					</a>
					<div class="note grayed-links">
						<?php echo esc_html( sprintf( __( 'Please subscribe to a paid plan to get this feature.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?>
					</div>
				</div>
				<?php endif; ?>
				<?php if ( ! $is_sso_enabled && ecwid_is_paid_account() && ! get_option( 'ecwid_sso_secret_key' ) && ! $has_create_customers_scope ) : ?>
					<div class="note">
						<?php echo wp_kses_post( sprintf( __( 'To allow %1$s automatically log in customers to your store, please provide it with a permission to use the customer data in the store. <a %2$s>Please use this link to do that</a>', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand(), 'href="' . $reconnect_link . '"' ) ); ?>
					</div>
				<?php endif; ?>

				<?php if ( ! get_option( 'users_can_register' ) ) : ?>
				<div class="note">
					<?php echo wp_kses_post( sprintf( __( 'To make sure your customer can actually log in to your site and store, enable registration in the <a %s>site settings</a>', 'ecwid-shopping-cart' ), 'href="options-general.php"' ) ); ?>
				</div>
				<?php endif; ?>
			</div>
		</div>

		<hr />

		<?php if ( Ecwid_Products::is_enabled() ) : ?>
			<div class="pure-control-group checkbox">
				<div class="label">
					<label for="<?php echo esc_attr( Ecwid_Products::OPTION_ENABLED ); ?>">

						<input
							id="<?php echo esc_attr( Ecwid_Products::OPTION_ENABLED ); ?>"
							name="<?php echo esc_attr( Ecwid_Products::OPTION_ENABLED ); ?>"
							type="checkbox"
							<?php if ( Ecwid_Products::is_enabled() ) : ?>
								checked="checked"
							<?php endif; ?>
							value="Y"
							<?php if ( ! Ecwid_Products::is_feature_available() ) : ?>
								disabled="disabled"
							<?php endif; ?>
						/>
						<?php esc_html_e( 'Integration with search on your site', 'ecwid-shopping-cart' ); ?>
					</label>

					<div class="note">
						<?php echo esc_html( sprintf( __( '%s stores your products data in a secure cloud storage. The product pages are displayed on the fly when a customer browses your store. So, basically, the products are not stored on the site, that\'s why the site search doesn\'t find product pages while looking through site pages and posts. This option enables a local storage mode: the products will be stored both in the cloud and on your site. The site search results will list product pages as well as regular pages/posts of your site.', 'ecwid-shopping-cart' ), Ecwid_Config::get_brand() ) ); ?>
					</div>
				</div>
			</div>
				
			<?php ecwid_sync_do_page(); ?>

		<?php endif; ?>

	</fieldset>

	<fieldset>

		<div class="pure-control-group" style="margin-top: 30px">
			<button type="submit" class="<?php echo esc_attr( ECWID_MAIN_BUTTON_CLASS ); ?>">
				<?php esc_html_e( 'Save changes', 'ecwid-shopping-cart' ); ?>
			</button>
		</div>
	</fieldset>
</form>
</div>