Chengmin

Results 10 comments of Chengmin

Hi, @moxdev I created a [PR](https://github.com/wp-graphql/wp-graphql-acf/pull/207) for explicit options on the field group edit panel. You can test it.

Hi @drewbaker, Here is a [PR](https://github.com/studio-freight/lenis/pull/96) for scroll snapping. It emulates scroll snapping by using JavaScript.

@drewbaker By default, `inSameParent` is true for hierarchical and false for non-hierarchical post types.

@drewbaker If site has ACF free version (not Pro version), it generates a fatal error because `acf_add_options_page` function isn't available in free version. I updated code in this PR to...

@drewbaker WP Cron is not reliable and so a lot of sites use server cron https://stackoverflow.com/questions/62188453/how-to-run-cron-job-automatically-without-any-action-in-wordpress

@drewbaker I think this is related to ACF not to fuxt-backend. I think ACF handles CPTs as post not page

Hi Drew, I checked the wp-graphql repository, but there is no recent change with the `orderby` format. Also, I checked both of the code in wp-graphql and fuxt-backend and it...

``` $other_order_ids = $wpdb->get_col( "SELECT id, IF(subscription_transaction_id = '', CONCAT('UNIQUE_SUB_ID_', id), subscription_transaction_id) as unique_sub_id FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . esc_sql( $user_id ) . "' AND status = 'success'...

@andrewlimaza `GROUP BY unique_sub_id` groups orders and we select `id`. But it returns random order id in the group not the latest order id. `ORDER BY id DESC` is not...

@andrewlimaza Any update on this?