Changeset 2711510
- Timestamp:
- 04/19/2022 11:16:51 AM (3 years ago)
- Location:
- product-quotation-for-woocommerce/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
product-quotation-for-woocommerce/trunk/README.txt
r2709548 r2711510 4 4 Requires at least: 4.0 5 5 Tested up to: 5.9 6 Stable tag: 1.2. 26 Stable tag: 1.2.3 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 77 77 == Changelog == 78 78 79 = 1.2.3- 14-04-2022 = 80 * Fixed: Quotation button style issue. 81 79 82 = 1.2.2 - 14-04-2022 = 80 83 * Added privacy policy -
product-quotation-for-woocommerce/trunk/assets/css/pqfw-frontend.css
r2709540 r2711510 130 130 float: none; 131 131 } 132 133 a.button.pqfw-button.pqfw-add-to-quotation {font-size: 14px;margin: 10px 0;display: inline-block;} 134 135 a.pqfw-view-quotation-cart {font-size: 14px;display: block;text-decoration: underline;} -
product-quotation-for-woocommerce/trunk/assets/js/pqfw-frontend.js
r2709540 r2711510 19 19 20 20 sendData : function(button) { 21 console.log($(button).data('id'));22 21 var data = { 23 22 productID : $(button).data('id'), -
product-quotation-for-woocommerce/trunk/product-quotation-for-woocommerce.php
r2709548 r2711510 4 4 * Plugin URI: https://github.com/mahafuz/product-quotation-for-woocommerce 5 5 * Description: Removes the 'Add to cart' button from WooCommerce and adds a simple 'Request for quotation' form on all product pages instead of it. 6 * Version: 1.2. 26 * Version: 1.2.3 7 7 * Author: Mahafuz <[email protected]> 8 8 * Author URI: https://github.com/mahafuz/ … … 26 26 define( 'PQFW_PLUGIN_VIEWS', trailingslashit( plugin_dir_path( __FILE__ ) . 'includes/Views' ) ); 27 27 define( 'PQFW_PLUGIN_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) ); 28 define( 'PQFW_PLUGIN_VERSION', '1.2. 2' );28 define( 'PQFW_PLUGIN_VERSION', '1.2.3' ); 29 29 30 30 /**
Note: See TracChangeset
for help on using the changeset viewer.