Plugin Directory

Changeset 3184995


Ignore:
Timestamp:
11/10/2024 03:51:32 AM (16 months ago)
Author:
bricksable
Message:

version 1.6.63

Location:
bricksable
Files:
162 added
4 edited

Legend:

Unmodified
Added
Removed
  • bricksable/tags/1.6.62/includes/elements/embed-google-maps/element-embed-google-maps.php

    r3184713 r3184995  
    105105        $google_api_key = esc_html( \Bricks\Database::get_setting( 'apiKeyGoogleMaps' ) );
    106106        $api_type       = $settings['apiType'];
     107        $address        = $this->render_dynamic_data( $settings['address'] );
    107108
    108109        $api_or_not = '';
     
    120121        $google_settings_params = sprintf(
    121122            $api_or_not,
    122             rawurlencode( $settings['address'] ),
     123            rawurlencode( $address ),
    123124            esc_attr( $settings['zoom'] ),
    124125            esc_attr( get_locale() ),
  • bricksable/trunk/bricksable.php

    r3184713 r3184995  
    22/**
    33 * Plugin Name: Bricksable
    4  * Version: 1.6.62
     4 * Version: 1.6.63
    55 * Plugin URI: https://bricksable.com/
    66 * Description: Elevate your website game with the Bricksable collection of premium elements for Bricks Builder. Designed to speed up your workflow, our customizable and fully responsive elements will take your website to the next level in no time.
     
    4040 */
    4141function bricksable() {
    42     $instance = Bricksable::instance( __FILE__, '1.6.62' );
     42    $instance = Bricksable::instance( __FILE__, '1.6.63' );
    4343
    4444    if ( is_null( $instance->settings ) ) {
  • bricksable/trunk/includes/elements/embed-google-maps/element-embed-google-maps.php

    r3087402 r3184995  
    105105        $google_api_key = esc_html( \Bricks\Database::get_setting( 'apiKeyGoogleMaps' ) );
    106106        $api_type       = $settings['apiType'];
     107        $address        = $this->render_dynamic_data( $settings['address'] );
    107108
    108109        $api_or_not = '';
     
    120121        $google_settings_params = sprintf(
    121122            $api_or_not,
    122             rawurlencode( $settings['address'] ),
     123            rawurlencode( $address ),
    123124            esc_attr( $settings['zoom'] ),
    124125            esc_attr( get_locale() ),
  • bricksable/trunk/readme.txt

    r3184713 r3184995  
    44Requires at least: 5.6
    55Tested up to: 6.6.2
    6 Stable tag: 1.6.62
     6Stable tag: 1.6.63
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    9595
    9696== Changelog ==
     97= 1.6.63 (2024-11-10) =
     98* Fix: Dynamic address data not working in Emebd Google Maps Element.
     99
    97100= 1.6.62 (2024-11-09) =
    98101* Fix: Read More Element not working in nested element such as Tab (Nestable) Element.
Note: See TracChangeset for help on using the changeset viewer.