web-dev-qa-db-ja.com

レイアウトショップページ:画像と列のサイズ変更

私は私の電子ブックストアのワードプレスのテーマに "WooCommerce Products Filter"プラグインを追加しました。私は自分のショップページ用のカスタムページを用意し、WP Bakery Page Builderプラグインを使ってフィルタ付きサイドバーを作成しました。本とコラムのイメージ以外はすべてうまくいきます。 URLを見てください。 https://www.editorialufv.es/prova-maledetta/ ここでWPのスクリーンショット_エディタ Screenshot

ご覧のとおり、私はプラグインのショートコードを使用しました。すべてのショートコードはこちら: https://www.woocommerce-filter.com/shortcode/woof_products/

なぜそのイメージはそれほど巨大で、なぜ本はコラムに載っていないのでしょうか。どんな手掛かり。私は完全に迷っています。このショップのカスタムページで私のテーマを使っているファイルpage.php:

<?php get_header(); ?>

<div class="content">
    <!-- Sidebar With Content Section -->
    <?php
    $ebookstore_content_raw = json_decode( ebookstore_decode_stopbackslashes( get_post_meta( get_the_ID(), 'ebookstore_content', true ) ), true );

    $ebookstore_content_raw = ( empty( $ebookstore_content_raw ) ) ? array() : $ebookstore_content_raw;

    $ebookstore_theme_option = get_option( 'ebookstore_admin_option',array() );

    if (isset( $ebookstore_theme_option['book-search-style'] ) && $ebookstore_theme_option['book-search-style'] == 0) {

    } else {

        echo '<div class="margin-minus-50-top">';

        echo ebookstore_get_search_form_result();

        echo '</div>';

    }

    if (!empty( $ebookstore_content_raw )) {

        echo '<div class="vc-wrapper container">';

        while (have_posts()) {
            the_post();

            if (has_shortcode( get_the_content(), 'vc_row' )) {

                echo ebookstore_content_filter( get_the_content(), true );

            }

        }

        echo '</div>';

        echo '<div class="pagebuilder-wrapper">';

        ebookstore_show_page_builder( $ebookstore_content_raw );

        echo '</div>';

    } else {

        echo '<div class="container">';

        $default['show-title'] = 'enable';

        $default['show-content'] = 'enable';

        echo ebookstore_get_default_content_item( $default );

        echo '</div>';

    } ?>

</div><!-- content -->

<?php get_footer(); ?>
2
Stefano

あなたのコラムのスタイルをオフにするフォームが欠けていますwoofはあなたのテーマに依存するコラムスタイルを追加しません woof documentation

そしてあなたのCSSにはカラムのスタイルはありません css

2
Brad Holmes