# merchant/1.6/inc/modules/auto-external-links/admin/options.php

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

- Page: https://pluginprobe.com/plugins/merchant/1.6/code/inc/modules/auto-external-links/admin/options.php
- Raw: https://pluginprobe.com/plugins/merchant/1.6/raw/inc/modules/auto-external-links/admin/options.php
- Modified: 2023-11-29T20:09:50+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.6/code/inc/modules/auto-external-links/admin/options.php#L10-L20`.

```php
<?php
/**
 * Auto External Links
 * 
 * @package Merchant
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

/**
 * Settings
 */
Merchant_Admin_Options::create( array(
	'title'  => esc_html__( 'Settings', 'merchant' ),
	'module' => 'auto-external-links',
	'fields' => array(

		array(
			'type'    => 'content',
			'content' => esc_html__( 'All the external links on your store will be opened in a browser tab by enabling this module. It prevents visitors from accidentally navigating away from your online store.', 'merchant' ),
		),

	),
) );

```
