Plugin Directory

Changeset 3057795


Ignore:
Timestamp:
03/24/2024 05:22:06 PM (2 years ago)
Author:
blocksmonster
Message:

Update to version 1.3.1 from GitHub

Location:
blocks-monster
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • blocks-monster/tags/1.3.1/blocks-monster.php

    r3054717 r3057795  
    1010 * @wordpress-plugin
    1111 * Plugin Name:       Blocks Monster
    12  * Version:           1.3.0
     12 * Version:           1.3.1
    1313 * Plugin URI:        https://blocks.monster/blocks-monster
    1414 * Description:       The library of all the blocks for the Elementor blocks.
     
    3535     * @var string
    3636     */
    37     public $version = '1.3.0';
     37    public $version = '1.3.1';
    3838
    3939    /**
  • blocks-monster/tags/1.3.1/includes/elementor/blocks/pricing/widget.php

    r3049878 r3057795  
    145145                                $save             = isset( $price['save'] ) ? $price['save'] : '';
    146146                                $button           = isset( $price['button'] ) ? $price['button'] : '';
    147                                 $link             = isset( $price['link'] ) ? $price['link'] : '';
     147                                $link             = isset( $price['link'] ) && isset( $price['link']['url'] ) ? $price['link']['url'] : '';
    148148                                $target           = isset( $price['target'] ) ? $price['target'] : '';
    149149                                $have_offer_price = ( ! empty( $offer_price ) ) ? 'bm-pricing__plan-have-offer-price' : '';
     
    158158                                <div class='bm-pricing__plan-save'><?php echo wp_kses_post( $save ); ?></div>
    159159                                <div class='bm-pricing__plan-button-box'>
    160                                     <a class="bm-pricing__plan-button" href="#" target="<?php echo esc_attr( $target ); ?>">
     160                                    <a class="bm-pricing__plan-button" href="<?php echo esc_attr( $link ); ?>" target="<?php echo esc_attr( $target ); ?>">
    161161                                        <?php echo esc_html( $button ); ?>
    162162                                    </a>
  • blocks-monster/tags/1.3.1/readme.txt

    r3054717 r3057795  
    33Tags: Blocks, Elementor, Elementor Blocks, Gutenberg
    44Tested up to: 6.4.2
    5 Stable tag: 1.3.0
     5Stable tag: 1.3.1
    66Requires PHP: 5.6
    77Requires at least: 4.4
     
    4040== Changelog ==
    4141
     42= 1.3.1 =
     43* Improvement: Fixed the link for the Elementor pricing widget not works.
     44
    4245= 1.3.0 =
    4346* New: Added the "Post List" Elementor widget.
  • blocks-monster/trunk/blocks-monster.php

    r3054717 r3057795  
    1010 * @wordpress-plugin
    1111 * Plugin Name:       Blocks Monster
    12  * Version:           1.3.0
     12 * Version:           1.3.1
    1313 * Plugin URI:        https://blocks.monster/blocks-monster
    1414 * Description:       The library of all the blocks for the Elementor blocks.
     
    3535     * @var string
    3636     */
    37     public $version = '1.3.0';
     37    public $version = '1.3.1';
    3838
    3939    /**
  • blocks-monster/trunk/includes/elementor/blocks/pricing/widget.php

    r3049878 r3057795  
    145145                                $save             = isset( $price['save'] ) ? $price['save'] : '';
    146146                                $button           = isset( $price['button'] ) ? $price['button'] : '';
    147                                 $link             = isset( $price['link'] ) ? $price['link'] : '';
     147                                $link             = isset( $price['link'] ) && isset( $price['link']['url'] ) ? $price['link']['url'] : '';
    148148                                $target           = isset( $price['target'] ) ? $price['target'] : '';
    149149                                $have_offer_price = ( ! empty( $offer_price ) ) ? 'bm-pricing__plan-have-offer-price' : '';
     
    158158                                <div class='bm-pricing__plan-save'><?php echo wp_kses_post( $save ); ?></div>
    159159                                <div class='bm-pricing__plan-button-box'>
    160                                     <a class="bm-pricing__plan-button" href="#" target="<?php echo esc_attr( $target ); ?>">
     160                                    <a class="bm-pricing__plan-button" href="<?php echo esc_attr( $link ); ?>" target="<?php echo esc_attr( $target ); ?>">
    161161                                        <?php echo esc_html( $button ); ?>
    162162                                    </a>
  • blocks-monster/trunk/readme.txt

    r3054717 r3057795  
    33Tags: Blocks, Elementor, Elementor Blocks, Gutenberg
    44Tested up to: 6.4.2
    5 Stable tag: 1.3.0
     5Stable tag: 1.3.1
    66Requires PHP: 5.6
    77Requires at least: 4.4
     
    4040== Changelog ==
    4141
     42= 1.3.1 =
     43* Improvement: Fixed the link for the Elementor pricing widget not works.
     44
    4245= 1.3.0 =
    4346* New: Added the "Post List" Elementor widget.
Note: See TracChangeset for help on using the changeset viewer.