File Editor
Directories:
.. (Back)
Files:
buttons.php
content.php
dropdown.php
empty.php
header.php
icon.php
Create New File
Create
Edit File: buttons.php
<?php /** * Header Cart Widget cart & checkout buttons. * * @package Sinatra */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <div class="si-cart-buttons"> <a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="si-btn btn-text-1" role="button"> <span><?php esc_html_e( 'View Cart', 'sinatra' ); ?></span> </a> <a href="<?php echo esc_url( wc_get_checkout_url() ); ?>" class="si-btn btn-fw" role="button"> <span><?php esc_html_e( 'Checkout', 'sinatra' ); ?></span> </a> </div>
Save Changes
Rename File
Rename