mkalinska
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Cart translation show Items->Polo?ky->ItemsKanye_East
Your solution will not work for all languages and does not respect translation philosophy.
If you just add dash .po file for your language translate it right. Before that, you ended with untraslated (english) word.
Forum: Plugins
In reply to: [WooCommerce] Product Variable doesn't work with v.2.0.19!Hi,
What version of WP do You have?
I can’t simulate it on my shop. The only moment when the price isn’t changing at all is when the variable have the price same as the other.
1.Try to set price in variable “Custom” on zero…and the product page should be something like “From free” (now you have from 3500$) – that way you’ll know the system see the price for this variable.
2. try to “buy” few variables, just to see if different variables shows in order.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Print order layoutHi,
the only way (except for paying PRO) is to change some lines in style.css and print-invoice.php in templates folder.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Company Logo too smallHi,
AD 1) in file woocommerce-delivery-notes\woocommerce-delivery-notes.php edit function wcdn_company_logo() to this
/** * Show logo html */ if ( !function_exists( 'wcdn_company_logo' ) ) { function wcdn_company_logo() { global $wcdn; $attachment_id = wcdn_get_company_logo_id(); $company = $wcdn->settings->get_setting( 'custom_company_name' ); if( $attachment_id ) { $attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false ); // resize the image to a 1/4 of the original size // to have a printing point density of about 288ppi. ?> <img src="<?php echo $attachment_src[0]; ?>" alt="<?php echo esc_attr( $company ); ?>" /> <?php } } }
There was code
// resize the image to a 1/4 of the original size // to have a printing point density of about 288ppi. ?> <img src="<?php echo $attachment_src[0]; ?>" width="<?php echo $attachment_src[1] / 4; ?>" height="<?php echo $attachment_src[2] / 4; ?>" alt="<?php echo esc_attr( $company ); ?>" /> <?php
AD 2)need more information, do you mean company name in address or shop name that You fill in woocommerce settings?
AD 3)again need more information, I don’t have any web address in footer, perhaps this is caused by Your printer properties (header and footer are set also in printer settings)
Forum: Plugins
In reply to: [WooCommerce] don't want customer to be able to select a shipping optionForum: Plugins
In reply to: [WooCommerce] Product Variable doesn't work with v.2.0.19!Hi,
testing on WP 3.6 and WOO 2.0.19 and it works for me
Check https://www.lila-alby.cz
- regular price 278k?
- Variation “Modrá” AND “XL” shows 378k?
Forum: Plugins
In reply to: [WooCommerce] How to charge for shipping by total weight?Forum: Plugins
In reply to: [WooCommerce] Permalinks not working for me..upgraded from 2.0.14 to 2.0.19 and have the same problem. version 2.0.14 was OK
Forum: Plugins
In reply to: [WooCommerce] Cart translation show Items->Polo?ky->ItemsMistake found in code of theme Mystile.
file: theme-woocommerce.php (includes folder)
row: 367wrong code:
echo '<span class="contents">' . sprintf(_n('%d item', '%d items', $woocommerce->cart->get_cart_contents_count(), 'woothemes'),
right code:
echo '<span class="contents">' . sprintf(_n('%d item – ', '%d items – ', $woocommerce->cart->get_cart_contents_count(), 'woothemes'),
Forum: Plugins
In reply to: [WooCommerce] Cart translation show Items->Polo?ky->ItemsUPDATE:
just happend with Mystile theme.
When Wootique or Artificer theme used, the word ITEM is translated to POLO?KY (of course first the cs_CZ file has to be created).