Home Forums WoodMart support forum Shipping hint in Product Grid View

Shipping hint in Product Grid View

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #32574

    andrebeyer
    Participant

    Hello,

    i build a Shop in Germany and installed the PlugIn Woocommerce Germanized. I think, that these PlugIn published these shipping hint “zzgl. Versandkosten” in the grid.

    The first problem is the Background-Color at this Element (see Image)

    and the second is the position. This hint must show under the price.

    I thought, that the PlugIn Germanized is compatible with your theme? What I make false? 🙂

    Greetings, André

    Attachments:
    You must be logged in to view attached files.
    #32587

    Artem Temos
    Keymaster

    Hello,

    Yes, our theme supports this plugin. Could you please provide us your website url so we can check what is wrong?

    Thank you

    #33070

    andrebeyer
    Participant

    Hello,

    my server was down, but now the credentials in private content…

    THANK YOU VERY MUCH!!!

    Greetings

    #33092

    Artem Temos
    Keymaster

    Hi,

    You can create a file in the child theme called woodmart-child/woocommerce/content-product-list.php with the following code to change the price position

    <?php 
    	global $product, $woocommerce_loop;
    
    	$timer = woodmart_get_opt( 'shop_countdown' );
    	// Sale countdown
    	if ( ! empty( $woocommerce_loop['timer'] ) )
    		$timer = true;
    ?>
    <?php do_action( 'woocommerce_before_shop_loop_item' ); ?>
    
    <div class="product-wrapper">
    	<div class="product-element-top">
    		<a href="<?php echo esc_url( get_permalink() ); ?>" class="product-image-link">
    			<?php
    				/**
    				 * woocommerce_before_shop_loop_item_title hook
    				 *
    				 * @hooked woocommerce_show_product_loop_sale_flash - 10
    				 * @hooked woodmart_template_loop_product_thumbnail - 10
    				 */
    				do_action( 'woocommerce_before_shop_loop_item_title' );
    			?>
    		</a>
    		<?php woodmart_hover_image(); ?>
    		<div class="woodmart-buttons">
    			<?php woodmart_quick_view_btn( get_the_ID(), $woocommerce_loop['quick_view_loop'] - 1, 'main-loop' ); ?>
    			<?php woodmart_wishlist_btn(); ?>
    			<?php woodmart_compare_btn(); ?>
    		</div> 
    		<?php woodmart_quick_shop_wrapper(); ?>
    	</div>
    
    	<div class="product-list-content">
    		<?php
    			/**
    			 * woocommerce_shop_loop_item_title hook
    			 *
    			 * @hooked woocommerce_template_loop_product_title - 10
    			 */
    			do_action( 'woocommerce_shop_loop_item_title' );
    		?>
    		<?php
    			woodmart_product_categories();
    			woodmart_product_brands_links();
    		?>
    		<?php woocommerce_template_single_rating(); ?>
    		<?php 
    			echo $woocommerce_loop['swatches'];
    		?>
    		<?php woocommerce_template_single_excerpt(); ?>
    		<?php woodmart_swatches_list(); ?>
    		<?php if ( $timer ): ?>
    			<?php woodmart_product_sale_countdown(); ?>
    		<?php endif ?>
    		<?php woocommerce_template_loop_price(); ?>
    		<div class="woodmart-add-btn"><?php do_action( 'woocommerce_after_shop_loop_item' ); ?></div>
    	</div>
    </div>

    And add this snippet to the Custom CSS area in Theme Settings to fix the background

    
    .product-list-item .woodmart-add-btn .wc-gzd-additional-info > a,
    .product-list-item .woodmart-add-btn .wc-gzd-additional-info > a:hover {
    	background-color: transparent;
    }

    Kind Regards

    #33149

    andrebeyer
    Participant

    Hello thank you,

    now I have a other problem. On my Shopping Cart Page and at the Checkout Page is a Sidebar at the right and i doesn´t find the place to deactivate this.

    The Shopping Cart Page looks also defect?

    Can you check this with the credentials i send you in this topic?

    THANK YOU!!!

    #33161

    Artem Temos
    Keymaster

    Hi,

    You can disable sidebars for each page separately while editing them in the Dashboard -> Pages.

    Regards

    #33180

    andrebeyer
    Participant

    yes, but there was “none” at these pages.

    i found a configuration under Theme Setting -> General Layout -> Sidebar Position — Without and the sidebars was disabled.

    BUT at the Page Shopping Cart it looks defect?

    Attachments:
    You must be logged in to view attached files.
    #33193

    Artem Temos
    Keymaster

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    table tr.order-total .amount, 
    table tr.order-total td strong, 
    table tr.order-total th {
       font-size: 20px;
    }
    
    div.cart-content-wrapper .cart-totals-section {
       max-width: 470px;
    }
    #33234

    andrebeyer
    Participant

    Hello,

    I will try it, but I don‘t understand what The reason? I do Not change anything at The theme and only Plugins is Germanized and Loco Translate? In your Demo is at my Retina Display everything ok?

    Your Answer-Time and Quality is amazing!!! Great! Thank you!

    #33254

    Artem Temos
    Keymaster

    Hi,

    The problem is because of very long words in this language. They stretch the WooCommerce totals table and make look bad. We just correct it with simple CSS fixes.

    Kind Regards

Viewing 10 posts - 1 through 10 (of 10 total)