PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.6
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.6
2.3.2 2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 All 60 releases
merchant / inc / modules / pre-orders / admin / options.php

options.php in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 1.6, at inc/modules/pre-orders/admin/options.php

78 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Pre Orders.
4 *
5 * @package Merchant
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly
10 }
11
12 /**
13 * Settings
14 */
15 Merchant_Admin_Options::create( array(
16 'title' => esc_html__( 'Settings', 'merchant' ),
17 'module' => 'pre-orders',
18 'fields' => array(
19
20 array(
21 'id' => 'button_text',
22 'type' => 'text',
23 'title' => esc_html__( 'Button text', 'merchant' ),
24 'default' => esc_html__( 'Pre Order Now!', 'merchant' ),
25 ),
26
27 array(
28 'id' => 'additional_text',
29 'type' => 'text',
30 'title' => esc_html__( 'Additional information', 'merchant' ),
31 'default' => esc_html__( 'Ships on {date}.', 'merchant' ),
32 ),
33
34 array(
35 'id' => 'text-color',
36 'type' => 'color',
37 'title' => esc_html__( 'Button text color', 'merchant' ),
38 'default' => '#FFF',
39 ),
40
41 array(
42 'id' => 'text-hover-color',
43 'type' => 'color',
44 'title' => esc_html__( 'Button text color hover', 'merchant' ),
45 'default' => '#FFF',
46 ),
47
48 array(
49 'id' => 'border-color',
50 'type' => 'color',
51 'title' => esc_html__( 'Button border color', 'merchant' ),
52 'default' => '#212121',
53 ),
54
55 array(
56 'id' => 'border-hover-color',
57 'type' => 'color',
58 'title' => esc_html__( 'Button border color hover', 'merchant' ),
59 'default' => '#414141',
60 ),
61
62 array(
63 'id' => 'background-color',
64 'type' => 'color',
65 'title' => esc_html__( 'Button background color', 'merchant' ),
66 'default' => '#212121',
67 ),
68
69 array(
70 'id' => 'background-hover-color',
71 'type' => 'color',
72 'title' => esc_html__( 'Button background color hover', 'merchant' ),
73 'default' => '#414141',
74 )
75
76 ),
77 ) );
78