Plugin Directory

Changeset 3318486


Ignore:
Timestamp:
06/26/2025 08:10:12 PM (9 months ago)
Author:
wpmethods
Message:

fix buy now button text center

Location:
order-list-table-elementor-widget
Files:
8 added
5 edited

Legend:

Unmodified
Added
Removed
  • order-list-table-elementor-widget/trunk/css/custom-style.css

    r3215945 r3318486  
    3434
    3535/*Buy Now Button Style*/
     36td.buy_now {
     37    display: flex;
     38    gap: 5px;
     39}
    3640.oltew-order-list-table table .buy_now a {
    3741    background:#FBCD01;
    3842    color: #2b2b2b;
    3943    display: inline-block;
    40 
     44    text-align: center;
    4145}
    4246
  • order-list-table-elementor-widget/trunk/order-list-table-elementor-widget.php

    r3215945 r3318486  
    44 * Description: To show Woocommerce recent order list on a table, just use this Elementor Widget/Addon.
    55 * Plugin URI:  https://wpmethods.com/order-list-table-elementor-widget
    6  * Version:     2.0.0
     6 * Version:     2.0.1
    77 * Author:      WP Methods
    88 * Author URI:  https://wpmethods.com/
     
    1010 * License:     GPL v2 or later
    1111 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    12  * Elementor tested up to: 3.26.3
    13  * Elementor Pro tested up to: 3.26.2
     12 * Elementor tested up to: 3.29.2
     13 * Elementor Pro tested up to: 3.29.2
    1414 */
    1515
     
    2121function oltew_order_list_table_enq_style(){
    2222    $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');
    2424    wp_enqueue_style(
    2525        'font-awesome',
  • order-list-table-elementor-widget/trunk/readme.txt

    r3215945 r3318486  
    33Tags: woocommerce order list, woocommerce order table, elementor widget, order list table
    44Requires at least: 5.9
    5 Tested up to: 6.7
     5Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 2.0.0
     7Stable tag: 2.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • order-list-table-elementor-widget/trunk/widgets-loader.php

    r3215945 r3318486  
    2121     * @var string The addon version.
    2222     */
    23     const VERSION = '2.0.0';
     23    const VERSION = '2.0.1';
    2424
    2525    /**
  • order-list-table-elementor-widget/trunk/woo-table-widgets-ele.php

    r3215945 r3318486  
    13621362        );
    13631363
     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
    13641374        $this->end_controls_tab();
    13651375
     
    17641774                            top: -9999px;
    17651775                            left: -9999px;
     1776                        }
     1777
     1778                        td.buy_now {
     1779                            display: flex;
     1780                            flex-direction: column;
     1781                            align-items: center;
    17661782                        }
    17671783
Note: See TracChangeset for help on using the changeset viewer.