Changeset 3032324
- Timestamp:
- 02/06/2024 05:15:30 PM (2 years ago)
- Location:
- wc-call-for-price/trunk
- Files:
-
- 1 added
- 7 edited
-
includes/Render.php (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_files.php (added)
-
vendor/composer/autoload_real.php (modified) (2 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
-
wc-call-for-price.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-call-for-price/trunk/includes/Render.php
r2950927 r3032324 121 121 122 122 $style = "cursor: pointer; height: {$height}px; width: {$width}px; background-color: transparent; background-repeat: no-repeat; background-size: contain;"; 123 $style .= ! empty( $background_image_url ) ? 'background-image:url(' . $background_image_url . ')' : ''; 123 $style .= ! empty( $background_image_url ) ? 'background-image:url(' . $background_image_url . ');' : ''; 124 $style .= 'display:inline-block;'; 124 125 125 126 $click_event = ! $do_redirect ? "return false": ''; -
wc-call-for-price/trunk/readme.txt
r2952571 r3032324 3 3 Tags: call for price, request a quote, name your price, price, pricing 4 4 Requires at least: 4.2.2 5 Tested up to: 6. 35 Tested up to: 6.4 6 6 WC requires at least: 5.0.0 7 WC tested up to: 8. 0.07 WC tested up to: 8.3 8 8 Requires PHP: 7.2 9 Stable tag: 1.4. 09 Stable tag: 1.4.1 10 10 License: GPLv3 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 118 118 == Upgrade Notice == 119 119 120 = 1. 3.0 to 1.4.0=120 = 1.4.0 to 1.4.1 = 121 121 * Visit `WC Call for Price` plugin settings page. A lot of new settings are introduced 122 122 * Check for the plugin is activated after updated. 123 * Also check if the button design is good for your, a new button attributes section added under `Button` tab.123 * Some theme css conflict issue has been resolved 124 124 125 125 126 126 == Changelog == 127 127 128 = 1.4.0 (9 August, 2023) = 128 = 1.4.1 (6 February 2023) 129 * 🪛 **Tweak:** Button css theme conflict issue fixed 130 131 = 1.4.0 (9 August 2023) = 129 132 * ✅ **Feature:** Admin settings area updated. Added 4 sections [General, Button, Rules, Actions] 130 133 * ✅ **Feature:** Display settings added. Now you can show `Call For Price` on empty price product or on all of your products … … 136 139 * 🧩 **Compatibility:** Tested up to WooCommerce 8.0.0 137 140 138 = 1.3.0 (29 July ,2023) =141 = 1.3.0 (29 July 2023) = 139 142 * Code refactored 140 143 * ✅ **Feature:** Plugin made translation ready … … 144 147 * 🪛 **Tweak:** Security issue fixes 145 148 146 = 1.2.1 (25 July ,2023) =149 = 1.2.1 (25 July 2023) = 147 150 * 🧩 **Compatibility:** Tested up-to WordPress 6.2.2 148 151 * 🧩 **Compatibility:** Tested up to PHP v7.2 -
wc-call-for-price/trunk/vendor/autoload.php
r2944895 r3032324 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit3 a0aca2c060029fc99165fd6348db65a::getLoader();25 return ComposerAutoloaderInit3ca00b0cf152a3ff09fd6b33b3959463::getLoader(); -
wc-call-for-price/trunk/vendor/composer/autoload_real.php
r2944895 r3032324 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit3 a0aca2c060029fc99165fd6348db65a5 class ComposerAutoloaderInit3ca00b0cf152a3ff09fd6b33b3959463 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit3 a0aca2c060029fc99165fd6348db65a', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit3ca00b0cf152a3ff09fd6b33b3959463', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit3 a0aca2c060029fc99165fd6348db65a', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit3ca00b0cf152a3ff09fd6b33b3959463', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit3 a0aca2c060029fc99165fd6348db65a::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit3ca00b0cf152a3ff09fd6b33b3959463::getInitializer($loader)); 31 31 32 32 $loader->register(true); 33 34 $filesToLoad = \Composer\Autoload\ComposerStaticInit3ca00b0cf152a3ff09fd6b33b3959463::$files; 35 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 36 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { 37 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; 38 39 require $file; 40 } 41 }, null, null); 42 foreach ($filesToLoad as $fileIdentifier => $file) { 43 $requireFile($fileIdentifier, $file); 44 } 33 45 34 46 return $loader; -
wc-call-for-price/trunk/vendor/composer/autoload_static.php
r2944895 r3032324 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit3 a0aca2c060029fc99165fd6348db65a7 class ComposerStaticInit3ca00b0cf152a3ff09fd6b33b3959463 8 8 { 9 public static $files = array ( 10 '63bfe1ec758a2dd1817d174a30dd8364' => __DIR__ . '/../..' . '/functions.php', 11 ); 12 9 13 public static $prefixLengthsPsr4 = array ( 10 14 'W' => … … 28 32 { 29 33 return \Closure::bind(function () use ($loader) { 30 $loader->prefixLengthsPsr4 = ComposerStaticInit3 a0aca2c060029fc99165fd6348db65a::$prefixLengthsPsr4;31 $loader->prefixDirsPsr4 = ComposerStaticInit3 a0aca2c060029fc99165fd6348db65a::$prefixDirsPsr4;32 $loader->classMap = ComposerStaticInit3 a0aca2c060029fc99165fd6348db65a::$classMap;34 $loader->prefixLengthsPsr4 = ComposerStaticInit3ca00b0cf152a3ff09fd6b33b3959463::$prefixLengthsPsr4; 35 $loader->prefixDirsPsr4 = ComposerStaticInit3ca00b0cf152a3ff09fd6b33b3959463::$prefixDirsPsr4; 36 $loader->classMap = ComposerStaticInit3ca00b0cf152a3ff09fd6b33b3959463::$classMap; 33 37 34 38 }, null, ClassLoader::class); -
wc-call-for-price/trunk/vendor/composer/installed.php
r2944895 r3032324 2 2 'root' => array( 3 3 'name' => 'wcpress/wcp', 4 'pretty_version' => 'dev- master',5 'version' => 'dev- master',6 'reference' => ' 120c0285fc6649f3a2e2ad018a0d13204b6bb8c7',4 'pretty_version' => 'dev-develop', 5 'version' => 'dev-develop', 6 'reference' => '804e6d0229d267a3cef2e2f8320b9f795eba78f8', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'wcpress/wcp' => array( 14 'pretty_version' => 'dev- master',15 'version' => 'dev- master',16 'reference' => ' 120c0285fc6649f3a2e2ad018a0d13204b6bb8c7',14 'pretty_version' => 'dev-develop', 15 'version' => 'dev-develop', 16 'reference' => '804e6d0229d267a3cef2e2f8320b9f795eba78f8', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
wc-call-for-price/trunk/wc-call-for-price.php
r2950930 r3032324 3 3 * Plugin Name: WC Call For Price 4 4 * Plugin URI: http://www.wordpress.org/wc-call-for-price 5 * Version: 1.4. 06 * Author: Aftabul Islam7 * Author URI: https:// profiles.wordpress.org/aihimel5 * Version: 1.4.1 6 * Author: WCPress 7 * Author URI: https://wcpress.net/wc-call-for-price-woocommerce-plugin 8 8 * Author Email: toaihimel@gmail.com 9 9 * PHP version: 7.2 … … 35 35 36 36 // Constants 37 defined( 'WC_CALL_FOR_PRICE_VERSION' ) || define('WC_CALL_FOR_PRICE_VERSION', '1. 4.0');37 defined( 'WC_CALL_FOR_PRICE_VERSION' ) || define('WC_CALL_FOR_PRICE_VERSION', '1.3.0'); 38 38 defined('WC_CALL_FOR_PRICE_PATH') || define('WC_CALL_FOR_PRICE_PATH', plugin_basename(__FILE__)); 39 39 defined( 'WC_CALL_FOR_PRICE_ACTIVATION_DEACTIVATION_FILE' ) || define( 'WC_CALL_FOR_PRICE_ACTIVATION_DEACTIVATION_FILE', __DIR__ . '/activation-deactivation.php' );
Note: See TracChangeset
for help on using the changeset viewer.