louiswalch
Forum Replies Created
-
Forum: Plugins
In reply to: [Breeze Cache] Compression Breaks CSS `calc()`Thanks, looks like it’s fixed.
Forum: Plugins
In reply to: [Contact Form 7] Validation error for Reply-To: [email]Ah! It was required but not email field type. Changed from text and it works. Thanks.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Seamless style no longer hides group titleAkk. Sorry about that, it seems updating ACF fixed it (I was on 5.8.X).
No it does not have any posts assigned, but also ‘Homes’ doesn’t and it appears. If I create another term then ‘Sub Res Test’ will appear and the new one won’t.
I would strongly disagree, there is a large non-Gutenburg community and make developers who are still building or supporting sites with the previous way of editing content in WordPress. I think that the ‘Classic Editor’ plugin has 5+ million installation is proof enough that many people aren’t using Gutenburg.
That fixed it!
Hmm, doesn’t seem to be working. Once updated the toggle appeared, and defaulted to ‘No’ however the buttons still appeared. I’ve tried saving the Field Group and tried enable-save-disable-save and still appears.
Screenshot:
https://www.evernote.com/l/AAh0lCbDaHpH87CxO3xtYyWhf54yNSYBsBI- This reply was modified 6 years, 11 months ago by louiswalch.
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] Poor ImlementationThanks for receiving my post in a positive manner, it was intended to be constructive criticism.
Forum: Plugins
In reply to: [Fancy Admin UI] Customize background color?Totally ignore this, my mistake. I misread the class ‘wpwrap’ as ‘nowrap’ and was targeting incorrectly.
Forum: Plugins
In reply to: [Activity Log - Monitor & Record User Changes] Can I select what to track?I support this request. I’m looking for a way to track certain actions from site members (e.g. purchase, submit form). Don’t care about admin/editor actions and they’ll just clutter the logs.
Forum: Plugins
In reply to: [WP Popular Posts] Conflict with Yoast SEOHello, this error is also impacting me and it’s a very large problem. Can I please get the updated code? I’m not seeing anything on WordPress site or the GitHub repo. Thanks so much.
Apologies, it was a conflict with another custom ACF field.
Forum: Plugins
In reply to: [WooCommerce] Shipping address not saving to orderI had made some minor changes to the
form-checkout.phpandform-shipping.phpfiles in checkout but didn’t make any changes to the input field name, so I didn’t think that could be the problem.Turns out, it WAS an issue in one of the customized templates. I was copying the field’s label value into placeholder and then unsetting it to clean up the form a bit. This was the cause of the issue, I guess Woo needs every field to have a label? I added the placeholder through
woocommerce_form_field_argsinstead and hid the label through CSS instead.Thanks for the help.
if (!empty($field['label'])) { $field['placeholder'] = $field['label']; unset($field['label']); }- This reply was modified 9 years, 2 months ago by louiswalch.
Forum: Plugins
In reply to: [WooCommerce] Improved backend experience?@eccola-www
You’re right, and that is what I have been using. But if you think about WooCommerce in comparison to it’s competitors, WooCommerce feels very disjointed.@riaanknoetze
I stumbled upon that the other day but haven’t tied it yet. There are a couple things that deter me from using it.Firstly, it doesn’t look “WordPress-y”. This is a big turn off to me because the solution built needs to look like a complete solution, not that it was cobbled together from a bunch of different places.
Secondly, it’s just plain weird that you search for “Anything” from a single page. Again, if you compare this to the backend of pretty much any ecommerce solution – you should be able to view a listing of all members, click select a member, and right there see all their orders along with status, as well as any CRM tie-ins.
As a temporary quick fix, I added a box to the top of the user which links to a the WooCommerce Orders page pre-filtered.
add_action( 'user_edit_form_tag', function() { global $user_id; // This action is called as a HTML attribute. Make sure to close the form tag. echo '>' .'<div style="margin-top: 20px; margin-bottom: 20px; border: 2px solid #ccc; padding: 20px;">' .'<a style="text-decoration: none; font-weight: bold;" href="/wp-admin/edit.php?post_status=all&post_type=shop_order&_customer_user=' . $user_id . '">' .'View all customer orders ➡ ' .'</a>' .'</div>'; // Now because of the closing tag on the page, we need to open an element and let that' close it. echo '<div></div'; });User management/profiles in WordPress are seriously lacking and need some attention.
Forum: Plugins
In reply to: [WooCommerce] Shared product options, price the option by yard?Hi @lorro, wondering if you have any other ideas?