Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all 102727 articles
Browse latest View live

problem with .blockui.blockoverlay on woocommerce checkout page

$
0
0

Replies: 0

Hi, we have a problem with the .BLOCKUI.BLOCKOVERLAY that is greying out the checkout area on the checkout page in woocommerce. I found a suggested .css that should help but it doesn’t work, it’s the following:

/* Fix issues with jquery overlay blocking checkout button */
.woocommerce .blockUI.blockOverlay {
position: relative!important;
display: none!important;
}

Could you please help me? I have already tried everything else, but the problem seems to be caused by the plugin woocommerce itself. Thanks a lot

  • This topic was modified 12 minutes ago by  Jan Dembowski. Reason: Title decapped. Don't yell

Sell consultation in writing

$
0
0

Replies: 0

Hi! First of all thank you for the help, for I have searched everywhere, and I’m desperate! I own a consultancy and I would like to make a “shop” with 1 product only. Let me explain:

The client will write in a text space a query (maximum of about 500 characters), and to send it to me will be charged for that query. Once I receive it (an email should warn me), I will have to write a personalized response, for which the client will be able to download the response in a PDF, or receive it in his email (or both), in a reasonable time (for example, at a maximum of 4 hours).

In short, the customer buys a query that makes me. Is there any plugin or method to do this? The truth is that I can not find it anywhere. Thank you all for your attention and I hope to help others as soon as I can! Thanks!

How to get Column class in template

$
0
0

Replies: 1

I’m developing a WordPress theme, Here is my HTML template link.
http://stanzastore.imediathemes.com/
How can I get column class in my theme woocommerce template. Before we got woocommerce column class from $woocommerce_loop variable. But as you know woocommerce removed that global variable. So what is the alternative to get WooCommerce loop column class in custom templates.

Help With WooCommerce Variations

$
0
0

Replies: 1

Hi There

Looking for some help with woocommerce variations which I can’t seem to find online.

For reference the page on the site I am referring to is: http://kbbdirect.co.uk/product/perfect-sence-range-matt-premium-white/

This product is split in to 3 ranges – Doors, Drawers & Pan Drawers. Each range has a set number of sizes. As you can see I have two drop down menus, in which you first choose your desired range, then your desired size.

What I am trying to do is get it so that if you select Doors only the door size shows in the size drop down, same with the drawers, same with the pan drawers. I have set this as two attributes, the first being the Range and the second the size. I add these to my attributes, and then I create individual variations based on the specific sizes per range.

What now happens is all sizing options show for each range, however when clicked it comes up with a notification saying ‘Sorry, no products matched your selection. Please choose a different combination’. I don’t want to show all sizes on all ranges, just the sizes I have specified, and I have no idea how I would do this as the way I have set it up was the way I thought it would work.

Sorry if this is confusing and please feel free to ask as many questions as you like.

Thanks in advance

Filter for Related Products Shortcode

$
0
0

Replies: 0

Hello,
I would like to add a filter to the [related_products] shortcode to show only specific tags or categories, e.g. [related_products tags=”handbags”]. Is there a possibility to achieve this?
Many thanks in advance and best wishes!

  • This topic was modified 3 hours, 47 minutes ago by  newshop.

General Tab not Showing up for Variable Products

$
0
0

Replies: 5

Hey there when I click on variable product the general tab disappears, so we are unable to enter product price! please help us remidy this! Let me know if there is a fix or if you need access?

Help order-tracking

$
0
0

Replies: 0

Prompt how to remake standard class-wc-shortcode-order-tracking so that it looked for the order not on two fields id of the order and mail and on one – the phone number specified in the order.

Few Issues

$
0
0

Replies: 0

Hello,
I want to remove “default sorting” and “sort by newness” category from this box, link below-
https://www.dropbox.com/s/3vh6axj71tajzhy/15857783_1255582457851960_1249650167_o%20copy.JPG?dl=0

2nd qs. When I add a size attribute under variable products. The button from “Add to cart” changes to “Select options” below the product thumbnails on the shop page. You can have a look at http://www.abrati.com
I want either to change it back to add to cart button or remove that tab from all product thumbnails on the shop page.

3rd qs. I want to know if I can add any 3rd party gateway like PAYTM?


[Resolved] Woocommerce Add To Cart not working

$
0
0

Replies: 1

Hi,

Woocommerce Add To Cart not working in Firefox, Safari (for windows), Microsoft Edge and Internet Explorer, but it’s working in Chrome.

I use Divi Theme and my website is http://www.anasequeira.com/

Thank you for your help.

Miguel

Coupons not working

$
0
0

Replies: 0

I keep getting the following error in my web console when i try applying a coupon to any product in my store:

“Sorry, this coupon is not applicable to your cart contents.”

The coupon is configured as 30% discount to the order total and it was working fine until just recently and i have no idea why.

Any help with this would be appreciated.

Thanks.

Custom payment + Custom Fields.

$
0
0

Replies: 0

Hi everyone, Happy New Year. (I need your help)

I’m starting to create a Custom Payment, where I have a textbox that will allow me to enter any value and in turn will allow me to dynamically create a custom field with its value.

I am using a plugin called (WooCommerce Checkout Manager) of which I have for a product the process in 50% | 50%.

The Custom Payment created is for the user to enter the transfer code or deposit.

This is where the problem comes from.

When I start registering the first 50%, my custom field is successfully created, called deposit1.

