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 | |
| //don't add above twice if it already exists | |
| /** | |
| * Check if WooCommerce Page of all kinds (not just cart and shop) | |
| * @thanks: https://faish.al/2014/01/06/check-if-it-is-woocommerce-page/ | |
| * Checked IDS with WooCommerce Repo 1 June 2019 | |
| */ | |
| function ca_is_really_woocommerce_page() { |
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 | |
| //don't add again | |
| add_action( 'genesis_comments', 'your_prefix_paginate_comments', 15 ); | |
| /** | |
| * Paginate Comment Navigation | |
| */ | |
| function your_prefix_paginate_comments() { |
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 | |
| //don't re add the php tag above | |
| add_filter('wp_link_query', 'cab_add_custom_post_type_archive_link', 10, 2); | |
| /** | |
| * Add Custom Post Type archive to WordPress search link query | |
| * Author: https://github.com/mthchz/editor-archive-post-link/blob/master/editor-archive-post-link.php | |
| */ | |
| function cab_add_custom_post_type_archive_link( $results, $query ) { |
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 | |
| //don't add again | |
| // assumes that you have registered your js for the new lightbox and that you understand what a handle is. | |
| // Gallery Support | |
| add_theme_support( 'wc-product-gallery-zoom' ); | |
| add_theme_support( 'wc-product-gallery-slider' ); | |
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 | |
| //don't include this | |
| /** ==================================================================================== | |
| * Force read more link to all excerpts whether or not it meets the word length criteria | |
| * and whether or not it is a custom excerpt | |
| ==================================================================================== **/ | |
| function excerpt_more_link_all_the_time() { |
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
| /** ==================================================================================== | |
| * Functions file | |
| ==================================================================================== **/ | |
| function yourthemeprefix_yourcpt_metabox_register() { | |
| $prefix = '_cmb_'; |
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 | |
| //don't add this above | |
| //change the hook and the function name | |
| function yourprefix_woocommerce_function_does_what() { | |
| if ( ! class_exists( 'WooCommerce' ) ) return; | |
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 | |
| //Don't copy above. | |
| add_action('widgets_init', 'cabeymer_unregister_widgets', 10); | |
| /** | |
| * Unregister Various Widgets | |
| * Clean up your widgets.php page | |
| * Single comment out the ones you want to keep | |
| */ |
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
| .my-hero-container { | |
| position: relative; | |
| height: 20vh; | |
| min-height: 150px; | |
| } | |
| @media (min-width: 800px) { | |
| .my-hero-container { | |
| height: 45vh; | |
| min-height: 250px; |
NewerOlder