Home › Forums › WoodMart support forum › Shipping hint in Product Grid View
Shipping hint in Product Grid View
- This topic has 9 replies, 2 voices, and was last updated 6 years, 11 months ago by Artem Temos.
-
AuthorPosts
-
January 10, 2018 at 12:27 pm #32574
andrebeyerParticipantHello,
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.January 10, 2018 at 12:53 pm #32587
Artem TemosKeymasterHello,
Yes, our theme supports this plugin. Could you please provide us your website url so we can check what is wrong?
Thank you
January 12, 2018 at 6:47 am #33070
andrebeyerParticipantHello,
my server was down, but now the credentials in private content…
THANK YOU VERY MUCH!!!
Greetings
January 12, 2018 at 7:38 am #33092
Artem TemosKeymasterHi,
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
January 12, 2018 at 11:31 am #33149
andrebeyerParticipantHello 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!!!
January 12, 2018 at 12:40 pm #33161
Artem TemosKeymasterHi,
You can disable sidebars for each page separately while editing them in the Dashboard -> Pages.
Regards
January 12, 2018 at 2:06 pm #33180
andrebeyerParticipantyes, 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.January 12, 2018 at 2:43 pm #33193
Artem TemosKeymasterTry 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; }
January 13, 2018 at 6:57 am #33234
andrebeyerParticipantHello,
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!
January 13, 2018 at 10:33 am #33254
Artem TemosKeymasterHi,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register