Tagged: Product, shop, woocommerce
-
AuthorPosts
-
October 27, 2020 at 8:36 pm #1256218
I have a couple of questions. I would be glad if you could help me :)
1- Is there a way to make single product page full width or can I enlarge the width of product image.
2- How can I make my shopping page private? I want to create usernames and passwords on admin panel and send these individual login info to my clients. I don’t want anyone to become a user on his own.
3- How can I remove prices on products? I don’t want prices to be displayed anywhere. (Both catalogues and single product pages)
4- Is there a way to bring description, additional information and reviews area right after product name?
5- How can I reduce the blank area between price and description below it?
6- How can I remove quantity counter? (-1+ button)
7- When I add a product to cart, an info area comes that says “<ProductName> added to your cart”. How can I change this to “<ProductName> added to your basket.”?
8- Is there a way to remove price, total, subtotal etc. areas in checkout page?
9- How can I change “Proceed to checkout” text to “Proceed to request”?
10- Instead of showing Billing Details, I want to show a message like “Your request has been received.” Is it possible?
Thank you already for your time :)
October 28, 2020 at 12:17 pm #1256333Hey,
Thanks for contacting us!
1- Please add following code to Quick CSS and adjust the width as needed
.single-product-main-image { width: 50%; }
2- You can use a plugin such as this one – https://woocommerce.com/products/private-store-for-woocommerce/
3- Please add following code to bottom of Functions.php file in Appearance > Editor
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
4- There was a whitespace at the beginning of “product short description” field, I deleted it and now description is right below price. When you remove the price, it will move right under product title :)
5- See #4. If this was not what you meant, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
6- Please add following code to bottom of Functions.php file
add_filter( 'woocommerce_is_sold_individually', 'av_remove_quantity_fields', 10, 2 ); function av_remove_quantity_fields( $return, $product ) { return true; }
7- Please use this plugin – https://wordpress.org/plugins/loco-translate/ and edit WooCommerce language files to change the string.
8- Please add following code to bottom of Quick CSS field
.shop_table.woocommerce-checkout-review-order-table { display: none; }
9- Please see #7
10- You can use a plugin such as this one – https://wordpress.org/plugins/woo-thank-you-page-nextmove-lite/ or this one – https://woocommerce.com/products/custom-thank-pages/
Best regards,
Yigit -
AuthorPosts
- You must be logged in to reply to this topic.