Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created April 22, 2025 06:50
Show Gist options
  • Save plugin-republic/990b1ceb34a2ec77d328c9b93a98a1fa to your computer and use it in GitHub Desktop.
Save plugin-republic/990b1ceb34a2ec77d328c9b93a98a1fa to your computer and use it in GitHub Desktop.
<?php
/**
* Filter directory path for template files in Order Bump
*/
function my_wcob_template_dir( $dir ) {
return '/www/kinsta/public/plugins/wp-content/themes/my-child-theme/wcob-templates/'; // Update this path as required
}
add_filter( 'wcob_template_dir', 'my_wcob_template_dir' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment