codesnipper
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Order Statuses for WooCommerce] Empty e-mailIn
public function sanitize_email_template
I changed
remove_action(‘woocommerce_email_header’, array($class, ’email_header’));
to this
remove_action(‘woocommerce_email_header’, array($class, ‘woocommerce_email_header’));
And now it works – but:
My theme uses plugin “WooCommerce Email Template Customizer” – and I have option to customize this email with plugin, but this customized email is not sended – only default woocommerce email.
But it’s on theme creator side, so, I will write to him.
Forum: Plugins
In reply to: [Waymark] [feature request] Add marker from frontendAdmin can approve it or delete. Simple solution for everyone.
Forum: Plugins
In reply to: [Waymark] [feature request] Add marker from frontendNope, simple button for all, maybe with some captcha or for registered. Admin approve every marker. Something simple.
Forum: Plugins
In reply to: [WooCommerce] Variable products showing as out of stockSame situation in my site 🙁
Forum: Plugins
In reply to: [Bulk Images to Posts] Image description as post contentSimple and working solution.
In bip-dropzone.php
line 76 replace this:
$postContent = ""with this:
$img_meta = wp_get_attachment_metadata( $attachment_id ); $postContent = $img_meta['image_meta']['caption'];