Plugin Directory

Changeset 3490679


Ignore:
Timestamp:
03/25/2026 09:12:53 AM (4 days ago)
Author:
creavi
Message:

Added Gutenberg block to easily insert booking widgets

Location:
creavi-booking-service
Files:
58 added
4 edited

Legend:

Unmodified
Added
Removed
  • creavi-booking-service/trunk/assets/css/style.css

    r3479245 r3490679  
    866866.creavibc-copy-btn.is-copied .creavibc-ico-check{ opacity:1; transform:scale(1); }
    867867.creavibc-copy-btn.is-copied .creavibc-ico-copy{ opacity:0; transform:scale(.9); }
     868
     869.creavibc-booking-block-wrapper {
     870    width: 100%;
     871}
     872
     873.creavibc-align-left {
     874    display: flex;
     875    justify-content: flex-start;
     876    width: 100%;
     877}
     878
     879.creavibc-align-center {
     880    display: flex;
     881    justify-content: center;
     882    width: 100%;
     883}
     884
     885.creavibc-align-right {
     886    display: flex;
     887    justify-content: flex-end;
     888    width: 100%;
     889}
  • creavi-booking-service/trunk/creavi-booking-service.php

    r3484738 r3490679  
    55 * Text Domain: creavi-booking-service
    66 * Domain Path: /languages
    7  * Version: 1.3.0
     7 * Version: 1.3.1
    88 * Author: Creavi
    99 * License: GPL2
     
    1212if ( ! defined( 'ABSPATH' ) ) exit;
    1313
    14 define( 'CREAVIBC_PLUGIN_FILE', __FILE__ );
     14define('CREAVIBC_PLUGIN_FILE', __FILE__ );
    1515define('CREAVIBC_PLUGIN_DIR', plugin_dir_path(__FILE__));
    1616define('CREAVIBC_PLUGIN_URL', plugin_dir_url(__FILE__));
    1717define('CREAVIBC_PLUGIN_PATH', plugin_dir_path(__FILE__));
    18 define('CREAVIBC_VERSION', '1.3.0');
     18define('CREAVIBC_VERSION', '1.3.1');
    1919
    2020
     
    123123});
    124124
     125require_once CREAVIBC_PLUGIN_DIR . 'includes/gutenberg/class-creavibc-booking-service-block.php';
     126CreaviBC_Booking_Service_Block::init();
     127
    125128
    126129add_action('admin_menu', 'creavibc_booking_admin_menu');
  • creavi-booking-service/trunk/includes/post-types.php

    r3479245 r3490679  
    1616            'search_items'  => __( 'Search Services', 'creavi-booking-service' ),
    1717        ],
    18         'public'        => false,
     18        'public'        => false,   
     19        'show_in_rest' => true,
    1920        'show_ui'       => true,
    2021        'show_in_menu'  => false,
  • creavi-booking-service/trunk/readme.txt

    r3484738 r3490679  
    55Tested up to: 6.9
    66Requires PHP: 7.4 
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88License: GPLv2 or later 
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9999== Changelog ==
    100100
     101= 1.3.1 =
     102* Added Gutenberg block to easily insert booking widgets directly in the editor.
     103
    101104= 1.3.0 =
    102105* Added secure video integration for online appointments.
Note: See TracChangeset for help on using the changeset viewer.