katmacau
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Include order status in PDFThanks for the quick response. That was great. I tweaked it a little so I could mark orders as paid/unpaid. Sharing in case someone else finds this useful.
/* Add order status to PDF invoice */
function wpo_order_status_after_order_data( $document_type, $order ) {
$order_status = $order->get_status();
if($order_status == "completed") $order_status = "PAID";
if($order_status == "pending" || $order_status == "on-hold") $order_status = "Unpaid";
echo '<tr class="order-status">
<th>Order Status:</th>
<td>', $order_status, '</td>
</tr>';
}
add_action( 'wpo_wcpdf_after_order_data', 'wpo_order_status_after_order_data', 10, 2 );As a feature suggestion you could setup allowing users to set up this on your plugins side with custom labels depending on order status.
Forum: Plugins
In reply to: [Edit Usernames] Not currently working on my siteThanks. I also had the same issue and applied your edit, which worked. Hopefully you add to the actual plugin soon.
Forum: Plugins
In reply to: [Speech to Text for WPForms] Suggestion for plugin – spinner when submittingNo problems. The plugin is a great concept and looking forward to where you take it from the initial release.
Forum: Plugins
In reply to: [Speech to Text for WPForms] Plugin not updating properlyThanks. Its updating properly now.
Forum: Plugins
In reply to: [Simple Lightbox] Deprecated: trim(): Passing null to parameter #1Thanks for providing this fix. Hopefully applied to the plugin soon as its simple fix.
Forum: Plugins
In reply to: [Plugin for Google Reviews] Cannot find my businessI was able to work out the ID via browser inspector for my business and got this notice from your plugin:
It seems Google place which you are trying to connect does not have a physical address (it’s virtual or service area)…
So it seems if your business doesnt include an address than it can’t be used for reviews. I will think of another approach. Thanks anyway.
Hi. I can see in line 1281 of class-awca-auth.php that you are enqueuing ‘awca_js’ for ALL admin pages. I would suggest making sure you are only enqueuing the JS file on the admin pages that need it, like the dashboard to improve site performance and reduce conflicts.
Thanks. I will submit a ticket to siteground.
Forum: Plugins
In reply to: [The Events Calendar] Listing 4 most recent 4 events – past and futureHello. I worked out that
'orderby' => 'date',
was the issue. It was ordering by posted date and not event date. I had not added the events in chronological order to the site. I removed that and it fixed the issue.Sorry I forgot to clarify. Yes we are collecting their email and name. Its only their postcode from the address fields that we want. It seems you can only do FULL address or NO address. Not postcode only. Is that correct?
Ok. Thanks for the update.
Forum: Plugins
In reply to: [Yoast SEO] Cannot add multiple Yoast FAQs blocks to pageYes. Thanks. Just updated to 22.8 and its working now.
This is perfect! Thank you.
I was able to use your create a post form and map the custom fields to create the new store post.
Hello. I looked at our WPMU hosting options and got “This setting can’t be changed on the Quantum plan.” What can I do?
Hi Laura
This particular site is hosted with WPMU Dev and we are also using your hummingbird pro plugin. Should I still add that snippet?
Thanks