# merchant/1.9.10/inc/modules/product-audio/admin/options.php

Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together &amp; More for WooCommerce – Merchant, version 1.9.10. 29 lines.

- Page: https://pluginprobe.com/plugins/merchant/1.9.10/code/inc/modules/product-audio/admin/options.php
- Raw: https://pluginprobe.com/plugins/merchant/1.9.10/raw/inc/modules/product-audio/admin/options.php
- Modified: 2024-05-24T15:34:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/merchant/1.9.10/code/inc/modules/product-audio/admin/options.php#L10-L20`.

```php
<?php

/**
 * Product Audio Options.
 * 
 * @package Merchant
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

// Settings
Merchant_Admin_Options::create( array(
	'title'  => esc_html__( 'Settings', 'merchant' ),
	'module' => 'product-audio',
	'fields' => array(

		array(
			'id'      => 'autoplay',
			'type'    => 'switcher',
			'title'   => esc_html__( 'Autoplay', 'merchant' ),
			'desc'    => esc_html__( 'Autoplay may cause usability issues for some users.', 'merchant' ),
			'default' => false,
		),

	),
) );

```
