File: /home/mciraet/www/wp-content/themes/movedo/woocommerce/content-single-product.php
<?php
/**
* The template for displaying product content in the single-product.php template
*
* Override this template by copying it to yourtheme/woocommerce/content-single-product.php
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 3.6.0
*/
defined( 'ABSPATH' ) || exit;
global $product;
//Remove Single Product Hooks
remove_action( 'woocommerce_before_single_product', 'wc_print_notices', 10 );
remove_action( 'woocommerce_before_single_product', 'woocommerce_output_all_notices', 10 );
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 );
?>
<?php
/**
* woocommerce_before_single_product hook
*
* @hooked wc_print_notices - 10
*/
do_action( 'woocommerce_before_single_product' );
if ( post_password_required() ) {
echo get_the_password_form();
return;
}
?>
<?php
if ( movedo_grve_check_title_visibility() ) {
global $post;
$post_id = $post->ID;
$movedo_grve_custom_title_options = get_post_meta( $post_id, '_movedo_grve_custom_title_options', true );
$movedo_grve_title_style = movedo_grve_option( 'product_title_style' );
$movedo_grve_page_title_custom = movedo_grve_array_value( $movedo_grve_custom_title_options, 'custom', $movedo_grve_title_style );
if ( 'simple' == $movedo_grve_page_title_custom ) {
//Show Default Woo title
} else {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
}
} else {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
}
//Add Single Product Hooks
add_action( 'woocommerce_single_product_summary', 'movedo_grve_woo_single_title', 5 );
add_action( 'woocommerce_single_product_summary', 'wc_print_notices', 35 );
// Price
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 4 );
// Rating
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 3 );
//Section Classes
$section_classes = array( 'grve-section' );
if( 'theme' == movedo_grve_option( 'product_image_thumb_style', 'theme' ) && '1' == movedo_grve_option( 'product_image_middle', '1' ) ) {
$section_classes[] = 'grve-middle-content';
$section_classes[] = 'grve-custom-height';
}
$section_type = movedo_grve_option( 'product_area_section_type', 'fullwidth-background' );
$section_type = movedo_grve_post_meta( '_movedo_grve_area_section_type', $section_type );
if( 'fullwidth-element' == $section_type ) {
$section_classes[] = 'grve-fullwidth';
}
$padding_top_multiplier = movedo_grve_option( 'product_area_padding_top_multiplier', '3x' );
$padding_top_multiplier = movedo_grve_post_meta( '_movedo_grve_area_padding_top_multiplier', $padding_top_multiplier );
if ( !empty ( $padding_top_multiplier ) ) {
$section_classes[] = 'grve-padding-top-' . $padding_top_multiplier;
}
$padding_bottom_multiplier = movedo_grve_option( 'product_area_padding_bottom_multiplier', '3x' );
$padding_bottom_multiplier = movedo_grve_post_meta( '_movedo_grve_area_padding_bottom_multiplier', $padding_bottom_multiplier );
if ( !empty ( $padding_bottom_multiplier ) ) {
$section_classes[] = 'grve-padding-bottom-' . $padding_bottom_multiplier;
}
$section_string = implode( ' ', $section_classes );
?>
<?php if ( function_exists( 'wc_product_class' ) ) { ?>
<div id="product-<?php the_ID(); ?>" <?php wc_product_class('grve-product-area', $product ); ?>>
<?php } else { ?>
<div id="product-<?php the_ID(); ?>" <?php post_class('grve-product-area'); ?>>
<?php } ?>
<div class="grve-wrapper grve-product-area-wrapper">
<div class="<?php echo esc_attr( $section_string ); ?>" data-tablet-portrait-equal-columns="false" data-mobile-equal-columns="false">
<div class="grve-container">
<div class="grve-row grve-columns-gap-30">
<div class="wpb_column grve-column grve-column-1-2 grve-tablet-sm-column-1">
<div class="grve-column-wrapper">
<?php
/**
* woocommerce_before_single_product_summary hook
*
* @hooked woocommerce_show_product_sale_flash - 10
* @hooked woocommerce_show_product_images - 20
*/
do_action( 'woocommerce_before_single_product_summary' );
?>
</div>
</div>
<div class="wpb_column grve-column grve-column-1-2 grve-tablet-sm-column-1">
<div class="grve-column-wrapper">
<div id="grve-entry-summary" class="summary entry-summary grve-bookmark">
<?php
/**
* woocommerce_single_product_summary hook
*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_rating - 10
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
* @hooked WC_Structured_Data::generate_product_data() - 60
*/
do_action( 'woocommerce_single_product_summary' );
?>
</div><!-- .summary -->
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- #product-<?php the_ID(); ?> -->
<?php do_action( 'woocommerce_after_single_product' );
//Omit closing PHP tag to avoid accidental whitespace output errors.