Plugin Directory

Changeset 3103985


Ignore:
Timestamp:
06/18/2024 09:36:59 AM (22 months ago)
Author:
teamzt
Message:

Fixed the issue of incorrect item subtotals in the view booking and booking item sections

Location:
ticktify
Files:
428 added
4 edited

Legend:

Unmodified
Added
Removed
  • ticktify/trunk/readme.txt

    r3070460 r3103985  
    11=== Ticktify ===
    22Contributors: teamzt
    3 Tags: bookings, calendar, event, management, schedule, venue, planning, ticket, pricing, registration, sponsorship, speakers, wp event
     3Tags: bookings, event, schedule, venue, ticket,
    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.2
     7Stable tag: 1.0.3
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    134134
    135135*  Update: All functionality was updated for WordPress 6.5.2
     136
     137 = 1.0.3 =
     138
     139*  Fixed the issue of incorrect item subtotals in the view booking and booking item sections.
     140
     141*  Update: All functionality was updated for WordPress 6.5.4
  • ticktify/trunk/ticktify.php

    r3070460 r3103985  
    33 * Plugin Name: Ticktify
    44 * Description: Event registration and booking management for WordPress. Events, locations, google maps,booking registration, user login/registration and more!
    5  * Version: 1.0.2
     5 * Version: 1.0.3
    66 * Author: Zehntech Technologies Pvt. Ltd.
    77 * Author URI: https://www.zehntech.com/
  • ticktify/trunk/ui-admin/metabox/booking_items.php

    r3011886 r3103985  
    4141                <td><?php echo esc_html($value['price']) ?></td>
    4242                <td>&#215;<?php echo esc_html($value['quantity']) ?></td>
    43                 <td><?php echo esc_html($value['subtotal']) ?></td>
     43                <td><?php echo esc_html($value['price']*$value['quantity']) ?></td>
    4444            </tr>
    45             <?php $total_sum += $value['subtotal'];
     45            <?php $total_sum += ($value['price']*$value['quantity']);
    4646        } ?>
    4747    <tfoot>
  • ticktify/trunk/ui-front/account/view-booking.php

    r2913481 r3103985  
    5353                            <td><?php echo esc_html($value['price']); ?></td>
    5454                            <td>&#215;<?php echo esc_html($value['quantity']); ?></td>
    55                             <td><?php echo esc_html($value['subtotal']); ?></td>
     55                            <td><?php echo esc_html($value['price']*$value['quantity']); ?></td>
    5656                            <td id="event_status_<?php echo esc_attr($value['event_id']); ?>"><?php echo esc_html(ucfirst($value['status'])); ?></td>
    5757                            <td>
     
    7979                        </tr>
    8080                    <?php
    81                         $total_sum += $value['subtotal'];
     81                        $total_sum += ($value['price']*$value['quantity']);
    8282                    } ?>
    8383            <tbody>
Note: See TracChangeset for help on using the changeset viewer.