philbee
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Query Loop] Query Attachments?Please excuse my barging in here, but this is a subject I wanted to ask about too, and I’m happy to see that it might be possible to use AQL to query and display attachments.
I’ve tried adding a taxonomy term from the media folder plugin we’re using to get AQL to only display attachments, not posts, but so far no success.
AQL does show the taxonomy (“Folder” which is correctly used as “happyfiles_category” in the Query) in the Taxonomy Query Builder, and also shows the correct Term, but the query displays as empty with the operator IN, or random with the operator “EXISTS”.Forum: Plugins
In reply to: [SQLite Object Cache] Disabling SQLite -> WooCommerce forgets variationsHa, cool for you to find the source of the bug.
While turning Object Cache off probably is not a common scenario, relying completely on it not happening seems like… a bit adventurous from the WooCommerce team.
Forum: Plugins
In reply to: [SQLite Object Cache] Disabling SQLite -> WooCommerce forgets variationsHi Ollie,
thanks a lot for the feedback (and your extremely cool plugin)!
The plugin that really really didn’t like SQLite was this one. I suspect they’re doing crazy stuff with metadata and taxonomies when saving their modified WooCommerce attributes; I also suspect from experience that it’s not quite as solidly programmed as one would hope for.
I currently don’t have easy access to a real server with Redis, but I might try to see what happens on my local MAMP Pro – I usually don’t use it as I had not-so-good experiences with Redis on spinupwp-based servers.Forum: Plugins
In reply to: [Create Block Theme] Switch child theme to standaloneHi Sarah,
thanks a lot for the heads-up (and the brilliant plugin)!
I’ve been trying to use Create Block Theme’s “save changes to theme” and “save as blank theme” options, but currently this does not save much beyond custom fonts – any changes to Theme colors, Theme Layout options or Theme font sizes are not saved to the theme.json file and thus reset when saving; guess I’ll just continue to change these settings using a text editor.
As to saving a Block Canvas child theme into stand-alone, I’ve started back-porting pieces of theme.json, style.css and function.php, so far successfully I think.
Thanks, PhilForum: Plugins
In reply to: [FV Player 8] Undefined array key “link”Also, we noticed that FV Player 8 messes with the layout of masonry galleries created in Meow Gallery just by being enabled (no video embedded on posts with galleries).
Forum: Plugins
In reply to: [FV Player 8] Plugin changes unrelated contentHi Martin,
thanks a lot for the heads-up!
Pretty likely this setting is indeed what created the issue – I’ll try it out at a later date, as right now is an especially bad time for the page to not work correctly (which is why I overreacted a bit to the error).
Best, Phil
Forum: Plugins
In reply to: [Advanced Query Loop] Breaking Meta Query valuesFound the culprit: the plugin FV Player 8 apparently filters the way content is saved to the DB, even when its just activated but not in use on any page or post.
Forum: Plugins
In reply to: [Advanced Query Loop] Another try to exclude past eventsI’m using “>=” for “today or in the future”… however just yesterday I forgot to hit the Enter key to actually fill the Meta Key field multiple times, and was stumped as to why it didn’t work. Maybe check if the ACF Meta field name you want to use is actually displayed as a grey block in AQLs Meta Key?
Forum: Plugins
In reply to: [Advanced Query Loop] Output ACF fieldAQL only handles the loop itself, like WP’s own Query Loop block – you’ll have to create your own ACF Blocks if the output has to be formatted in specific ways. Or you can use the Meta Field block, which also works well.
- This reply was modified 9 months, 1 week ago by philbee. Reason: clarified text
Forum: Plugins
In reply to: [Add to Calendar Button] adding startTime to shortcode = button invisibleFound it, and it’s quite obvious once seen: there needs to be an endTime defined as well. Guess ICS calendar entries don’t react too well if there isn’t.
Forum: Plugins
In reply to: [Advanced Query Loop] WooCommerce Featured productNote: we’re now using WooCommerce blocks – overriding their CSS. Not an elegant solution, IMHO, but probably better than having all queries break when/if WooCommerce starts to become incompatible with standard WP Queries, as they keep hinting they eventually will.
Had the same problem here – Reset everything fixed it.
Enabling Restrict block visibility controls to selected user roles again crashed the editor for any user except myself, even when they have Admin role (!).Forum: Plugins
In reply to: [Meta Field Block] different ACF date display formatPerfect, thanks!
A small observation: I had to usestrtotime( $raw_value )in order for PHP to be able to parse the date correctly, as meta_field_block_get_acf_field > $block_content gets the ACF-formatted output.Same error with a custom block Theme (child theme of Automattic’s Block Canvas) with custom fonts defined in theme.json.
I simply commented out line 28 in ~/woocommerce/src/Internal/ComingSoon/ComingSoonRequestHandler.php and so far haven’t noticed anything missing; I think it’s something to do with WooCommerce’s more and more insistent handholding, as the function checks for if ( ! Features::is_enabled( ‘launch-your-store’ ) ) {Forum: Plugins
In reply to: [Advanced Query Loop] Oder by Name (slug)Very very cool, thanks a lot Ryan!