Skip to content

Commit

Permalink
fix: Store and store TOC tempalte make high priority
Browse files Browse the repository at this point in the history
  • Loading branch information
alamgircsebd committed Dec 6, 2020
1 parent ec2b7a7 commit 9f5238f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/Rewrites.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public function __construct() {
add_action( 'pre_get_posts', [ $this, 'store_query_filter' ] );

add_filter( 'woocommerce_get_query_vars', [ $this, 'resolve_wc_query_conflict' ] );
add_filter( 'template_include', [ $this, 'store_template' ] );
add_filter( 'template_include', [ $this, 'store_template' ], 99 );
add_filter( 'template_include', [ $this, 'product_edit_template' ], 99 );
add_filter( 'template_include', [ $this, 'store_toc_template' ] );
add_filter( 'template_include', [ $this, 'store_toc_template' ], 99 );
add_filter( 'query_vars', [ $this, 'register_query_var' ] );
add_filter( 'woocommerce_get_breadcrumb', [ $this, 'store_page_breadcrumb' ] );
}
Expand Down

0 comments on commit 9f5238f

Please sign in to comment.