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 | |
| /** | |
| * Change Beer Directory plugin slug from 'beer' to 'soup' | |
| * | |
| * @link http://wordpress.stackexchange.com/questions/41988/redeclare-change-slug-of-a-plugins-custom-post-type | |
| */ | |
| function brewery_add_custom_rewrite_rule() { | |
| // First, try to load up the rewrite rules. We do this just in case |
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
| .template_pets_wrap .pet_meta_wrap ul li:before { | |
| content: "\f00c"; | |
| font-family: FontAwesome; | |
| font-size: .85em; | |
| display: inline-block; | |
| margin-left: -1.2em; | |
| width: 1.5em; | |
| color: #e2e2e2; | |
| } |
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
| /** | |
| * Custom Customizer Style | |
| */ | |
| function custom_customizer_style() { | |
| wp_enqueue_style( 'rescue-customizer-style', get_template_directory_uri() . '/customizer/style.css', array(), '', 'all' ); | |
| } | |
| add_action( 'customize_controls_enqueue_scripts', 'custom_customizer_style' ); |
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
| 0,15,30,45 * * * * curl -I http://rescuethemes.com/leafping/wp-cron.php?doing_wp_cron |
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-bar-section li.current_page_item:not(.has-form) a:not(.button) { | |
| color: #aaaaaa; | |
| } | |
| /* For mobile only, use this */ | |
| @media only screen and (max-width: 40em) { | |
| .top-bar-section li.current_page_item:not(.has-form) a:not(.button) { | |
| color: #aaaaaa; | |
| } |
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
| /* Change the number to reflect however many prodcuts to show in a single row */ | |
| if (!function_exists('merch_loop_columns')) { | |
| function merch_loop_columns() { | |
| return 3; | |
| } | |
| } |
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
| .woocommerce.archive ul.products li.product { | |
| margin-bottom: 5em; | |
| } | |
| .woocommerce.archive ul.products li.product h3 { | |
| top: 1.5em; | |
| color: #616671; | |
| } | |
| .woocommerce.archive mark { | |
| background-color: #f6f6f6; | |
| color: #888f9e; |
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
| @font-face{ | |
| font-family:FontAwesome; | |
| src:url('../css/fonts/fontawesome-webfont.eot?#iefix') format('eot'), | |
| url('../css/fonts/fontawesome-webfont.woff') format('woff'), | |
| url('../css/fonts/fontawesome-webfont.ttf') format('truetype'), | |
| url('../css/fonts/fontawesome-webfont.svg#FontAwesome') format('svg'); | |
| } |
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_header_wrap .top-bar-section li.current-menu-item:not(.has-form) a:not(.button) { | |
| color: black; | |
| } |
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
| .footer_copyright { | |
| display: none; | |
| } |
OlderNewer