Plugin Directory

Changeset 3104587


Ignore:
Timestamp:
06/19/2024 01:08:06 PM (22 months ago)
Author:
teamzt
Message:

Update Events Leave Page slug

Location:
mylivecart
Files:
43 added
5 edited

Legend:

Unmodified
Added
Removed
  • mylivecart/trunk/assets/css/zt-style.css

    r3031362 r3104587  
    467467    right: 0;
    468468    top: 0;
    469     height: 100%;
     469    height: 100vh;
    470470    transition: width 0.1s;
    471471    float: left;
  • mylivecart/trunk/mylivecart.php

    r3070466 r3104587  
    66 * Author URI: https://www.zehntech.com/
    77 * Description: Plugin to broadcast MyLiveCart events on the WordPress website.
    8  * Version: 1.0.1
     8 * Version: 1.0.2
    99 * License: GPL2
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6565            'post_title'   => __('Events Leave Page', 'mylivecart'),
    6666            'post_content' => '[ztcbl_EventsLeavePageContent]',
    67             'post_name'    => 'events-leave',
     67            'post_name'    => 'events-leave-page',
    6868            'post_status'  => 'publish',
    6969            'post_author'  => 1,
  • mylivecart/trunk/readme.txt

    r3070466 r3104587  
    33Tags: MyLiveCart, Live Shopping, Product Showcase, WordPress E-commerce, Interactive Shopping
    44Requires at least: 5.5
    5 Tested up to: 6.5.2
     5Tested up to: 6.5.4
    66Requires PHP: 7.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141*  Update: All functionality was updated for WordPress 6.5.2
     142
     143= 1.0.2 =
     144
     145*  Add checked into host select option into create/update event page
     146*  Update: All functionality was updated for WordPress 6.5.4
     147*  Update: Update Events Leave Page slug
  • mylivecart/trunk/ui-admin/create-event.php

    r3031362 r3104587  
    178178                    $host_detail  = json_decode( wp_remote_retrieve_body( $host_details ) );
    179179                    ?>
    180                     <option value="<?php echo esc_html( $host_detail->data->id ); ?>"><?php echo esc_html( $host_detail->data->first_name .'(Self)'); ?></option>
     180                    <option value="<?php echo isset($host_detail->data->id)? esc_html( $host_detail->data->id ) :1; ?>"><?php echo esc_html( $host_detail->data->first_name .'(Self)'); ?></option>
    181181                    <?php
    182182                    $inf_list     = ZTCBL_Api::ztcbl_influencer_list();
  • mylivecart/trunk/ui-admin/update-event.php

    r3031362 r3104587  
    169169                    $host_detail  = json_decode( wp_remote_retrieve_body( $host_details ) );
    170170                    ?>
    171                     <option value="<?php echo esc_html( $host_detail->data->id ); ?>"><?php echo esc_html( $host_detail->data->first_name .'(Self)'); ?></option>
     171                    <option value="<?php echo isset($host_detail->data->id)? esc_html( $host_detail->data->id ) :1; ?>"><?php echo esc_html( $host_detail->data->first_name .'(Self)'); ?></option>
    172172                    <?php
    173173                    $inf_list = ZTCBL_Api::ztcbl_influencer_list();
Note: See TracChangeset for help on using the changeset viewer.