devjunkie
Forum Replies Created
-
(This is my work account)
Hi,
I’m using the latest version. I’ve set customer as standard role in the Registration form. When I remove the role select and do a registration all new users have the customer Role. But when I do it with the roles dropdown it doesn’t work. I’ve also did a conflict test but this was negative.
Default config:
Forum: Plugins
In reply to: [WooCommerce] Prices are displayed with a trailing “N/A”Please change the filter to:
add_filter( ‘ngettext’, ‘my_text_strings’, 20, 3 );
Forum: Plugins
In reply to: [WooCommerce] Color of select option of product variationI’m nut sure. You wrote you want to change the background color for the select options. Now you write me that you want to change the background color when you hover a select option. So what do you want now? Please be more specific!
Forum: Plugins
In reply to: [WooCommerce] Color of select option of product variationIt’s strange. The classes are gone. Try this instead:
#content-area .variations select, .variations option { background-color: #ffb6c1; }
Forum: Plugins
In reply to: [WooCommerce] Color of select option of product variationBlue? When I open it it is grey.
Forum: Plugins
In reply to: [WooCommerce] change attribute position under product title ?Can you try this please? I can’t try it at the moment because I’m at the train.
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_single_add_to_cart', 50 );
Forum: Plugins
In reply to: [WooCommerce] change attribute position under product title ?Hey,
can you please add a picture how it looks now?
BG
JohannesForum: Plugins
In reply to: [WooCommerce] can′t installHey Alexander,
du kannst auch etwas anderes versuchen. Lade dir hier WooCommerce direkt runter:
https://downloads.www.ads-software.com/plugin/woocommerce.3.4.5.zip
Geh dann per FTP Verbindung auf deinen Server und kopiere den Order
woocommerce
aus dem .zip file in den Ordner
wp-content/plugins
. Geh dann in deine Admin-Oberfl?che von deiner Website, geh auf Plugins, suche WooCommerce und klick dann auf aktivieren. Bitte l?sch vorher im Ordner plugins den alten woocommerce Ordner komplett, bevor du es so rein kopierst, wie ich es dir beschrieben habe.
Berichte mir dann mal, ob dass alles so geklappt hat.
VG
JohannesForum: Plugins
In reply to: [WooCommerce] change attribute position under product title ?Hey m8,
please add this to your themes function.php:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 15 ); Tell me if it works for you.
BG
JohannesForum: Plugins
In reply to: [WooCommerce] Product Description AlignmentHey m8,
please add this to your themes function.php:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 15 );
Tell me if it works for you.
BG
JohannesForum: Plugins
In reply to: [WooCommerce] Prices are displayed with a trailing “N/A”Hey,
add this to your themes function.php:
/** * Remove N/A from prices */ function my_text_strings( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'N/A' : $translated_text = __( '', 'woocommerce' ); break; } return $translated_text; } add_filter( 'gettext', 'my_text_strings', 20, 3 );
This code is tested and should work. Please tell me if it works for you too.
BG
Johannes- This reply was modified 6 years, 1 month ago by devjunkie.
Forum: Plugins
In reply to: [WooCommerce] Xero ErrorHey,
do you have a picture from the error? So that I can reproduce the error?
Thanks!
JohannesForum: Plugins
In reply to: [WooCommerce] Grouped products quantity fieldsHi there,
if you want some good help, please take time to describe your problem. If you want my help, please add some pictures how I should looks like and correct you misspelling and your sentences.
BG
JohannesForum: Plugins
In reply to: [WooCommerce] Color of select option of product variation