Current Path : /storage/v11800/testtest/public_html/wp-content/plugins/commercegurus-commercekit/includes/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/testtest/public_html/wp-content/plugins/commercegurus-commercekit/includes/admin-dashboard.php
<?php
/**
 *
 * Admin Wishlist
 *
 * @package CommerceKit
 * @subpackage Shoptimizer
 */

?>
<div id="settings-content">
<div class="dashboard postbox content-box">
	<h2><span class="table-heading"><?php esc_html_e( 'Order Bump Statistics', 'commercegurus-commercekit' ); ?></span> <button type="button" class="button button-primary" id="reset-obp-statistics" onclick="if(confirm('<?php esc_html_e( 'Are you sure you want to reset these statistics?', 'commercegurus-commercekit' ); ?>')){reset_order_bump_statistics();}"><?php esc_html_e( 'Reset Statistics', 'commercegurus-commercekit' ); ?></button></h2>
	<div class="inside">
	<?php
	$order_bump_stats_views  = (int) get_option( 'commercekit_obp_views' );
	$order_bump_stats_clicks = (int) get_option( 'commercekit_obp_clicks' );
	$order_bump_stats_sales  = (int) get_option( 'commercekit_obp_sales' );
	$order_bump_stats_price  = (float) get_option( 'commercekit_obp_sales_revenue' );
	$order_bump_stats_rate1  = 0 !== $order_bump_stats_views ? number_format( ( $order_bump_stats_clicks / $order_bump_stats_views ) * 100, 0 ) : 0;
	$order_bump_stats_rate2  = 0 !== $order_bump_stats_clicks ? number_format( ( $order_bump_stats_sales / $order_bump_stats_clicks ) * 100, 0 ) : 0;
	?>
		<ul class="order-bump-statistics">
			<li>
				<div class="title"><?php esc_html_e( 'Impressions', 'commercegurus-commercekit' ); ?></div>
				<div class="text-large" id="obp-impressions"><?php echo esc_attr( number_format( $order_bump_stats_views, 0 ) ); ?></div>
			</li>
			<li>
				<div class="title"><?php esc_html_e( 'Revenue', 'commercegurus-commercekit' ); ?></div>
				<div class="text-large"><?php echo esc_attr( get_woocommerce_currency_symbol() ); ?><span id="obp-revenue"><?php echo esc_attr( number_format( $order_bump_stats_price, 2 ) ); ?></span></div>
			</li>
			<li>
				<div class="title"><?php esc_html_e( 'Additional Sales', 'commercegurus-commercekit' ); ?></div>
				<div class="text-large" id="obp-sales"><?php echo esc_attr( number_format( $order_bump_stats_sales, 0 ) ); ?></div>
			</li>
			<li>
				<div class="title" data-clicks="<?php echo esc_attr( $order_bump_stats_clicks ); ?>"><?php esc_html_e( 'Click Rate', 'commercegurus-commercekit' ); ?></div>
				<div class="text-small" id="obp-click-rate"><?php echo esc_attr( $order_bump_stats_rate1 ); ?>%</div>
				<div class="progress-bar"><span id="obp-click-rate-percent" style="width: <?php echo esc_attr( $order_bump_stats_rate1 ); ?>%;"></span></div>
			</li>
			<li>
				<div class="title"><?php esc_html_e( 'Conversion Rate', 'commercegurus-commercekit' ); ?></div>
				<div class="text-small" id="obp-covert-rate"><?php echo esc_attr( $order_bump_stats_rate2 ); ?>%</div>
				<div class="progress-bar"><span id="obp-covert-rate-percent" style="width: <?php echo esc_attr( $order_bump_stats_rate2 ); ?>%;"></span></div>
			</li>
		</ul>
	</div>
</div>

<div class="dashboard postbox content-box">
	<h2><span class="table-heading"><?php esc_html_e( 'CommerceKit Features', 'commercegurus-commercekit' ); ?></span></h2>
	<div class="inside">

		<div class="ckit-features-grid">

			<!-- Ajax Search -->
			<section <?php echo isset( $commercekit_options['ajax_search'] ) && 1 === (int) $commercekit_options['ajax_search'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
				<h3><a href="?page=commercekit&tab=ajax-search"><?php esc_html_e( 'Ajax Search', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=ajax-search" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<p><?php esc_html_e( 'Instant search suggestions helps customers save time and find products faster.', 'commercegurus-commercekit' ); ?></p>
				<div class="ckit-perf">
					<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
						<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
					</svg>
					<div>
					<strong><?php esc_html_e( '9Kb of HTML', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on all pages', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Product Attributes -->
			<section <?php echo isset( $commercekit_options['pdp_attributes_gallery'] ) && 1 === (int) $commercekit_options['pdp_attributes_gallery'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=pdp-attributes-gallery"><?php esc_html_e( 'Attributes Gallery', 'commercegurus-commercekit' ); ?> </a></h3>
					<a href="?page=commercekit&tab=pdp-attributes-gallery" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">

					<p><?php esc_html_e( 'Further improve your gallery with the ability to assign images on an attribute basis.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( 'Improves gallery usability', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product pages', 'commercegurus-commercekit' ); ?>
						</div>
					</div>

				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Attributes swatches -->
			<section <?php echo isset( $commercekit_options['attribute_swatches'] ) && 1 === (int) $commercekit_options['attribute_swatches'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=attribute-swatches"><?php esc_html_e( 'Attribute Swatches', 'commercegurus-commercekit' ); ?> </a></h3>
					<a href="?page=commercekit&tab=attribute-swatches" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">

					<p><?php esc_html_e( 'Replace standard variation dropdowns with color, image, and button swatches.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( 'Improved usability', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product and catalog pages', 'commercegurus-commercekit' ); ?>
						</div>
					</div>

				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Countdown Timers -->
			<section <?php echo isset( $commercekit_options['countdown_timer'] ) && 1 === (int) $commercekit_options['countdown_timer'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=countdown-timer"><?php esc_html_e( 'Countdowns', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=countdown-timer" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<p><?php esc_html_e( 'Allows you to run time-limited promotions to create urgency and drive more clicks.', 'commercegurus-commercekit' ); ?></p>

				<div class="ckit-perf">
					<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
						<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
					</svg>
					<div>
					<strong><?php esc_html_e( '7Kb of HTML', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product and checkout pages', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Free Shipping Notification -->
			<?php
				$enable_fsn_cart_page = isset( $commercekit_options['fsn_cart_page'] ) && 1 === (int) $commercekit_options['fsn_cart_page'] ? 1 : 0;
				$enable_fsn_mini_cart = isset( $commercekit_options['fsn_mini_cart'] ) && 1 === (int) $commercekit_options['fsn_mini_cart'] ? 1 : 0;
			?>
			<section <?php echo ( $enable_fsn_cart_page || $enable_fsn_mini_cart ) ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=free-shipping-notification"><?php esc_html_e( 'Free Shipping Notification', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=free-shipping-notification" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">
					<p><?php esc_html_e( 'Increase order revenue by showing your customers just how close they are to your free shipping threshold.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( 'Improves conversions', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on cart page and mini cart', 'commercegurus-commercekit' ); ?>
						</div>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Order bumps -->
			<section <?php echo ( isset( $commercekit_options['order_bump'] ) && 1 === (int) $commercekit_options['order_bump'] ) || ( isset( $commercekit_options['order_bump_mini'] ) && 1 === (int) $commercekit_options['order_bump_mini'] ) ? 'class="active"' : ''; ?>>


				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=order-bump"><?php esc_html_e( 'Order Bump', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=order-bump" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">

					<p><?php esc_html_e( 'Enables a customer to add an additional item to the cart, before they complete an order.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( '3Kb of HTML', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on the checkout', 'commercegurus-commercekit' ); ?>
						</div>
					</div>

				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Product Badges -->
			<section <?php echo isset( $commercekit_options['store_badge'] ) && 1 === (int) $commercekit_options['store_badge'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=badge"><?php esc_html_e( 'Product Badges', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=badge" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">
					<p><?php esc_html_e( 'Enhance key product features, and highlight promotions and products with limited-time offers.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( 'Improves conversions', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product and catalog pages', 'commercegurus-commercekit' ); ?>
						</div>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Product gallery -->
			<section <?php echo isset( $commercekit_options['pdp_gallery'] ) && 1 === (int) $commercekit_options['pdp_gallery'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=pdp-gallery"><?php esc_html_e( 'Product Gallery', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=pdp-gallery" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">

					<p><?php esc_html_e( 'An improved product gallery with multiple layout options and video support. Built for performance.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( '80%+ lighter than the core gallery', 'commercegurus-commercekit' ); ?></strong> <a href="https://www.commercegurus.com/woocommerce-product-gallery-speed/"><?php esc_html_e( 'Read more', 'commercegurus-commercekit' ); ?></a>
						</div>
					</div>

				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Size Guides -->
			<?php
				$enable_size_guide = isset( $commercekit_options['size_guide'] ) && 1 === (int) $commercekit_options['size_guide'] ? 1 : 0;
			?>
			<section <?php echo ( $enable_size_guide ) ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=size-guide"><?php esc_html_e( 'Size Guides', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=size-guide" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">
					<p><?php esc_html_e( 'If your products require sizing, this feature is crucial. It helps reduce costly returns, and improves the consumer experience.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( 'Reduces returns', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product pages', 'commercegurus-commercekit' ); ?>
						</div>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Sticky Add to Cart -->
			<?php
				$enable_sticky_atc_desk = isset( $commercekit_options['sticky_atc_desktop'] ) && 1 === (int) $commercekit_options['sticky_atc_desktop'] ? 1 : 0;
				$enable_sticky_atc_mobi = isset( $commercekit_options['sticky_atc_mobile'] ) && 1 === (int) $commercekit_options['sticky_atc_mobile'] ? 1 : 0;
				$enable_sticky_atc_tabs = isset( $commercekit_options['sticky_atc_tabs'] ) && 1 === (int) $commercekit_options['sticky_atc_tabs'] ? 1 : 0;
			?>
			<section <?php echo ( $enable_sticky_atc_desk || $enable_sticky_atc_mobi || $enable_sticky_atc_tabs ) ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=sticky-atc-bar"><?php esc_html_e( 'Sticky Add to Cart', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=sticky-atc-bar" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">
					<p><?php esc_html_e( 'Adds a conversion-friendly sticky add to cart bar on mobile and desktop. Can also expand the default WooCommerce tabs.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( 'Improves conversions', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product pages', 'commercegurus-commercekit' ); ?>
						</div>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>


			<!-- Stock Meter -->
			<section <?php echo isset( $commercekit_options['inventory_display'] ) && 1 === (int) $commercekit_options['inventory_display'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=inventory-bar"><?php esc_html_e( 'Stock Meter', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=inventory-bar" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">
					<p><?php esc_html_e( 'A visually effective way to alert customers when the stock is low on product pages.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( '2Kb of HTML', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product pages', 'commercegurus-commercekit' ); ?>
						</div>
					</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>


			<!-- Waitlist -->
			<section <?php echo isset( $commercekit_options['waitlist'] ) && 1 === (int) $commercekit_options['waitlist'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=waitlist"><?php esc_html_e( 'Waitlist', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=waitlist" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">

				<p><?php esc_html_e( 'Collect emails of interested buyers when your items are sold out. Automatically notify buyers when back in stock.', 'commercegurus-commercekit' ); ?></p>

				<div class="ckit-perf">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
						</svg>
						<div>
						<strong><?php esc_html_e( '3Kb of HTML', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on product pages', 'commercegurus-commercekit' ); ?>
						</div>
				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

			<!-- Wishlist -->
			<section <?php echo isset( $commercekit_options['wishlist'] ) && 1 === (int) $commercekit_options['wishlist'] ? 'class="active"' : ''; ?>>

				<div class="ckit-feature-heading">
					<h3><a href="?page=commercekit&tab=wishlist"><?php esc_html_e( 'Wishlist', 'commercegurus-commercekit' ); ?></a></h3>
					<a href="?page=commercekit&tab=wishlist" class="button-secondary"><?php esc_html_e( 'Configure', 'commercegurus-commercekit' ); ?></a>
				</div>

				<div class="ckit-feature-content">

					<p><?php esc_html_e( 'Shoppers can create personalized collections of products they want to buy.', 'commercegurus-commercekit' ); ?></p>

					<div class="ckit-perf">
							<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
								<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z" />
							</svg>
							<div>
							<strong><?php esc_html_e( '9Kb of HTML', 'commercegurus-commercekit' ); ?></strong> <?php esc_html_e( 'Loads on WooCommerce pages', 'commercegurus-commercekit' ); ?>
							</div>
					</div>

				</div>

				<div class="status">
					<div class="active">
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
							<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
						</svg>
						<?php esc_html_e( 'Active', 'commercegurus-commercekit' ); ?>
					</div>
					<div class="inactive">
						<?php esc_html_e( 'Inactive', 'commercegurus-commercekit' ); ?>
					</div>
				</div>

			</section>

		</div><!--/grid -->

		<input type="hidden" name="tab" value="dashboard" />
		<input type="hidden" name="action" value="commercekit_save_settings" />
	</div>
</div>
</div>

<div class="postbox" id="settings-note">
	<?php if ( ! $domain_connected ) { ?>
	<a href="https://www.commercegurus.com/product/shoptimizer/" target="_blank" style="text-decoration: none;">
		<p><img src="<?php echo esc_url( CKIT_URI ); ?>assets/images/shoptimizer_logo.png" /></p>
		<p><?php esc_html_e( 'Optimize your WooCommerce store for speed and conversions with Shoptimizer. Shoptimizer is a FAST WooCommerce theme that comes with a ton of features all designed to help you convert more users to customers.', 'commercegurus-commercekit' ); ?></p>
	</a>
	<?php } else { ?>
	<h4><?php esc_html_e( 'Documentation', 'commercegurus-commercekit' ); ?></h4>
	<p><?php esc_html_e( 'Visit the documentation area for a more detailed overview on each of these features. If you still have questions, you can send us a private ticket by clicking the Support link.', 'commercegurus-commercekit' ); ?></p>
	<p><strong><a href=" https://www.commercegurus.com/docs/shoptimizer-theme/commercekit-setup/" target="_blank"><?php esc_html_e( 'View Documentation', 'commercegurus-commercekit' ); ?></a></strong></p>
	<?php } ?>

	<h4><?php esc_html_e( 'Connection status', 'commercegurus-commercekit' ); ?></h4>
	<?php if ( $domain_connected ) { ?>
	<div class="ckit-connection-status connected">
		<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
			<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
		</svg>
		<div>Connected</div>
	</div>

		<div><p><?php esc_html_e( 'Your website is connected! One click updates for Shoptimizer will appear in Appearance &rarr; Themes.', 'commercegurus-commercekit' ); ?></p></div>

	<?php } else { ?>
		<div class="ckit-connection-status not-connected">
		<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
			<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" />
		</svg>
		<div>Not connected</div>
	</div>
		<div><p><?php esc_html_e( 'You have not enabled one-click updates for Shoptimizer and CommerceKit. To do so, please', 'commercegurus-commercekit' ); ?> <a href="https://www.commercegurus.com/my-account/" target="_blank"><?php esc_html_e( 'connect your website', 'commercegurus-commercekit' ); ?></a> <?php esc_html_e( 'to your Shoptimizer subscription.', 'commercegurus-commercekit' ); ?> <?php esc_html_e( 'View the', 'commercegurus-commercekit' ); ?> <a href="https://www.commercegurus.com/docs/shoptimizer-theme/updating-shoptimizer/" target="_blank"><?php esc_html_e( 'update guide', 'commercegurus-commercekit' ); ?></a> <?php esc_html_e( 'to find out more.', 'commercegurus-commercekit' ); ?></p></div>
	<?php } ?>
</div>

SPERA Medicare – Affy Pharma Pvt Ltd

SPEROXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

SPEROXIME-CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

SPERACLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

SPERIXIME-CV

POWDER FOR ORAL SUSPENSION

30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid

SPERIXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

SPAZIT

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

SPENOMOL-DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

SPENOMOLM

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

SPEROF

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

SPENOMOL-CP

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

PROBILIN

ORAL SUSPENSION
200ml

Composition

Cyproheptadine HCI 2mg + Tricholine citrate 0.275mg/5ml

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

SPERAZOLE-DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

SPERAB-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

SPERAZOLE 40

INJECTION

40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

COOLRICH

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

SPERAZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

SPUR-ON

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

SP-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

ERABONA

ORAL SUSPENSION
200ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

IRO-SPUR

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

CALANTE-Z

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

SPERA SPAS

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

SPERAFEN

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

PARADOL FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

DIRABEN GEL

GEL
30g

Composition

Diclofenac Diethylamine 1.16% w/w + Oleum Linseed Oil 3 % w/w + Menthol 5% w/w +Methyl Salicylate 10% w/w

Indications & Uses

Sprains & Strains, Lower Back Pain, Joint Pain, Knee Pain

ULTISOFT

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

PERAZOB

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

SPARKETO

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

SPARKETO-Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

SPARKETO

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

SPUKA

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

VITALAND

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCOZIDE PLUS

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

DENUM

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

NATOW

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

LYCOZIDE

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

DENUM 4G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Omega 3 Fatty Acid + Ginseng Extract + Ginkgo Bilaba Extract + Grape Seed Extract + Ginseng Extract + Multimineral + Multivitamin + Antioxidants + Trace Elements

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

DENUM G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

SPERIXIME – 200 LB

TABLETS (Alu-Alu)

20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

SPERIXIME-CV 325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

SPERACLAV-625

TABLETS (Alu-Alu)
10X1X6

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

SPEROF-O

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

VEXACIN

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

SPERIXIME-O

TABLETS (Alu-Alu)
10X1X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

SPEROXIME-200

TABLETS (Alu-Alu)
10X1X6

Composition

Cefpodoxime Proxetil 200mg

Indications & Uses

Pharyngitis, CAP, Tonsilitis

SPERACLAV-1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

SPERBACT-SB 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

SPERBACT-TZ 1.125

INJECTIONS
1.125gm

Composition

Ceftriaxone 1000mg + Tazobactam 500 mg + WFI

Indications & Uses

Bone & Joint Infections, Intra-abdominal Infections, Bacterial Meningitis, Pre-operative Surgical Prophylaxis

SPERLIV

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

SPIPER-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

SPERBACT-C

INJECTIONS
1.5gm

Composition

Cefaperazone 1000mg + Sulbactam 500mg +WFI

Indications & Uses

Peritonitis, Bacterial Simusitis, Cholecystitis, Meningitis

BROXTAR

SYRUP
100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BROXTAR-BR

SYRUP

100ml

Composition

Terbutaline Sulphate 1.25mg + Bromhexine HCI 4mg + Guaiphenesin 50mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

THROMET

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

IRIDIE-M

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

IRIDIE

TABLETS (Alu-Alu)
20X11

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket