FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
packages
/
blocks-next
/
build
/
blocks
/
price-setup-fee
Edit File: controller.php
<?php // no price in the context. $price = $block->context['price'] ?? ''; if ( empty( $price ) || is_wp_error( $price ) ) { return ''; } if ( empty( $price->setup_fee_text ) ) { return ''; } // return the view. return 'file:./view.php';
Save
Back