Webram
@Webram
Я есть

Как изменить содержимое бейджа Распродажа в блоках Gutenberg?

Нужно заменить бейдж "Распродажа" на "столько-то %" в архивах и на странице товара.
Проблема в том, что тема блочная и не везде воспринимает стандартные фильтры и хуки.
Ну и я не могу понять куда смотреть, где искать.

Функция расчета процентов уже имеется и работает на странице товара, а в архиве - нет.

Скрин - Страница товара
0TpnqFy.jpeg
Скрин - Архив
oo1vncC.jpeg

Есть такой файл, который якобы формирует Блок SaleBadge, но его редактирование не вызывает никаких изменений:
ProductSaleBadge.php

<?php
namespace Automattic\WooCommerce\Blocks\BlockTypes;

use Automattic\WooCommerce\Blocks\Utils\StyleAttributesUtils;

/**
 * ProductSaleBadge class.
 */
class ProductSaleBadge extends AbstractBlock {

	/**
	 * Block name.
	 *
	 * @var string
	 */
	protected $block_name = 'product-sale-badge';

	/**
	 * API version name.
	 *
	 * @var string
	 */
	protected $api_version = '2';

	/**
	 * Get block attributes.
	 *
	 * @return array
	 */
	protected function get_block_type_supports() {
		return array(
			'color'                  =>
			array(
				'gradients'  => true,
				'background' => true,
				'link'       => true,
			),
			'typography'             =>
			array(
				'fontSize'                        => true,
				'lineHeight'                      => true,
				'__experimentalFontFamily'        => true,
				'__experimentalFontWeight'        => true,
				'__experimentalFontStyle'         => true,
				'__experimentalLetterSpacing'     => true,
				'__experimentalTextTransform'     => true,
				'__experimentalTextDecoration'    => true,
				'__experimentalSkipSerialization' => true,
			),
			'__experimentalBorder'   =>
			array(
				'color'  => true,
				'radius' => true,
				'width'  => true,
			),
			'spacing'                =>
			array(
				'margin'                          => true,
				'padding'                         => true,
				'__experimentalSkipSerialization' => true,

			),
			'__experimentalSelector' => '.wc-block-components-product-sale-badge',

		);
	}

	/**
	 * Overwrite parent method to prevent script registration.
	 *
	 * It is necessary to register and enqueues assets during the render
	 * phase because we want to load assets only if the block has the content.
	 */
	protected function register_block_type_assets() {
		return null;
	}

	/**
	 * Register the context.
	 */
	protected function get_block_type_uses_context() {
		return [ 'query', 'queryId', 'postId' ];
	}

	/**
	 * Include and render the block.
	 *
	 * @param array    $attributes Block attributes. Default empty array.
	 * @param string   $content    Block content. Default empty string.
	 * @param WP_Block $block      Block instance.
	 * @return string Rendered block type output.
	 */
	protected function render( $attributes, $content, $block ) {
		if ( ! empty( $content ) ) {
			parent::register_block_type_assets();
			$this->register_chunk_translations( [ $this->block_name ] );
			return $content;
		}

		$post_id = isset( $block->context['postId'] ) ? $block->context['postId'] : '';
		$product = wc_get_product( $post_id );

		if ( ! $product ) {
			return null;
		}

		$is_on_sale = $product->is_on_sale();

		if ( ! $is_on_sale ) {
			return null;
		}

		$classes_and_styles = StyleAttributesUtils::get_classes_and_styles_by_attributes( $attributes );
		$classname          = isset( $attributes['className'] ) ? $attributes['className'] : '';

		$align = isset( $attributes['align'] ) ? $attributes['align'] : '';

		$output  = '<div class="wp-block-woocommerce-product-sale-badge ' . esc_attr( $classname ) . '">';
		$output .= sprintf( '<div class="wc-block-components-product-sale-badge %1$s wc-block-components-product-sale-badge--align-%2$s" style="%3$s">', esc_attr( $classes_and_styles['classes'] ), esc_attr( $align ), esc_attr( $classes_and_styles['styles'] ) );
		$output .= '<span class="wc-block-components-product-sale-badge__text" aria-hidden="true">' . __( 'Sale', 'woocommerce' ) . '</span>';
		$output .= '<span class="screen-reader-text">'
						. __( 'Product on sale', 'woocommerce' )
					. '</span>';
		$output .= '</div></div>';

		return $output;
	}
}



Так же фильтр "woocommerce_blocks_product_grid_item_html" не работает почему-то, может из-за json который перекрывает конфигурацию своими настройками.
woocommerce_blocks_product_grid_item_html

add_filter( 'woocommerce_blocks_product_grid_item_html', 'kabu_product_grid_block_badge', 9999, 3 );
 
function kabu_product_grid_block_badge( $html, $data, $product ) {
   return "<li class=\"wc-block-grid__product\">
            <a href=\"{$data->permalink}\" class=\"wc-block-grid__product-link\">
               {$data->image}
               {$data->title}
            </a>
            {$data->price}
            {$data->rating}
            {$data->button}
         </li>";
}



Помогите, пожалуйста, понять куда копать, как переопределить содержимое бейджа.

П.С. Ходил по веткам разрабов в гитхабе и там жаловались, что есть такой косяк, но пока не переделали нормальным образом.
  • Вопрос задан
  • 135 просмотров
Решения вопроса 1
Webram
@Webram Автор вопроса
Я есть
Сделал все же через JS, не стал ковырять приватную функцию.

Примерное решение:

<script>
        $( document ).ready(function(){
            
            $( "li.product.sale" ).each( function() {
               
                var price_b = $( this ).find(".wc-block-components-product-price del bdi");
                var price_before = price_b.text().match(/\d/g).join('');
                
                var price_a = $( this ).find(".wc-block-components-product-price ins bdi");
                var price_after = price_a.text().match(/\d/g).join('');
                
                var sel = price_before - price_after;
                
                var prc = Math.round( sel / price_before * 100 );
                                
                $( this ).find(".wc-block-grid__product-image > a").prepend('<span class="onsale">-'+ prc +' %</span>');
                
            });

        });
</script>
Ответ написан
Комментировать
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы