Not able to "Add to Cart' if i am not logged in - wordpress

I have a problem in my Woocommerce shop. Not logged-in users can't add products in their cart! When they press the "add-to-cart-button", it shows the products is added to the cart. But if you go to the cart, it is empty!
If I am logged-in, it is not happening and everything is working good.
Can someone please help?
Site- www.filmyvastra.com
This is my settings for Woocommerce-->Accounts & Privacy

Related

"Checkout is not available while your cart is empty" problem

I was doing the woo-commerce website and doing testing. I add the product to the cart and proceed to checkout. I was then select to pay with blizpay and it directs me to the blizpay payment page. I was then manually clicked back to return to the woo-commerce website to cancel the payment and it shows Checkout is not available whilst your cart is empty. My previous added product was gone. Can anyone help?
You previous add products are not in cart. It goes to order log and payment status of those products are pending.

How to skip checkout page Woocommerce?

Tell me pls how to skip checkout page Woocommerce?
A page where a person simply has to click the "place order" button, since the rest of the data is substituted itself.
After clicking it is redirected to the payment gateway...
How do I skip this formality by clicking one button and redirect them straight to the payment gateway?
Payment gateways is part of the WooCommerce checkout page. Do you have any payment gateways set up? May be you are referring to skipping the cart page and going to the checkout. Here's a great tutorial to do that: https://www.webroomtech.com/woocommerce-skip-cart-and-go-to-checkout/
add_filter('add_to_cart_redirect', 'webroom_redirect_add_to_cart');
function webroom_redirect_add_to_cart() {
global $woocommerce;
$cw_redirect_url_checkout = $woocommerce->cart->get_checkout_url();
return $cw_redirect_url_checkout;
}
add the above code to functions.php file and save it. From now on every time a user clicks the add-to-cart button it will be redirected to the checkout page.

How to deactivate Order function in Wordpress

I am now building my own website that will show some pictures to users.
That's like ebay but unable to buy any items.
Just click and contact to the seller.
Here are 2 screenshots.
For example, click the first item, then the second page will show up.
Like the screenshot, I do Not want to see the 'Add to cart'. Instead of that, I want to see this, Contact the seller then it will show the seller's phone number.
I installed woocommerece & WV vendors plugins.
If you have any good suggestion, It will be appreciated.
Thanks.
Woocommerece is for selling items. If you are trying to create a lookalike shop site, I'd recommend:
Creating a custom post type for the products
Create custom fields for all the properties of your product & seller information.
Style the page as you wish.
Woocommerece is totally not necessery here.

Why does my email shows up in Woocommerce check out page?

I am newbie in Woocommerce.
I filled out profile information in WordPress "Customer Billing address" and "Customer Shipping address"
And when I checked the "Checkout" page, all my information was filled out.
So, I removed all my information which was in Profile, the information was gone in Checkout page. (Which is good!)
However, the email did not remove. (The profile states email is required, and whenever I go for checkout, my email shows up.)
Can anyone know how to fix this problem?
Also, what plug-ins are there that if the customer buy multiple products and calculate the shipping costs at proceed to check out page?
For example, I want to set $9.45 for maximum weight/ dimension we set and if customer buy more products, I want to add percentage more for the weight/ dimension.
Thanks,
Hi happy to read your question .
As you are seeing your profile details on checkout page because you are logged in your site as administrator so .
log out from your wordpress site then check checkout page
Regarding second issue you need add variable products in site or else use below plugin - http://codecanyon.net/item/woocommerce-shipping-calculator-on-product-page/11496815

Remove Woocommerce message from Woocommerce Cart page

I'm using the Woocommerce Preorders plugin and on my cart page, it displays a message, "Your previous cart was emptied because pre-orders must be purchased separately." if a user adds the same item to their cart twice. (My site is getshru.com, and the cart page is getshru.com/preorder).
I've used the php answer (first answer) from this question to remove another unwanted woocommerce-message on the Cart page. However, I don't fully understand how it works so I can't quite get a version of this to work to remove this other unwanted message.
Wordpress - Woocommerece remove "Added to Cart" message
Any recommendations? Thanks for any/all advice, I'm new to this.

Resources