This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Show Regular/Sale Price @ WooCommerce Cart Table | |
| */ | |
| add_filter( 'woocommerce_cart_item_price', 'ct_change_cart_table_price_display', 30, 3 ); | |
| function ct_change_cart_table_price_display( $price, $values, $cart_item_key ) { | |
| $slashed_price = $values['data']->get_price_html(); | |
| $is_on_sale = $values['data']->is_on_sale(); | |
| if ( $is_on_sale ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************************* | |
| Flipper Blurb | |
| *******************************************************************/ | |
| /* this is the description - from the content of the blurb */ | |
| .flipper .et_pb_blurb_container p { | |
| text-align:center; | |
| text-transform:none !important; | |
| margin-top:20px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /********************************************************************************* | |
| Lifter Effect | |
| Based on Geno Quiroz | |
| https://quiroz.co/floating-blurb-module-radial-shadow/ | |
| *********************************************************************************/ | |
| /* apply the shadow lift to the blurbs, the blog post grid and columns */ | |
| .lifter-blurb, .lifter-blog .et_pb_post, .lifter-col { | |
| -webkit-transition: all .3s ease-out !important; | |
| -moz-transition: all 0.3s ease-out !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .top-phone { | |
| padding: 10px; | |
| padding-right: 24px; | |
| padding-left: 30px; | |
| width: 340px; | |
| background: #6d1f16; | |
| background: -moz-linear-gradient(-45deg, #6d1f16 0%, #d71616 95%); | |
| background: -webkit-linear-gradient(-45deg, #6d1f16 0%,#d71616 95%); | |
| background: linear-gradient(135deg, #6d1f16 0%,#d71616 95%); | |
| filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d1404', endColorstr='#d71616',GradientType=1 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // This file queries Featured Events only | |
| echo '<h3>UPCOMING FEATURED EVENTS</h3>'; | |
| global $fe_events; | |
| $fe_args = array( | |
| 'tribe_eventcategory' => 112, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .dots-list { | |
| width: 100%; | |
| } | |
| .dots-list ol { | |
| padding-left: 50px; | |
| position: relative; | |
| margin-bottom: 20px; | |
| list-style: none !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #sidebar .et_pb_widget { | |
| border-bottom: 1px solid #ddd; | |
| padding-bottom: 20px; | |
| margin-bottom: 20px; | |
| } | |
| #sidebar .et_pb_widget:last-of-type { | |
| border-bottom:0; | |
| } |
NewerOlder