За последние 24 часа нас посетили 22984 программиста и 1230 роботов. Сейчас ищут 780 программистов ...

Помочь в смене места цены

Тема в разделе "Сделайте за меня", создана пользователем Hurniwka, 5 апр 2019.

  1. Hurniwka

    Hurniwka Новичок

    С нами с:
    5 апр 2019
    Сообщения:
    1
    Симпатии:
    0
    Добрый день! Есть сайт на wp, в нем есть товары , у которых добавлен текст после цены, необходимо поменять местами текст и цену, чтобы текст был перед ценой.

    Пример карточки товара
    https://шармосква.рф/product/очарование/

    Текст добавлен через плагин unit measure

    Код плагина

    Сам код этого плагина:
    ———————————-
    public function __construct() { $this->uom_add_actions_filters(); } /** * Add actions and filters. * @since 1.0.1 */ function uom_add_actions_filters() { add_filter( 'woocommerce_get_price_html', array( $this, 'woo_uom_render_output' ), 10, 2 ); } /** * Render the output * @since 1.0.1 * @return $price + UOM string */ function woo_uom_render_output( $price ) { global $post; // Check if uom text exists $woo_uom_output = get_post_meta( $post->ID, '_woo_uom_input', true ); // Check if variable OR UOM text exists if ( $woo_uom_output ) : $woo_uom_price_string = $price . ' ' . '<span class="tab-content-inner">' . esc_attr_x( $woo_uom_output, 'woocommerce-uom' ) . '</span>'; return $woo_uom_price_string; else : return $price; endif; } } // Instantiate the class $woo_uom_output = new Woo_Uom_Output();