WordPress hide post from custom post-type on a single page

Initial situation custom post-type (projects)[projects.php] <?php namespace main_themeextposttypesprojects; function post_type() { $labels = [ 'name' => _x( 'Projects', 'Post Type General Name', 'main_theme' ), 'singular_name' => _x( 'Project', 'Post Type Singular Name', 'main_theme' ), 'menu_name' => __( 'Projects', 'main_theme' ), 'name_admin_bar' => __( 'Projects', 'main_theme' ), 'all_items' => __( 'Alle Projects', 'main_theme' ), 'add_new_item' => … Read more

Is it possible to update the total price on the checkout page in woocommerce from a custom field

I would like to know how I go about this. Let’s say I have some items in my checkout page in woocommerce. I want to apply a gift card to the order, I can’t use a gift card plugin because it is implemented already by a third party gift card service. Someone is building the connection for me to hit to connect to the third pary gift card service.