505 lines
27 KiB
PHP
505 lines
27 KiB
PHP
<?php
|
|
/**
|
|
* A Welcome page for store admin
|
|
*
|
|
* @author StoreApps
|
|
* @since 3.3.0
|
|
* @version 1.4.0
|
|
*
|
|
* @package woocommerce-smart-coupons/includes/
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
if ( ! class_exists( 'WC_SC_Admin_Welcome' ) ) {
|
|
|
|
/**
|
|
* WC_SC_Admin_Welcome class
|
|
*/
|
|
class WC_SC_Admin_Welcome {
|
|
|
|
/**
|
|
* Variable to hold instance of WC_SC_Admin_Welcome
|
|
*
|
|
* @var $instance
|
|
*/
|
|
private static $instance = null;
|
|
|
|
/**
|
|
* Hook in tabs.
|
|
*/
|
|
private function __construct() {
|
|
add_action( 'admin_menu', array( $this, 'admin_menus' ) );
|
|
add_action( 'admin_head', array( $this, 'admin_head' ) );
|
|
add_action( 'admin_init', array( $this, 'sc_welcome' ) );
|
|
}
|
|
|
|
/**
|
|
* Get single instance of WC_SC_Admin_Welcome
|
|
*
|
|
* @return WC_SC_Admin_Welcome Singleton object of WC_SC_Admin_Welcome
|
|
*/
|
|
public static function get_instance() {
|
|
// Check if instance is already exists.
|
|
if ( is_null( self::$instance ) ) {
|
|
self::$instance = new self();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* Handle call to functions which is not available in this class
|
|
*
|
|
* @param string $function_name The function name.
|
|
* @param array $arguments Array of arguments passed while calling $function_name.
|
|
* @return result of function call
|
|
*/
|
|
public function __call( $function_name, $arguments = array() ) {
|
|
|
|
global $woocommerce_smart_coupon;
|
|
|
|
if ( ! is_callable( array( $woocommerce_smart_coupon, $function_name ) ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! empty( $arguments ) ) {
|
|
return call_user_func_array( array( $woocommerce_smart_coupon, $function_name ), $arguments );
|
|
} else {
|
|
return call_user_func( array( $woocommerce_smart_coupon, $function_name ) );
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Add admin menus/screens.
|
|
*/
|
|
public function admin_menus() {
|
|
|
|
$get_page = ( ! empty( $_GET['page'] ) ) ? wc_clean( wp_unslash( $_GET['page'] ) ) : ''; // phpcs:ignore
|
|
|
|
if ( empty( $get_page ) ) {
|
|
return;
|
|
}
|
|
|
|
$welcome_page_name = __( 'About Smart Coupons', 'woocommerce-smart-coupons' );
|
|
$welcome_page_title = __( 'Welcome to Smart Coupons', 'woocommerce-smart-coupons' );
|
|
|
|
$parent_slug = ( $this->is_wc_gte_44() ) ? 'woocommerce-marketing' : 'woocommerce';
|
|
|
|
switch ( $get_page ) {
|
|
case 'sc-about':
|
|
add_submenu_page( $parent_slug, $welcome_page_title, $welcome_page_name, 'manage_options', 'sc-about', array( $this, 'about_screen' ) );
|
|
break;
|
|
case 'sc-faqs':
|
|
add_submenu_page( $parent_slug, $welcome_page_title, $welcome_page_name, 'manage_options', 'sc-faqs', array( $this, 'faqs_screen' ) );
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add styles just for this page, and remove dashboard page links.
|
|
*/
|
|
public function admin_head() {
|
|
$parent_slug = ( $this->is_wc_gte_44() ) ? 'woocommerce-marketing' : 'woocommerce';
|
|
|
|
remove_submenu_page( $parent_slug, 'sc-about' );
|
|
remove_submenu_page( $parent_slug, 'sc-faqs' );
|
|
|
|
$get_page = ( ! empty( $_GET['page'] ) ) ? wc_clean( wp_unslash( $_GET['page'] ) ) : ''; // phpcs:ignore
|
|
|
|
if ( ! empty( $get_page ) && ( 'sc-faqs' === $get_page || 'sc-about' === $get_page ) ) {
|
|
?>
|
|
<style type="text/css">
|
|
/*<![CDATA[*/
|
|
.about-wrap h3 {
|
|
margin-top: 1em;
|
|
margin-right: 0em;
|
|
margin-bottom: 0.1em;
|
|
}
|
|
.about-wrap .button-primary {
|
|
margin-top: 18px;
|
|
}
|
|
.about-wrap .button-hero {
|
|
color: #FFF!important;
|
|
border-color: #03a025!important;
|
|
background: #03a025 !important;
|
|
box-shadow: 0 1px 0 #03a025;
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
}
|
|
.about-wrap .button-hero:hover {
|
|
color: #FFF!important;
|
|
background: #0AAB2E!important;
|
|
border-color: #0AAB2E!important;
|
|
}
|
|
.about-wrap p {
|
|
margin-top: 0.6em;
|
|
margin-bottom: 0.8em;
|
|
}
|
|
.about-wrap .feature-section {
|
|
padding-bottom: 5px;
|
|
}
|
|
.about-wrap .aligncenter {
|
|
text-align: center;
|
|
}
|
|
.about-wrap,
|
|
.about-wrap .has-2-columns,
|
|
.about-wrap .has-3-columns {
|
|
max-width: unset !important;
|
|
}
|
|
ul.sc-top-features {
|
|
list-style-type: disc !important;
|
|
padding-left: 1.5em !important;
|
|
}
|
|
/*]]>*/
|
|
</style>
|
|
<?php
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Intro text/links shown on all about pages.
|
|
*/
|
|
private function intro() {
|
|
|
|
if ( is_callable( 'WC_Smart_Coupons::get_smart_coupons_plugin_data' ) ) {
|
|
$plugin_data = WC_Smart_Coupons::get_smart_coupons_plugin_data();
|
|
$version = $plugin_data['Version'];
|
|
} else {
|
|
$version = '';
|
|
}
|
|
|
|
?>
|
|
<h1><?php echo esc_html__( 'Thank you for installing WooCommerce Smart Coupons', 'woocommerce-smart-coupons' ) . ' ' . esc_html( $version ) . '!'; ?></h1>
|
|
|
|
<p class="about-text"><?php echo esc_html__( 'Glad to have you onboard. We hope WooCommerce Smart Coupons adds to your desired success 🏆', 'woocommerce-smart-coupons' ); ?></p>
|
|
|
|
<div class="has-2-columns feature-section col two-col" style="margin-bottom: 30px !important;">
|
|
<div class="is-vertically-aligned-center column col">
|
|
<a href="<?php echo esc_url( admin_url( 'edit.php?post_type=shop_coupon' ) ); ?>" class="button button-hero"><?php echo esc_html__( 'Go To Coupons', 'woocommerce-smart-coupons' ); ?></a>
|
|
</div>
|
|
|
|
<div class="is-vertically-aligned-center column col last-feature">
|
|
<p class="alignright">
|
|
<?php
|
|
$settings_tab_url = add_query_arg(
|
|
array(
|
|
'page' => 'wc-settings',
|
|
'tab' => 'wc-smart-coupons',
|
|
),
|
|
admin_url( 'admin.php' )
|
|
);
|
|
?>
|
|
<a href="<?php echo esc_url( $settings_tab_url ); ?>" class="button button-primary" target="_blank"><?php echo esc_html__( 'Settings', 'woocommerce-smart-coupons' ); ?></a>
|
|
<a href="<?php echo esc_url( apply_filters( 'smart_coupons_docs_url', 'https://woocommerce.com/document/smart-coupons/', 'woocommerce-smart-coupons' ) ); ?>" class="docs button button-primary" target="_blank"><?php echo esc_html__( 'Docs', 'woocommerce-smart-coupons' ); ?></a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 class="nav-tab-wrapper">
|
|
<a class="nav-tab
|
|
<?php
|
|
|
|
$get_page = ( ! empty( $_GET['page'] ) ) ? wc_clean( wp_unslash( $_GET['page'] ) ) : ''; // phpcs:ignore
|
|
|
|
if ( 'sc-about' === $get_page ) {
|
|
echo 'nav-tab-active';
|
|
}
|
|
?>
|
|
" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sc-about' ), 'admin.php' ) ) ); ?>">
|
|
<?php echo esc_html__( 'Know Smart Coupons', 'woocommerce-smart-coupons' ); ?>
|
|
</a>
|
|
<a class="nav-tab
|
|
<?php
|
|
if ( 'sc-faqs' === $get_page ) {
|
|
echo 'nav-tab-active';
|
|
}
|
|
?>
|
|
" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sc-faqs' ), 'admin.php' ) ) ); ?>">
|
|
<?php echo esc_html__( "FAQ's", 'woocommerce-smart-coupons' ); ?>
|
|
</a>
|
|
</h2>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Output the about screen.
|
|
*/
|
|
public function about_screen() {
|
|
if ( ! wp_script_is( 'jquery' ) ) {
|
|
wp_enqueue_script( 'jquery' );
|
|
}
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
jQuery(function(){
|
|
jQuery('#toplevel_page_woocommerce').find('a[href$=shop_coupon]').addClass('current');
|
|
jQuery('#toplevel_page_woocommerce').find('a[href$=shop_coupon]').parent().addClass('current');
|
|
});
|
|
</script>
|
|
|
|
<div class="wrap about-wrap">
|
|
|
|
<?php $this->intro(); ?>
|
|
|
|
<div>
|
|
<div class="has-3-columns feature-section col three-col">
|
|
<div class="column col">
|
|
<h4><?php echo esc_html__( 'What is Smart Coupons?', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php echo esc_html__( 'Smart Coupons is a powerful extension, built on top of WooCommerce coupons. It adds a new discount type - Store Credit - and advanced functionality to the default coupons.', 'woocommerce-smart-coupons' ); ?>
|
|
<?php echo esc_html__( 'Smart Coupons enable coupons to become an automatic/interactive system.', 'woocommerce-smart-coupons' ); ?>
|
|
</p>
|
|
</div>
|
|
<div class="column col">
|
|
<h4><?php echo esc_html__( 'Top Smart Coupons features', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<ul class="sc-top-features">
|
|
<li><?php echo esc_html__( 'Create and gift Store Credit / Gift Cards', 'woocommerce-smart-coupons' ); ?></li>
|
|
<li><?php echo esc_html__( 'Bulk generate coupons', 'woocommerce-smart-coupons' ); ?></li>
|
|
<li><?php echo esc_html__( 'Apply multiple coupons via URL', 'woocommerce-smart-coupons' ); ?></li>
|
|
<li><?php echo esc_html__( 'Advanced restrictions - payment, shipping, location, user roles, product attributes', 'woocommerce-smart-coupons' ); ?></li>
|
|
</ul>
|
|
<p>
|
|
<?php echo esc_html__( 'and a lot more…', 'woocommerce-smart-coupons' ); ?>
|
|
</p>
|
|
</div>
|
|
<div class="column col last-feature">
|
|
<h4><?php echo esc_html__( 'Automatic payment for subscription renewals', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php
|
|
/* translators: WooCommerce Subscriptions product link */
|
|
echo sprintf( esc_html__( 'If your store is using %s and your customer has purchased a subscription using a Store Credit. If that store credit has balance left in it, store will automatically use it for renewing that subscription.', 'woocommerce-smart-coupons' ), '<a href="https://woocommerce.com/products/woocommerce-subscriptions/?aff=5475">' . esc_html__( 'WooCommerce Subscriptions', 'woocommerce-smart-coupons' ) . '</a>' );
|
|
?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<center><h3><?php echo esc_html__( 'How to use Smart Coupons the best way', 'woocommerce-smart-coupons' ); ?></h3></center>
|
|
<div class="has-3-columns feature-section col three-col">
|
|
<div class="column col">
|
|
<h4><?php echo esc_html__( 'Sell or issue store credit / gift cards', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php
|
|
/* translators: 1: Affiliate For WooCommerce 2: Smart Manager 3: Smart Offers */
|
|
echo sprintf( esc_html__( 'Let customers purchase gift cards from you or you issue store credit that your users can redeem on the current or next purchase. See how: %1$s or %2$s', 'woocommerce-smart-coupons' ), ' <a href="https://woocommerce.com/document/smart-coupons/how-to-sell-gift-card-of-any-amount/" target="_blank">' . esc_html__( 'any amount', 'woocommerce-smart-coupons' ) . '</a>', '<a href="https://woocommerce.com/document/smart-coupons/how-to-sell-gift-card-of-variable-but-a-fixed-amount/" target="_blank">' . esc_html__( 'variable but fixed amount', 'woocommerce-smart-coupons' ) . '</a>.' );
|
|
?>
|
|
</p>
|
|
</div>
|
|
<div class="column col">
|
|
<h4><?php echo esc_html__( 'Bulk create unique coupons & email them', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php echo esc_html__( 'Import and export unique coupons in bulk via CSV. Share coupon codes to deal sites or email them to your customers.', 'woocommerce-smart-coupons' ) . ' <a href="https://woocommerce.com/document/smart-coupons/how-to-bulk-generate-coupons/" target="_blank">' . esc_html__( 'See how', 'woocommerce-smart-coupons' ) . '</a>.'; ?>
|
|
</p>
|
|
</div>
|
|
<div class="column col last-feature">
|
|
<h4><?php echo esc_html__( 'Gift a product via coupon', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php echo esc_html__( 'Attach a gift of any value (free or paid product) to a particular coupon. Here, instead of a discount, a product is redeemed for the coupon code.', 'woocommerce-smart-coupons' ) . ' <a href="https://woocommerce.com/document/smart-coupons/how-to-gift-a-product-via-coupon/" target="_blank">' . esc_html__( 'See how', 'woocommerce-smart-coupons' ) . '</a>.'; ?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="has-3-columns feature-section col three-col">
|
|
<div class="column col">
|
|
<h4><?php echo esc_html__( 'Give discounts to customers for next purchase', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php echo esc_html__( 'You can give a coupon to your customer after every purchase, which can encourage them to purchase again from you.', 'woocommerce-smart-coupons' ) . ' <a href="https://woocommerce.com/document/smart-coupons/how-to-give-coupons-with-products-for-next-order/" target="_blank">' . esc_html__( 'See how', 'woocommerce-smart-coupons' ) . '</a>.'; ?>
|
|
</p>
|
|
</div>
|
|
<div class="column col">
|
|
<h4><?php echo esc_html__( 'Set a maximum discount limit', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php echo esc_html__( 'Give bigger discounts without hurting your profits. Offer a percentage off coupon upto a particular value. Example - Flat 50% off upto $100.', 'woocommerce-smart-coupons' ); ?>
|
|
</p>
|
|
</div>
|
|
<div class="column col last-feature">
|
|
<h4><?php echo esc_html__( 'Make customer\'s coupon usage, easy & simple', 'woocommerce-smart-coupons' ); ?></h4>
|
|
<p>
|
|
<?php echo esc_html__( 'Show only valid coupons to your customer (if logged in) on cart, checkout & My Account page. Coupons can be applied with single click. So, no need to remember the coupon code or copy-pasting.', 'woocommerce-smart-coupons' ); ?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Output the FAQ's screen.
|
|
*/
|
|
public function faqs_screen() {
|
|
if ( ! wp_script_is( 'jquery' ) ) {
|
|
wp_enqueue_script( 'jquery' );
|
|
}
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
jQuery(function(){
|
|
jQuery('#toplevel_page_woocommerce').find('a[href$=shop_coupon]').addClass('current');
|
|
jQuery('#toplevel_page_woocommerce').find('a[href$=shop_coupon]').parent().addClass('current');
|
|
});
|
|
</script>
|
|
|
|
<div class="wrap about-wrap">
|
|
|
|
<?php $this->intro(); ?>
|
|
|
|
<h3 class="aligncenter"><?php echo esc_html__( 'FAQ / Common Problems', 'woocommerce-smart-coupons' ); ?></h3>
|
|
|
|
<?php
|
|
$faqs = array(
|
|
array(
|
|
'que' => esc_html__( 'When trying to add coupon/Smart Coupon, I get "Invalid post type" message.', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Make sure use of coupon is enabled in your store. You can find this setting', 'woocommerce-smart-coupons' ) . ' <a href="' . add_query_arg(
|
|
array(
|
|
'page' => 'wc-settings',
|
|
'tab' => 'general',
|
|
),
|
|
admin_url( 'admin.php' )
|
|
) . '" target="_blank">' . __( 'here', 'woocommerce-smart-coupons' ) . '</a>.',
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Smart Coupon\'s fields are broken?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Make sure you are using the ', 'woocommerce-smart-coupons' ) . '<a target="_blank" href="http://dzv365zjfbd8v.cloudfront.net/changelogs/woocommerce-smart-coupons/changelog.txt">' . __( 'latest version of Smart Coupons', 'woocommerce-smart-coupons' ) . '</a>' . esc_html__( '. If still the issue persist, temporarily de-activate all plugins except WooCommerce & Smart Coupons. Re-check the issue, if the issue still persists, contact us (from the link at the end of this page). If the issue goes away, re-activate other plugins one-by-one & re-checking the fields, to find out which plugin is conflicting.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'How to translate texts from Smart Coupons?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Simplest method is by installing', 'woocommerce-smart-coupons' ) . ' <a href="https://wordpress.org/plugins/loco-translate/" target="_blank">' . esc_html__( 'Loco Translate', 'woocommerce-smart-coupons' ) . '</a> ' . esc_html__( 'plugin and then following steps listed ', 'woocommerce-smart-coupons' ) . ' <a href="https://woocommerce.com/document/smart-coupons/how-to-translate-smart-coupons/" target="_blank">' . __( 'here', 'woocommerce-smart-coupons' ) . '</a>.',
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'How to change texts of the emails sent from Smart Coupons?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'You can do this by overriding the email template.', 'woocommerce-smart-coupons' ) . ' <a href="https://woocommerce.com/document/smart-coupons/how-to-change-replace-and-override-email-template/" target="_blank">' . esc_html__( 'How to override email template', 'woocommerce-smart-coupons' ) . '</a>.',
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Can coupon code have any spaces in the name? / My Store Credit/Gift Certificate is not working (not generating new coupon code).', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'No. Coupon code should not have any spaces in the name, Eg, Coupon code should be “gift-certificate” & not “gift certificate”.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'What\'s the URL to a coupon, so it\'s automatically inserted when visiting?', 'woocommerce-smart-coupons' ),
|
|
/* translators: Documentation link for 'How to Apply Single or Multiple Coupons on Click of a Link' */
|
|
'ans' => esc_html__( 'URL of coupon should be like this:', 'woocommerce-smart-coupons' ) . ' <code>https://www.mysite.com/?coupon-code=discount5&sc-page=shop</code> ' . esc_html__( '. Replace www.mysite.com with your own site URL and replace discount5 with the your coupon code.', 'woocommerce-smart-coupons' ) . ' ' . sprintf( esc_html__( 'For more details you can refer to this article: %s', 'woocommerce-smart-coupons' ), '<a href="https://woocommerce.com/document/smart-coupons/how-to-apply-single-or-multiple-coupons-on-click-of-a-link/" target="_blank">' . esc_html__( 'How to Apply Single or Multiple Coupons on Click of a Link', 'woocommerce-smart-coupons' ) . '</a>' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Do not want to tie store credit to be used by only one customer? / Can a customer send a gift certificate to themselves to pass on to someone else?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Edit the main coupon which is entered in "Coupons" field of the product edit page, then go to "Usage Restrictions" > "Disable Email Restriction" and disable this setting and save the coupon.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Getting \'Page Not Found Error\' when accessing Coupons tab from My Account Page?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Go to WordPress -> Settings -> Permalinks and click on Save Settings once.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Is there any reference file for creating an import file for coupons?', 'woocommerce-smart-coupons' ),
|
|
/* translators: 1. File name 2. File download link */
|
|
'ans' => sprintf( esc_html__( 'There is one file which is located inside the plugin. You can download the %1$s file from %2$s.', 'woocommerce-smart-coupons' ), '<code>sample.csv</code>', '<a href="' . esc_url( plugins_url( dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/sample.csv' ) ) . '">' . esc_html__( 'here', 'woocommerce-smart-coupons' ) . '</a>' ) . ' ' . esc_html__( 'If you want to import coupon through file, the file should be like', 'woocommerce-smart-coupons' ) . ' <code>sample.csv</code>',
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Available coupons are not visible on Cart, Checkout & My Account page?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Smart Coupons uses hooks of Cart, Checkout & My Account page to display available coupons. If your theme is not using those hooks in cart, checkout & my-account template, coupons will not be displayed.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'How can I resend gift card coupon bought by customers?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'You can resend them from order admin edit page.', 'woocommerce-smart-coupons' ) . ' <a href="https://woocommerce.com/document/smart-coupons/how-to-resend-coupons-generated-from-an-order-to-the-buyer/" target="_blank">' . __( 'See how', 'woocommerce-smart-coupons' ) . '</a>.',
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Uncheck "Auto-generate" option in Store Credit is not saving? Is it always checked?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Store Credit\'s default behavior is auto-generate because, when using a store credit, it\'s balance keeps reducing. Therefore it should be uniquely created for every user automatically.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Smart Coupons is not sending emails.', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Smart Coupons sends email only after order completion. So make sure that order complete email is enabled and sending. If enabled, then make sure all settings of coupons, products are in place. Also check by switching your theme.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( '"Store Credit Receiver detail" form not appearing on checkout page?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'This form is displayed using a hook which is available in My Account template. Make sure your theme\'s my-account template contains all hooks required for that template. Update your theme if it is not updated.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Does Smart Coupons allow printing of coupon as Gift Card?', 'woocommerce-smart-coupons' ),
|
|
/* translators: Documentation link for 'How to Print Coupons' */
|
|
'ans' => sprintf( esc_html__( 'Yes, Smart Coupons does provide a feature for printing coupons. For more details, check this article: %s', 'woocommerce-smart-coupons' ), '<a href="https://woocommerce.com/document/smart-coupons/how-to-print-coupons/" target="_blank">' . esc_html__( 'How to Print Coupons', 'woocommerce-smart-coupons' ) . '</a>' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Is it possible to have a coupon for each variation of the variable product?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'From version 4.11.0, you can add/link coupons to product variations as well. This feature is not available in a version lower than 4.11.0.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Is Smart Coupons compatible with WooCommerce Subscriptions?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Yes, Smart Coupons does work with WooCommerce Subscriptions.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Which features of Smart Coupons work with Subscriptions?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Give away a discount or credit on signing up a subscription, give away recurring discount or credits, apply credit during sign up, automatic payment for renewals from credit (Note: When using PayPal Standard Gateway, store credit can be applied only during sign up. Automatic payment for renewals by credit will not work for PayPal Standard Gateway).', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'How does automatic payment by store credit work with Subscriptions?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Customers can apply store credit on a subscription during purchase of subscription. If the same store credit has sufficient balance, it\'ll keep applying it to renewals till the remainder in store credit is higher than renewal price. Customers will be able to apply store credit only during signup. They will not get an option to apply store credit in renewals. But if the store credit will not have sufficient balance to pay for the renewals, then the order will go into pending mode. Now when the customer will go to pay for this renewal order, they\'ll get an option to apply store credit again. To activate the subscription again, the customer will have to pay for the renewals. When the customer is paying for the renewals from their account, then in that process they can use the same store credit which didn\'t have the sufficient balance, again & pay for the remaining amount.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Is it possible to partially pay for a subscription with store credit and the remainder by another method?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'No, this is possible only in those cases where subscription amount is more than store credit\'s balance. If store credit\'s balance is more than subscription\'s total then your bank account or credit card will not be charged.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'Is Smart Coupons WPML compatible?', 'woocommerce-smart-coupons' ),
|
|
'ans' => esc_html__( 'Not yet, but this is being worked on. You will find this in later versions.', 'woocommerce-smart-coupons' ),
|
|
),
|
|
array(
|
|
'que' => esc_html__( 'I\'m using WPML & WPML provides support for multi-currency, but Smart Coupons only changes currency symbol & the price value remains same. Can Smart Coupons change the currency symbol and the price value associated with it?', 'woocommerce-smart-coupons' ),
|
|
/* translators: Link for the plugin 'Aelia Currency Switcher for WooCommerce' */
|
|
'ans' => sprintf( esc_html__( 'Currently, Smart Coupons is compatible with %s. But it is not compatible with any other multi-currency plugin or with WPML.', 'woocommerce-smart-coupons' ), '<a href="https://aelia.co/shop/currency-switcher-woocommerce/" target="_blank">' . esc_html__( 'Aelia Currency Switcher for WooCommerce', 'woocommerce-smart-coupons' ) . '</a>' ),
|
|
),
|
|
);
|
|
|
|
$faqs = array_chunk( $faqs, 2 );
|
|
$right_faq_numbering = 1;
|
|
$left_faq_numbering = 0;
|
|
echo '<div>';
|
|
foreach ( $faqs as $fqs ) {
|
|
echo '<div class="has-2-columns two-col">';
|
|
foreach ( $fqs as $index => $faq ) {
|
|
echo '<div' . ( ( 1 === absint( $index ) ) ? ' class="column col last-feature"' : ' class="column col"' ) . '>';
|
|
echo '<h4>' . ( ( 1 === absint( $index ) ) ? $right_faq_numbering : ( $left_faq_numbering + 1 ) ) . '. ' . $faq['que'] . '</h4>'; // phpcs:ignore
|
|
echo '<p>' . $faq['ans'] . '</p>'; // phpcs:ignore
|
|
echo '</div>';
|
|
$right_faq_numbering++;
|
|
$left_faq_numbering++;
|
|
}
|
|
echo '</div>';
|
|
}
|
|
echo '</div>';
|
|
?>
|
|
|
|
<div class="aligncenter">
|
|
<h3>
|
|
<?php
|
|
/* translators: WooCommerce My Account support link */
|
|
echo sprintf( __( 'If you are facing any issues, please %s from your WooCommerce account.', 'woocommerce-smart-coupons' ), '<a target="_blank" href="https://woocommerce.com/my-account/create-a-ticket/">' . esc_html__( 'submit a ticket', 'woocommerce-smart-coupons' ) . '</a>' ); // phpcs:ignore
|
|
?>
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Sends user to the welcome page on first activation.
|
|
*/
|
|
public function sc_welcome() {
|
|
|
|
if ( ! get_transient( '_smart_coupons_activation_redirect' ) ) {
|
|
return;
|
|
}
|
|
|
|
// Delete the redirect transient.
|
|
delete_transient( '_smart_coupons_activation_redirect' );
|
|
|
|
wp_safe_redirect( admin_url( 'admin.php?page=sc-about' ) );
|
|
exit;
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
WC_SC_Admin_Welcome::get_instance();
|