Plugin Directory

Changeset 2762489


Ignore:
Timestamp:
07/27/2022 03:43:19 PM (4 years ago)
Author:
themely
Message:

Version 1.1.2

Location:
serenity-theme-extensions/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • serenity-theme-extensions/trunk/readme.txt

    r2725659 r2762489  
    22
    33Contributors: themely
    4 Tags: serenity, theme, extensions
    5 Requires at least: 4.9
    6 Tested up to: 5.9.3
     4Tags:
     5Requires at least: 3.8
     6Tested up to: 6.0
    77Stable tag: 1.1.2
    88Requires PHP: 5.6
     
    4747
    4848== Changelog ==
     49
     50
     51### 1.1.2 - July 27th, 2022
     52
     53Changes:
     54
     55- Fixed missing single quotes in showcase widget file
    4956
    5057
  • serenity-theme-extensions/trunk/widgets/showcase_widget.php

    r2725659 r2762489  
    1919        $widget_ops = array(
    2020            'classname' => 'serenity-showcase-widget',
    21             'description' => __('Add a showcase detail to the Showcase section of the One-page Template.', 'serenity-lite')
     21            'description' => __('Add a showcase detail to the Showcase section of the One-page Template.', 'serenity-lite'),
     22        'customize_selective_refresh' => true,
    2223        );
    2324        parent::__construct( 'serenity_showcase', __('Showcase Widget', 'serenity-lite'), $widget_ops );
     
    115116        <label for="<?php echo $this->get_field_id('style'); ?>"><?php esc_html_e('Showcase Icon Style', 'serenity-lite'); ?></label>
    116117        <select class='widefat' id="<?php echo $this->get_field_id('style'); ?>" name="<?php echo $this->get_field_name('style'); ?>">
    117             <option value="fas" <?php selected( $instance['style'], fas ); ?>>Solid</option>
    118             <option value="far" <?php selected( $instance['style'], far ); ?>>Regular</option>
    119             <option value="fab" <?php selected( $instance['style'], fab ); ?>>Brands</option>
     118            <option value="fas" <?php selected( $instance['style'], 'fas' ); ?>>Solid</option>
     119            <option value="far" <?php selected( $instance['style'], 'far' ); ?>>Regular</option>
     120            <option value="fab" <?php selected( $instance['style'], 'fab' ); ?>>Brands</option>
    120121        </select>
    121122        <i><?php esc_html_e('Select which style to use for this icon. Each icon page displays the icon name and style directly beneath it.', 'serenity-lite'); ?> <a href="<?php echo esc_url('https://fontawesome.com/icons/apple?style=brands'); ?>" target="_blank"><?php esc_html_e('Here is an example', 'serenity-lite'); ?></a>.</i>
Note: See TracChangeset for help on using the changeset viewer.