Commit cda538a 1 parent e8a971e commit cda538a Copy full SHA for cda538a
File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 90
90
if (current_theme_supports ( 'woocommerce ' )) : ?>
91
91
<ul class="nav navbar-nav navbar-right navbar-shoppingcart <?php echo (WC ()->cart ->get_cart_contents_count () == 0 ?'navbar-shoppingcart-empty ' :'navbar-shoppingcart-notempty ' ); ?> site-header-cart menu">
92
92
<li>
93
- <a class="cart-contents" href="<?php echo esc_url (WC ()-> cart -> get_cart_url ()); ?> " title="<?php esc_attr_e (
93
+ <a class="cart-contents" href="<?php echo esc_url (wc_get_cart_url ()); ?> " title="<?php esc_attr_e (
94
94
'View your shopping cart ' , 'stormbringer '
95
95
); ?> ">
96
96
<span class="amount"><?php echo wp_kses_data (WC ()->cart ->get_cart_subtotal ()); ?> </span>
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ function stormbringer_handheld_footer_bar_search() {
341
341
*/
342
342
function stormbringer_handheld_footer_bar_cart_link () {
343
343
?>
344
- <a class="footer-cart-contents" href="<?php echo esc_url ( WC ()-> cart -> get_cart_url () ); ?> " title="<?php esc_attr_e (
344
+ <a class="footer-cart-contents" href="<?php echo esc_url ( wc_get_cart_url () ); ?> " title="<?php esc_attr_e (
345
345
'View your shopping cart ' , 'stormbringer '
346
346
); ?> ">
347
347
<span class="glyphicon glyphicon-shopping-cart"></span>
@@ -489,7 +489,7 @@ function woocommerce_cart_count_shortcode( $atts ) {
489
489
)
490
490
).') ' ;
491
491
}
492
- $ link_url = esc_url (WC ()-> cart -> get_cart_url ());
492
+ $ link_url = esc_url (wc_get_cart_url ());
493
493
} else {
494
494
$ woocommerce_shop_page_id = get_option ( 'woocommerce_shop_page_id ' );
495
495
$ link_url = get_permalink ( $ woocommerce_shop_page_id );
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ iframe{border: 0}
90
90
.bootstrap-select a :focus {
91
91
outline : 0 !important ;
92
92
}
93
+ .bootstrap-select :not ([class *= col- ]):not ([class *= form-control ]):not (.input-group-btn ){
94
+ width : auto ;
95
+ }
93
96
94
97
// Comments
95
98
.edit-comment {
You can’t perform that action at this time.
0 commit comments