katmacau
Forum Replies Created
-
Yes, I can see its this line from your stylesheet that causes the issue. Eg on the plugin names on the plugins page:
b, strong {
font-weight: bolder;
}Following for when you fix this.
Forum: Plugins
In reply to: [Redirection] Redirects working but testing tool gives 403 errorThanks for the prompt response. It the redirect testing is via redirect.li (external) to our site then that would make sense. Thanks! Will follow up on cloudflare end.
That did not work sorry. I added that but didnt make a difference. I would like to have all js optimising on the checkout and cart pages disabled ideally.
Thank you. Thank makes sense now.
Also I noticed that if I just use the quantity selector on the product page to set it to 2 products, then use the woocommerce add to cart, it also does not apply the discount.
How I was hoping your product would work is that if they added 2 of the product to the cart that the discount would auto apply. they would not have to use your widget as the only way to get the discount.
Forum: Plugins
In reply to: [CAOS | Host Google Analytics Locally] How to use with WP consent pluginThank you!
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Banner only shows an accept optionOk so please confirm if this is correct…
If they press accept it dismisses the message and they continue using cookies on the site.
If they dont want to accept they have to click the cookie policy link under the accept button. This will take them to the page with cookie auto generated content. They then scroll down to the consent segment and work out that they can check / uncheck the different types of cookies there.
Sorry, but that doesnt seem very intuitive. Most cookie banners show an accept or reject option both on the banner. Can I not show the reject button on the banner? Is that an option with your plugin?
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Banner only shows an accept optionThanks Antonio. The explanation is really helpful.
One region will work as we can work with out-out model. However when I see the cookie banner all I see is the “accept” button. I dont see an option to opt-out / withdraw consent etc. Only accept. And you can’t change accept once you accept. Do I have a setting incorrect?
https://snipboard.io/KcEBDu.jpgForum: Plugins
In reply to: [Breeze Cache] Auto clearing cache after updating a custom post typeThats great. Thanks.
The option to show the clear cache when viewing the front end via the admin bar would be great feature for the future too.I see. I had missed that yellow note on the form. We only worked it out when customers registrations stopped working. I’ve enabled allow new registrations setting and it fixed the issue. But I had to add some custom code so people could only register on the front end via that form and not the default wordpress method to create a new account.
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.