Plugin Directory

Changeset 3371116


Ignore:
Timestamp:
10/01/2025 01:07:34 PM (6 months ago)
Author:
themelooks
Message:

2.2.6

  • Fixed infobox widget title style not working issue
Location:
enteraddons
Files:
797 added
4 edited

Legend:

Unmodified
Added
Removed
  • enteraddons/trunk/enteraddons.php

    r3349846 r3371116  
    44 * Plugin URI:        https://themelooks.org/demo/enteraddons
    55 * Description:       Ultimate Template Builder for Elementor
    6  * Version:           2.2.5
     6 * Version:           2.2.6
    77 * Author:            ThemeLooks
    88 * Author URI:        https://themelooks.com
     
    2121// Version constant
    2222if (!defined('ENTERADDONS_VERSION')) {
    23     define('ENTERADDONS_VERSION', '2.2.5');
     23    define('ENTERADDONS_VERSION', '2.2.6');
    2424}
    2525// Current phpversion
  • enteraddons/trunk/readme.txt

    r3349846 r3371116  
    55Requires PHP: 7.4
    66Requires at least: 6.5
    7 Tested up to: 6.8
    8 Version: 2.2.5
    9 Stable tag: 2.2.5
     7Tested up to: 6.8.3
     8Version: 2.2.6
     9Stable tag: 2.2.6
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    162162== Change log ==
    163163
     164= 2.2.6 =
     165- Fixed infobox widget title style not working issue
     166
    164167= 2.2.5 =
    165168- Added Title HTML tag change option on Feature card widget
  • enteraddons/trunk/widgets/infobox/Infobox.php

    r3323008 r3371116  
    678678                'type' => \Elementor\Controls_Manager::COLOR,
    679679                'selectors' => [
    680                     '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content h5' => 'color: {{VALUE}}',
     680                    '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content .enteraddons-info-box-title' => 'color: {{VALUE}}',
    681681                ],
    682682            ]
     
    687687                'name' => 'title_typography',
    688688                'label' => esc_html__('Typography', 'enteraddons'),
    689                 'selector' => '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content h5',
     689                'selector' => '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content .enteraddons-info-box-title',
    690690            ]
    691691        );
     
    698698                'size_units' => ['px', '%', 'em'],
    699699                'selectors' => [
    700                     '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content h5' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     700                    '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content .enteraddons-info-box-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    701701                ],
    702702            ]
     
    710710                'size_units' => ['px', '%', 'em'],
    711711                'selectors' => [
    712                     '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content h5' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     712                    '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box-content .enteraddons-info-box-title' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    713713                ],
    714714            ]
     
    729729                'type' => \Elementor\Controls_Manager::COLOR,
    730730                'selectors' => [
    731                     '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box:hover .enteraddons-info-box-content h5' => 'color: {{VALUE}}',
     731                    '{{WRAPPER}} .enteraddons-wid-con .enteraddons-info-box:hover .enteraddons-info-box-content .enteraddons-info-box-title' => 'color: {{VALUE}}',
    732732                ],
    733733            ]
  • enteraddons/trunk/widgets/infobox/traits/Templates_Components.php

    r3323008 r3371116  
    6363
    6464        if (!empty($title['title'])) {
    65             echo '<' . tag_escape($tag) . '>' . esc_html($title['title']) . '</' . tag_escape($tag) . '>';
     65            echo '<' . tag_escape($tag) . ' class="enteraddons-info-box-title">' . esc_html($title['title']) . '</' . tag_escape($tag) . '>';
    6666        }
    6767    }
Note: See TracChangeset for help on using the changeset viewer.