ulihake
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] ZIP & City not alignedIn the form we have a div with class clear attached after the field Postleitzahl. That’s strange because the div shouldn’t be there. I can fix the problem setting the div to display none with an inspector.
I will have a close look into the code to see what I can do about this.
uli
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] ZIP & City not alignedAnd could you try to set Bundesland to “gross”, “wide”. If you don’t have two fields on a row, the “links” setting for Bundesland does not make any sense…
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] ZIP & City not alignedCould you please post a link to your website…
thanks.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] ZIP & City not alignedp.s. you can set the behavior (first, last, wide) with WCPGSK in the according checkout form section, billing or shipping.
uliForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] ZIP & City not alignedCould you please check if the postleitzahl-Field and the town field have the correct css class attached… there are three: first, last and wide… if one of the two is wide (probably the first one, the second will display on the right hand side but on a new row.
uli
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Cannot Remove Labels For Checkout FieldsHello A.M.M.
Ok. I did not check on this any further as there was no feedback from Gemma Wild. I did a quick test with some fields and the labels did not show up. As you’re the second person to complain, I will have a close look on this.
uli
Forum: Plugins
In reply to: [WooCommerce] Problem with email notification in WoocommerceCheck the gateway code and especially the function process_payment().
For the COD gateway WooCommerce uses:
$order->update_status( 'processing', __('some text', woocommerce) ) ;Replace this to test with:
$order->payment_complete();The payment_complete function will set the status to ‘processing’ if necessary by checking payments, but it will will additionally send the emails we want, whereas update_status does not send emails.
Woo should fix that at least for the COD gateway. I haven’t tested the BACS gateway but I believe it won’t send emails either.
Regards.
uhForum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Adding custom field dataForgot about the $size parameter… if you set it to an desired size like array(75,75) or a predefined thumbnail size identifier you will retrieve your image… Sorry for that. Normally you find the thumbnail predefinitions at the start of your theme’s function file.
uh
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Adding custom field dataPS on the last post: $id means the product_id in this case which should be available via the cart items listed in the invoice (the cart item id).
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Adding custom field dataGlad that you found a solution, Brendavo. I actually checked another plugin with nearly the same name. Thanks for clarifying this, Ewout. I will check your plugin this weekend.
If you have product thumbnails attached (does not work necessarily for variations this way!) you can use something like this, Brendavo:
if ( '' != get_the_post_thumbnail( $id ) ) { $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $id ), $size, false ); $thumburl = $thumb[0];; echo '<img src="' . $thumburl . '" width="75" height="75" />'; }For variations with no thumbnail this is a bit different as you have to retrieve the parent thumbnail… The width and height is optional. You can only set the width or you can also use styles attaching a class or the style attribute.
Regards and good luck with your website.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] two more optionsUpdate on this: You should check if there’s an update from WooThemes available for the Variation Swatches and Colors plugin you bought from WooThemes. Your plugin version uses template code from WooCommerce versions below 2.1 and templates are one of the most affected parts when it comes to changes between 2.0 and 2.1 versions of WooCommerce.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Custom fields to show in InvoiceOk. Great. So this is solved.
Thanks a lot for your feedback.uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Custom fields to show in InvoiceAfter a quick look into the code of “WooCommerce PDF Invoices”: The plugin does not expose filters to merge additional information into the invoice. I’m not sure if I can do something about this. A possible solution is to take the WooCommerce PDF Invoices plugin and implement the necessary stuff to make it more versatile.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Custom fields to show in InvoiceAnd: you can ask this question also in the “WooCommerce PDF Invoices” support threads… And: There’s a good chance that this question has been answered already as you won’t be the first with a question like this related to “WooCommerce PDF Invoices”.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Cannot Remove Labels For Checkout FieldsHello Gemma Wild.
I will close this as I haven’t received an answer from your side. If you’ve solved the problem, great, if not please reply here within the next days. I will see your answer.
uh