File Editor
Directories:
.. (Back)
attendees
commerce
components
editor
settings
Files:
admin-welcome-message.php
attendees.php
legacy-ticket-fields.php
list.php
meta-box.php
move-tickets.php
order-available.php
order-pending-completion.php
price-fields.php
privacy.php
rsvp-metabox-capacity.php
rsvp-metabox-not-going.php
tec-tickets-options-network.php
ticket-type-history.php
tpp-metabox-capacity.php
tpp-metabox-sku.php
tpp-orders.php
tribe-commerce-settings.php
tribe-options-display.php
tribe-options-tickets.php
Create New File
Create
Edit File: tpp-metabox-sku.php
<?php /** * Filters the boolean value that controls whether a sku is displayed or not * * @since 4.7 * * @param boolean $display_sku */ $display_sku = apply_filters( 'tribe_events_tickets_tpp_display_sku', true ); if ( ! $display_sku ) { return; } ?> <div class="<?php $this->tr_class(); ?> input_block tribe-dependent" data-depends="#Tribe__Tickets__Commerce__PayPal__Main_radio" data-condition-is-checked > <label for="ticket_tpp_sku" class="ticket_form_label ticket_form_left"><?php esc_html_e( 'SKU:', 'event-tickets' ); ?></label> <input type="text" id="ticket_sku" name="ticket_sku" class="ticket_field sku_input ticket_form_right" size="14" value="<?php echo esc_attr( $sku ); ?>" > <p class="description ticket_form_right"> <?php echo esc_html( sprintf( __( 'A unique identifying code for each %s type you\'re selling', 'event-tickets' ), tribe_get_ticket_label_singular_lowercase( 'sku' ) ) ); ?> </p> </div>
Save Changes
Rename File
Rename