buy-button.php
3 years ago
checkout-form.php
3 years ago
customer-dashboard-button.php
3 years ago
dashboard-tab.php
3 years ago
form.php
2 years ago
logout-button.php
3 years ago
form.php
17 lines
| 1 | <sc-checkout |
| 2 | class="checkout" |
| 3 | id="<?php echo esc_attr( $id ); ?>" |
| 4 | class="<?php echo esc_attr( $classes ); ?>" |
| 5 | style="<?php echo esc_attr( $style ); ?>" |
| 6 | modified="<?php echo esc_attr( $modified ?? '' ); ?>" |
| 7 | alignment="<?php echo esc_attr( $align ?? '' ); ?>" |
| 8 | success-url="<?php echo esc_url_raw( $success_url ?? null ); ?>" |
| 9 | > |
| 10 | <sc-form> |
| 11 | <?php if ( (bool) $honeypot_enabled ?? false ) : ?> |
| 12 | <sc-checkbox name="get_feedback" value="Feedback" style="display: none !important;"></sc-checkbox> |
| 13 | <?php endif; ?> |
| 14 | <?php echo filter_block_content( $content, 'post' ); ?> |
| 15 | </sc-form> |
| 16 | </sc-checkout> |
| 17 |