My goal is that when the user processes the other 50% in a status of partially paid order I register my other custom field called deposit2
BUT …, I’M NOT REGISTERING A SECOND CUSTOM FIELD (deposit2)

I show them an example of the code (IT IS ONLY AN EXAMPLE I’VE BEEN TESTING TO SEE WHY I’M NOT REGISTERING A SECOND CUSTOM FIELD)

add_action( ‘woocommerce_checkout_update_order_meta’, ‘custom_payment_update_order_meta’ );
function custom_payment_update_order_meta( $order_id ) {

$woocommerce_text_field = $_POST[‘my_key’];
$custom_fields = get_post_custom($order_id);
$row_count = count($custom_fields);

switch ($row_count) {
case 0:
add_post_meta( $order_id, ‘my_key’, esc_attr( $woocommerce_text_field) );
break;
case 1:
add_post_meta( $order_id, ‘my_key’, esc_attr( $woocommerce_text_field) );
break;
case 2:
add_post_meta( $order_id, ‘my_key’, esc_attr( $woocommerce_text_field) );
break;
}

.
.
.
.

}

I hope your answers…

Payment Complete Function

$
0
0

Replies: 0

Hello!

I have same strange issue in payment_complete() function.
I need to use hook woocommerce_payment_complete
In line 2470:
$valid_order_statuses = apply_filters( ‘woocommerce_valid_order_statuses_for_payment_complete’, array( ‘on-hold’, ‘pending’, ‘failed’, ‘cancelled’ ), $this );
Have here some error or something wrong, and hooks after this filter does not work!

I use this filter and added status ‘completed’ and it’s work correct, BUT!!!
But it’s not correct logically: payment about status, that already completed

May someone explaine me, please’ this point???
Thank you

Problem with paypal express checkout

$
0
0

Replies: 0

Hi, I am having problems with woocommerce’s paypal express checkout.
I do not know if it has something to do with an error in my woocommerce system report: wp_remote_post()
Should I paste here my woocommerce system report?

Restrição vendas

$
0
0

Replies: 0

Boa tarde, Como posso restringir as vendas do site para apenas uma cidade. Por exemplo quero vender somente para Santos.

Desde já agradeço retorno desta mensagem.

Setting Free Shipping with Minimum Order Amount – 2

$
0
0

Replies: 0

Hello

Two days ago I asked on this subject, I got an excellent answer.
Now I have continued question and nobody sees it, So I open a new subject.

To my first question, I got the code added to functions.php

add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );

function my_hide_shipping_when_free_is_available( $rates ) {
	$free = array();
	foreach ( $rates as $rate_id => $rate ) {
		if ( 'free_shipping' === $rate->method_id ) {
			$free[ $rate_id ] = $rate;
			break;
		}
	}
	return ! empty( $free ) ? $free : $rates;
}

It works well, Thanks.

————————–

The continued question:

I would like to add also the Local Pickup.

The problem is that when the invitation is greater than the Minimum Order Amount The Local Pickup gone.

Should be:
From under the Minimum Order Amount – fixed amount + Local Pickup
From about the Minimum Order Amount – Free Shipping + Local Pickup

How do I add this condition to this function?

(If you do not understand me, you can look in the original conversation)

Thanks


WooCommerce Emails marked as fraudulent

$
0
0

Replies: 0

We just migrated our email to Office 365 and the auto message Woo sends when an order is received is now being marked as fraudulent.

What config/DNS changes should we make to continue to let Woo send mail on our behalf.

Thanks

Ted

Make a new page linked to a custom shop page

$
0
0

Replies: 0

Hi,

I’m using Avada Theme, and my main problem is responsiveness in Shop page is quite poor.

It goes from 6 columns to 1 columns directly, without any step.

So I bought an Avada addon that allows me to introduce an additional page for shop, to add a new step of responsivity ( > 400px , < 800 px )

I created my child theme, and copied archive-product.php inside, and I can modify my main shop like that.

What I need it to create a variation of the main shop, and link a new page to it…

How should I do it???

Shipping options does not refresh if PayPal option is selected

$
0
0

Replies: 0

Hello, in our Wocommerce website we have set-up US domestic shipping rates and Rest of the world.

When user is logged in to paypal and goes and choose a paypal payment option on the check out page the shipping options are showing the US shipping options even if the shipping address which is coming from PayPal Directly is outside of US.

Any idea how to fix that ?

Can’t increment quantity on WooCommerce product page – simple product

$
0
0

Replies: 0

Not sure if this is a theme issue or a WooCommerce issue but we haven’t seen it mentioned elsewhere. On our simple product pages (non-variable products) the quantity selector will only let us choose a quantity of ‘1’. Has anyone else encountered this or know where we could get help on this?

Example: http://77.104.162.127/~wildwo54/product/all-you-need-is-love-and-a-cat-flour-sack-towel/

This only happens on simple products. Variable products have a wider selector box and any quantity can be selected as seen at this link: http://77.104.162.127/~wildwo54/product/birds-colorful/

Also, the products are not set to individual ordering.

Thanks in advance for any guidance/suggestions!

  • This topic was modified 9 hours, 19 minutes ago by  Cheryl LaPrade.

Coupons field in cart and checkout

$
0
0

Replies: 0

Checkbox in settings to use coupons is checked, but the coupon fields in the cart and checkout have vanished.

Any assistance would be greatly appreciated.

Viewing all 102727 articles
Browse latest View live