98 lines
3.9 KiB
PHP
98 lines
3.9 KiB
PHP
<?php
|
||
/**
|
||
* LiteSpeed Cache – WooCommerce settings template.
|
||
*
|
||
* Renders the WooCommerce integration settings within the LiteSpeed Cache admin.
|
||
*
|
||
* @package LiteSpeed\Thirdparty
|
||
*/
|
||
|
||
namespace LiteSpeed\Thirdparty;
|
||
|
||
defined( 'WPINC' ) || exit;
|
||
|
||
use LiteSpeed\Doc;
|
||
?>
|
||
<div data-litespeed-layout="woocommerce">
|
||
|
||
<h3 class="litespeed-title-short">
|
||
<?php esc_html_e( 'WooCommerce Settings', 'litespeed-cache' ); ?>
|
||
<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/cache/#woocommerce-tab' ); ?>
|
||
</h3>
|
||
|
||
<div class="litespeed-callout notice notice-warning inline">
|
||
<h4><?php esc_html_e( 'NOTICE:', 'litespeed-cache' ); ?></h4>
|
||
<p><?php esc_html_e( 'After verifying that the cache works in general, please test the cart.', 'litespeed-cache' ); ?></p>
|
||
<p>
|
||
<?php
|
||
printf(
|
||
/* translators: %s: link attributes */
|
||
esc_html__( 'To test the cart, visit the %sFAQ%s.', 'litespeed-cache' ),
|
||
'<a href="https://docs.litespeedtech.com/lscache/lscwp/installation/#non-cacheable-pages" target="_blank">',
|
||
'</a>'
|
||
);
|
||
?>
|
||
</p>
|
||
<p><?php esc_html_e( 'By default, the My Account, Checkout, and Cart pages are automatically excluded from caching. Misconfiguration of page associations in WooCommerce settings may cause some pages to be erroneously excluded.', 'litespeed-cache' ); ?></p>
|
||
</div>
|
||
|
||
<table class="wp-list-table striped litespeed-table">
|
||
<tbody>
|
||
<tr>
|
||
<th>
|
||
<?php $setting_id = self::O_UPDATE_INTERVAL; ?>
|
||
<?php esc_html_e( 'Product Update Interval', 'litespeed-cache' ); ?>
|
||
</th>
|
||
<td>
|
||
<?php
|
||
$options = [
|
||
self::O_PQS_CS => esc_html__( 'Purge product on changes to the quantity or stock status.', 'litespeed-cache' ) . ' ' . esc_html__( 'Purge categories only when stock status changes.', 'litespeed-cache' ),
|
||
self::O_PS_CS => esc_html__( 'Purge product and categories only when the stock status changes.', 'litespeed-cache' ),
|
||
self::O_PS_CN => esc_html__( 'Purge product only when the stock status changes.', 'litespeed-cache' ) . ' ' . esc_html__( 'Do not purge categories on changes to the quantity or stock status.', 'litespeed-cache' ),
|
||
self::O_PQS_CQS => esc_html__( 'Always purge both product and categories on changes to the quantity or stock status.', 'litespeed-cache' ),
|
||
];
|
||
$conf = (int) apply_filters( 'litespeed_conf', $setting_id );
|
||
do_action( 'litespeed_setting_enroll', $setting_id );
|
||
foreach ( $options as $k => $v ) :
|
||
$input_id = 'conf_' . $setting_id . '_' . $k;
|
||
?>
|
||
<div class="litespeed-radio-row">
|
||
<input
|
||
type="radio"
|
||
autocomplete="off"
|
||
name="<?php echo esc_attr( (string) $setting_id ); ?>"
|
||
id="<?php echo esc_attr( $input_id ); ?>"
|
||
value="<?php echo esc_attr( (string) $k ); ?>"
|
||
<?php echo checked( $conf, (int) $k, false ); ?>
|
||
/>
|
||
<label for="<?php echo esc_attr( $input_id ); ?>"><?php echo esc_html( $v ); ?></label>
|
||
</div>
|
||
<?php endforeach; ?>
|
||
<div class="litespeed-desc">
|
||
<?php esc_html_e( 'Determines how changes in product quantity and product stock status affect product pages and their associated category pages.', 'litespeed-cache' ); ?>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th>
|
||
<?php $setting_id = self::O_CART_VARY; ?>
|
||
<?php esc_html_e( 'Vary for Mini Cart', 'litespeed-cache' ); ?>
|
||
</th>
|
||
<td>
|
||
<?php
|
||
$conf = (int) apply_filters( 'litespeed_conf', $setting_id );
|
||
$this->cls( 'Admin_Display' )->build_switch( $setting_id );
|
||
?>
|
||
<div class="litespeed-desc">
|
||
<?php esc_html_e( 'Generate a separate vary cache copy for the mini cart when the cart is not empty.', 'litespeed-cache' ); ?>
|
||
<?php esc_html_e( 'If your theme does not use JS to update the mini cart, you must enable this option to display the correct cart contents.', 'litespeed-cache' ); ?>
|
||
<br /><?php Doc::notice_htaccess(); ?>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
|
||
</tbody>
|
||
</table>
|
||
</div>
|