wjramos
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] sort with get_fields() by field orderI came up with a solution for this:
$fields = get_fields(); if( $fields ) { // Reorder based on menu order, rather than id foreach( $fields as $field_name => $value ) { $field = get_field_object($field_name, false, array('load_value' => false)); $menu_order[$field_name] = $field["menu_order"]; } array_multisort($menu_order, SORT_ASC, $fields); }Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] sort with get_fields() by field orderI also could use a method to order get_fields() in relation to the ACF fields ordering
Forum: Plugins
In reply to: [ZipList Recipe Plugin] help hide shortcode in excerpt…I’m not actually seeing the issue on the link you provided, did you already fix it?
This is more of an excerpt issue. By default WP strips out shortcodes from the excerpt, might you have a plugin installed or line in functions.php that alters how excerpts are handled.
Forum: Plugins
In reply to: [Woocommerce Multiple Addresses] State Field Not Pre-PopulatedI am experiencing the same issue – the state field is not filled in when an address is selected at checkout.
Forum: Plugins
In reply to: [List category posts] Show only category name without any posts?Listing categories is not the purpose of this plugin, but rather listing posts from categories.
There’s another plugin from the same author that does that here
Viewing 5 replies - 1 through 5 (of 5 total)