// $post->post_name - gets slug of page // $post->post_title - gets title of page // $thePageTitle = get_the_title(); gets the title of the page // $thePageSlug = sanitize_title($thePageTitle); gets the slug of the page // is_shop() is a woocommerce conditional function to check if this is the shop page. // see https://docs.woothemes.com/document/conditional-tags/ // is_product() is a woocommerce conditional function to check if this is a product page. // LIST OF URIs // home_url() // plugin_dir_url() // plugin_dir_path() // admin_url() // get_template_directory() // get_template_directory_uri() // get_stylesheet_directory() // get_stylesheet_directory_uri() // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 ); // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 ); // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); // remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 ); // remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10 ); // remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 ); // remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 ); // add_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 ); // add_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10 ); // add_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );