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 | |
| /* WordPress Template Hierarchy as of WordPress 4.4 | |
| is_404() ---------------------------------------------------------------------------------------------------> 404.php | |
| is_search() ------------------------------------------------------------------------------------------------> search.php | |
| is_front_page() --------------------------------------------------------------------------------------------> front-page.php | |
| is_home() --------------------------------------------------------------------------------------------------> home.php | |
| is_attachment() ---------> {mime_type}.php ------------> attachment.php ----------------\ | |
| is_single() -------------> single-{post_type}.php -----> single-{post_type}-{slug}.php --> single.php -----\ | |
| is_page() ---------------> page-{slug}.php ------------> page-{id}.php ------------------> page.php --------> singular.php | |
| is_post_type_archive() --> archive-{post_type}.php ------------------------------------------------------\ |
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 /* | |
| Template Name: ORDERS Template | |
| */ ?> | |
| <?php get_header(); ?> | |
| <?php | |
| global $wpdb; | |
| ?> |
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 | |
| /* | |
| Template Name: Sub-pages Template | |
| */ | |
| get_header(); | |
| global $more; | |
| $is_page_builder_used = et_pb_is_pagebuilder_used( get_the_ID() ); ?> |
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
| <? | |
| /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| ~~~~PROPER WAY OF ADDING CHILD THEME CSS FILE ~~~~ | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ | |
| add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); | |
| function theme_enqueue_styles() { | |
| wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); | |
| $options = get_option('wpdc_options'); |
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
| <script src="https://checkout.stripe.com/checkout.js"></script> | |
| <button id="customButton">Purchase</button> | |
| <script> | |
| var handler = StripeCheckout.configure({ | |
| key: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXX', | |
| image: '/img/documentation/checkout/marketplace.png', | |
| locale: 'auto', | |
| token: function(token) { |
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 | |
| try { | |
| require_once('Stripe/lib/Stripe.php'); | |
| Stripe::setApiKey("sk_live_XXXXXXXXXXXXXXXXXXXXXXXX"); | |
| $token = $_POST['stripeToken']; | |
| $form_amount = $_POST['payamount']; | |
| $strName = $_POST["txtFormName"]; |
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
| <?phpphp | |
| /* | |
| Template Name: Sitemap Template | |
| */ | |
| ?> | |
| <?php get_header(); ?> | |
| <div class="container"> | |
| <!-- Example row of columns --> |
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
| /* fix pesky slider */ | |
| .et_pb_slides .et_pb_slide { min-height: 500px; } | |
| @media only screen and (max-width: 980px) { | |
| .et_pb_slides .et_pb_slide { min-height: 300px; } | |
| } |
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
| /*****************************************************************************/ | |
| /**************VISIONQUEST WOOCOMMERCE CUSTOM FUNCTIONS***********************/ | |
| /******************************************************************************/ | |
| remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); | |
| remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); | |
| add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10); | |
| add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); |
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 | |
| /* | |
| Template Name: Home Template | |
| */ | |
| ?> | |
| <?php get_header(); ?> | |
| <section id="octane-video"> |