/home/techb158/balacoffee.com/wp-content/plugins/woocommerce/src/Blocks/Templates
NameSizeModeActions
AbstractPageTemplate.php18550644editdlrm
AbstractTemplate.php7370644editdlrm
AbstractTemplateCompatibility.php58940644editdlrm
AbstractTemplatePart.php3320644editdlrm
AbstractTemplateWithFallback.php18430644editdlrm
ArchiveProductTemplatesCompatibility.php127260644editdlrm
CartTemplate.php20080644editdlrm
CheckoutHeaderTemplate.php8630644editdlrm
CheckoutTemplate.php20470644editdlrm
ClassicTemplatesCompatibility.php24300644editdlrm
ComingSoonSocialLinksTemplate.php11320644editdlrm
ComingSoonTemplate.php26420644editdlrm
ExternalProductAddToCartWithOptionsTemplate.php10210644editdlrm
GroupedProductAddToCartWithOptionsTemplate.php10160644editdlrm
MiniCartTemplate.php17140644editdlrm
OrderConfirmationTemplate.php16180644editdlrm
ProductAttributeTemplate.php27560644editdlrm
ProductBrandTemplate.php17770644editdlrm
ProductCatalogTemplate.php23160644editdlrm
ProductCategoryTemplate.php17830644editdlrm
ProductSearchResultsTemplate.php20680644editdlrm
ProductTagTemplate.php17630644editdlrm
SimpleProductAddToCartWithOptionsTemplate.php10110644editdlrm
SingleProductTemplate.php92530644editdlrm
SingleProductTemplateCompatibility.php147740644editdlrm
VariableProductAddToCartWithOptionsTemplate.php10210644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/woocommerce/src/Blocks/Templates/CartTemplate.php (2008B)
get_placeholder_page(); return null !== $placeholder && $post instanceof \WP_Post && $placeholder->post_name === $post->post_name; } /** * When the page should be displaying the template, add it to the hierarchy. * * This places the template name e.g. `cart`, at the beginning of the template hierarchy array. The hook priority * is 1 to ensure it runs first; other consumers e.g. extensions, could therefore inject their own template instead * of this one when using the default priority of 10. * * @param array $templates Templates that match the pages_template_hierarchy. */ public function page_template_hierarchy( $templates ) { if ( $this->is_active_template() ) { array_unshift( $templates, self::SLUG ); array_unshift( $templates, 'cart' ); } return $templates; } }