Changeset 3318486
- Timestamp:
- 06/26/2025 08:10:12 PM (9 months ago)
- Location:
- order-list-table-elementor-widget
- Files:
-
- 8 added
- 5 edited
-
tags/2.0.1 (added)
-
tags/2.0.1/css (added)
-
tags/2.0.1/css/custom-style.css (added)
-
tags/2.0.1/date-ago-function.php (added)
-
tags/2.0.1/order-list-table-elementor-widget.php (added)
-
tags/2.0.1/readme.txt (added)
-
tags/2.0.1/widgets-loader.php (added)
-
tags/2.0.1/woo-table-widgets-ele.php (added)
-
trunk/css/custom-style.css (modified) (1 diff)
-
trunk/order-list-table-elementor-widget.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/widgets-loader.php (modified) (1 diff)
-
trunk/woo-table-widgets-ele.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-list-table-elementor-widget/trunk/css/custom-style.css
r3215945 r3318486 34 34 35 35 /*Buy Now Button Style*/ 36 td.buy_now { 37 display: flex; 38 gap: 5px; 39 } 36 40 .oltew-order-list-table table .buy_now a { 37 41 background:#FBCD01; 38 42 color: #2b2b2b; 39 43 display: inline-block; 40 44 text-align: center; 41 45 } 42 46 -
order-list-table-elementor-widget/trunk/order-list-table-elementor-widget.php
r3215945 r3318486 4 4 * Description: To show Woocommerce recent order list on a table, just use this Elementor Widget/Addon. 5 5 * Plugin URI: https://wpmethods.com/order-list-table-elementor-widget 6 * Version: 2.0. 06 * Version: 2.0.1 7 7 * Author: WP Methods 8 8 * Author URI: https://wpmethods.com/ … … 10 10 * License: GPL v2 or later 11 11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt 12 * Elementor tested up to: 3.2 6.313 * Elementor Pro tested up to: 3.2 6.212 * Elementor tested up to: 3.29.2 13 * Elementor Pro tested up to: 3.29.2 14 14 */ 15 15 … … 21 21 function oltew_order_list_table_enq_style(){ 22 22 $dir = plugin_dir_url(__FILE__); 23 wp_enqueue_style('order-list-table', $dir . '/css/custom-style.css', array(), '2.0 ', 'all');23 wp_enqueue_style('order-list-table', $dir . '/css/custom-style.css', array(), '2.0.1', 'all'); 24 24 wp_enqueue_style( 25 25 'font-awesome', -
order-list-table-elementor-widget/trunk/readme.txt
r3215945 r3318486 3 3 Tags: woocommerce order list, woocommerce order table, elementor widget, order list table 4 4 Requires at least: 5.9 5 Tested up to: 6. 75 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 2.0. 07 Stable tag: 2.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
order-list-table-elementor-widget/trunk/widgets-loader.php
r3215945 r3318486 21 21 * @var string The addon version. 22 22 */ 23 const VERSION = '2.0. 0';23 const VERSION = '2.0.1'; 24 24 25 25 /** -
order-list-table-elementor-widget/trunk/woo-table-widgets-ele.php
r3215945 r3318486 1362 1362 ); 1363 1363 1364 $this->add_group_control( 1365 \Elementor\Group_Control_Background::get_type(), 1366 [ 1367 'name' => 'buy_now_background_hover_color', 1368 'types' => [ 'classic', 'gradient', 'video' ], 1369 'selector' => '{{WRAPPER}} .oltew-order-list-table table .buy_now a:hover', 1370 1371 ] 1372 ); 1373 1364 1374 $this->end_controls_tab(); 1365 1375 … … 1764 1774 top: -9999px; 1765 1775 left: -9999px; 1776 } 1777 1778 td.buy_now { 1779 display: flex; 1780 flex-direction: column; 1781 align-items: center; 1766 1782 } 1767 1783
Note: See TracChangeset
for help on using the changeset viewer.