Title: mealtime's Replies | WordPress.org

---

# mealtime

  [  ](https://wordpress.org/support/users/mealtime/)

 *   [Profile](https://wordpress.org/support/users/mealtime/)
 *   [Topics Started](https://wordpress.org/support/users/mealtime/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mealtime/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mealtime/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mealtime/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mealtime/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mealtime/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Product attribute is not showing in cart](https://wordpress.org/support/topic/product-attribute-is-not-showing-in-cart/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/product-attribute-is-not-showing-in-cart/#post-9270386)
 * Any luck with this? Attributes stopped showing in my cart as well when I upgraded.
   Stripped my installation down to 2016 theme & no other plugins.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Codemirror.js Error – Hides Code](https://wordpress.org/support/topic/codemirrorjs-error-hides-code/)
 *  Thread Starter [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [11 years ago](https://wordpress.org/support/topic/codemirrorjs-error-hides-code/#post-5914773)
 * Yes, changed it! All good now.
 * I had no idea there were themes for the plugin. Thanks for pointing that out.
 * Appreciate the help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Codemirror.js Error – Hides Code](https://wordpress.org/support/topic/codemirrorjs-error-hides-code/)
 *  Thread Starter [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [11 years ago](https://wordpress.org/support/topic/codemirrorjs-error-hides-code/#post-5914771)
 * Hi Shea,
 * Sorry for the delay! I get a lot of traffic & I really would prefer to not change
   the theme, even for a small period of time, so I’d have to setup a mirror site&
   try that. You haven’t come across the problem elsewhere? From others? Thanks 
   for the support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multi Rating] Showing The Different Rating Variables Seperately](https://wordpress.org/support/topic/showing-the-different-rating-variables-seperately/)
 *  Thread Starter [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/showing-the-different-rating-variables-seperately/#post-4443854)
 * Awesome! Glad to hear you like the idea. I’ll look for updates! I think it would
   be particularly valuable for review posts where you’re rating products or doing
   surveys & I haven’t seen any other plugin that does it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Reorder a Drop Down Populated with a Custom Post Type](https://wordpress.org/support/topic/reorder-a-drop-down-populated-with-a-custom-post-type/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/reorder-a-drop-down-populated-with-a-custom-post-type/#post-3989364)
 * Thanks! Will test it out 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Category Order and Taxonomy Terms Order] Parent Items Messing Up Order When Using Get_Terms](https://wordpress.org/support/topic/parent-items-messing-up-order-when-using-get_terms/)
 *  Thread Starter [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/parent-items-messing-up-order-when-using-get_terms/#post-4112218)
 * Thanks! Will test it out.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Category Order and Taxonomy Terms Order] Parent Items Messing Up Order When Using Get_Terms](https://wordpress.org/support/topic/parent-items-messing-up-order-when-using-get_terms/)
 *  Thread Starter [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/parent-items-messing-up-order-when-using-get_terms/#post-4112034)
 * Thanks! Yes, I understand. I’m not too sure about exactly how to implement it
   though. I have to alter the code of a plugin & you’ll see how get_terms is currently
   used. Is there an easy way to add to this or would this need to be re-structured
   to work properly. Thanks so much!
 *     ```
       $taxonomy = get_taxonomy($taxonomy);
                           $choices[] = array('text' => "-- select a {$taxonomy->labels->singular_name} --", 'value' => '');
                       } else {
                           $choices[] = array('text' => $first_choice, 'value' => '');
                       }
                   } else {
                       $terms = get_terms($taxonomy, 'orderby=term_order&hide_empty=0');
                   }
   
                   if ( !array_key_exists("errors",$terms) ) {
                     foreach($terms as $term) {
                         $choices[] = array('value' => $term->term_id, 'text' => $term->name);
                     }
                   }
   
                   return $choices;
               }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Reorder a Drop Down Populated with a Custom Post Type](https://wordpress.org/support/topic/reorder-a-drop-down-populated-with-a-custom-post-type/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/reorder-a-drop-down-populated-with-a-custom-post-type/#post-3989359)
 * Would also like to find this out as the same problem occurs with taxonomies. 
   If you uncheck populate with a taxonomy or post types, the order will be saved,
   but once you check it off again, the order diverts back to being alphabetical.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Custom Taxonomy Ordering](https://wordpress.org/support/topic/taxonomy-order/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/taxonomy-order/#post-3427039)
 * Would also like to find this out! I have parent & child terms & obviously, it
   would be best to have the child terms under the correct parent term. Instead,
   it ends up being a huge long alphabetical list of all the terms. Wonder where
   the piece of code is that’s doing this & what we need to replace it with. Please
   chime in if you think you know or already solved this problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Points Management System For Gamification, Ranks, Badges, and Loyalty Rewards Program - myCred] Manage roles according to the points](https://wordpress.org/support/topic/manage-roles-according-to-the-points/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/manage-roles-according-to-the-points/#post-3984146)
 * Thanks Gabriel!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Points Management System For Gamification, Ranks, Badges, and Loyalty Rewards Program - myCred] Manage roles according to the points](https://wordpress.org/support/topic/manage-roles-according-to-the-points/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/manage-roles-according-to-the-points/#post-3984144)
 * Hi Gabriel, I came across a post recently of someone implementing this solution,
   but I’m not sure what points system it is for as he doesn’t state it. Let me 
   know if this is for myCRED & if not, if the solution would be along the same 
   lines as this. Thanks!
 * Here’s the link:
    [http://wordpress.stackexchange.com/questions/106020/change-user-role-based-on-point-system-issue](http://wordpress.stackexchange.com/questions/106020/change-user-role-based-on-point-system-issue)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor] FEE & Revisionary](https://wordpress.org/support/topic/fee-revisionary/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/fee-revisionary/#post-3335467)
 * Hi Scribu,
 * Any suggestions on getting Revisionary setup with FEE? Have you done it before?
   I have Revisionary working on the backend, but can’t get it to work on the front-
   end. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor] FEE & Revisionary](https://wordpress.org/support/topic/fee-revisionary/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/fee-revisionary/#post-3335464)
 * Hey annakyn, did you ever get Revisionary working with FEE?
 * I figured out how to display revisors (add manage_options & activate_plugins 
   capability), but can’t seem to get FEE to submit edits as revisions. It always
   just changes the front-end.
 * Would love to hear from someone who implemented the two successfully.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Custom Fields Search] [Plugin: WP Custom Fields Search] Not searching custom post types](https://wordpress.org/support/topic/plugin-wp-custom-fields-search-not-searching-custom-post-types/)
 *  [mealtime](https://wordpress.org/support/users/mealtime/)
 * (@mealtime)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/plugin-wp-custom-fields-search-not-searching-custom-post-types/#post-2012449)
 * Same here! Totally kills it. All my custom fields are in custom post types. Someone’s
   got to have a solution for this.
 * Otherwise, this plugin is awesome, but without custom post type compatibility,
   I can’t use it 🙁

Viewing 14 replies - 1 through 14 (of 14 total)