# merchant/1.8/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.8. 29 lines.

- Page: https://pluginprobe.com/plugins/merchant/1.8/code/inc/modules/product-audio/admin/options.php
- Raw: https://pluginprobe.com/plugins/merchant/1.8/raw/inc/modules/product-audio/admin/options.php
- Modified: 2023-12-13T17:56:38+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.8/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
		),

	)
) );

```
