Title: Wilco's Replies | WordPress.org

---

# Wilco

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Gutenberg] Gutenberg is GARBAGE !](https://wordpress.org/support/topic/gutenberg-is-garbage/)
 *  [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/gutenberg-is-garbage/#post-10817914)
 * Installing a plugin to fix the core seems wrong to me
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paytium: Mollie payment forms & donations] Load shortcode with Ajax](https://wordpress.org/support/topic/load-shortcode-with-ajax/)
 *  Thread Starter [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/load-shortcode-with-ajax/#post-9569666)
 * I will try to re-enqueueu it on ajax.
 * Let me explain what i’m trying to achieve here:
    I have a coupon/discount form
   on the same page as the paytium button. This coupon gets checked with ajax > 
   php and if its correct I update a custom field with the new price. If its correct
   I also want to make an ajax call to refresh the paytium button to give the new
   price.
 * Everything works fine and the price gets updated. Except when I refresh the paytium
   button.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-SCSS] Doesn’t work for me](https://wordpress.org/support/topic/doesnt-work-for-me-135/)
 *  [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/doesnt-work-for-me-135/#post-9434590)
 * Try to put this in your functions.php
    `define('WP_SCSS_ALWAYS_RECOMPILE', true);`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-SCSS] Doesn’t work for me](https://wordpress.org/support/topic/doesnt-work-for-me-135/)
 *  [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/doesnt-work-for-me-135/#post-9434521)
 * The scss and css location should be paths to a folder. the plugin will create
   the css files for you.
 * so you probably want to create a folder called “css” in your theme and put the
   following as CSS Location: “/css/”
 * Good luck
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF: Better Search] Capability](https://wordpress.org/support/topic/capability-4/)
 *  Thread Starter [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/capability-4/#post-9286297)
 * Thank you for your reply!
 * Oh, that’s a shame.
    I’ll think of something else then.
 * Wilco
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flamingo] Rename Menu item](https://wordpress.org/support/topic/rename-menu-item/)
 *  [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [9 years ago](https://wordpress.org/support/topic/rename-menu-item/#post-9143988)
 * I found a solution for this problem.
    You can put this function in your functions.
   php
 *     ```
       if (!function_exists('debug_admin_menus')):
       function debug_admin_menus() {
           global $submenu, $menu, $pagenow;
           if ( current_user_can('manage_options') ) { // ONLY DO THIS FOR ADMIN
               if( $pagenow == 'index.php' ) {  // PRINTS ON DASHBOARD
                   echo '<pre>'; print_r( $menu ); echo '</pre>'; // TOP LEVEL MENUS
                   echo '<pre>'; print_r( $submenu ); echo '</pre>'; // SUBMENUS
               }
           }
       }
       add_action( 'admin_notices', 'debug_admin_menus' );
       endif;
       ```
   
 * This displays the complete wordpress admin menu on your dashboard for admin only.
   
   You scroll down in this list (which looks like this [https://postimg.org/image/az7bpv8mh/](https://postimg.org/image/az7bpv8mh/))
   until you see Flamingo. in my case its number 26. you head back to functions.
   php and paste this function:
 *     ```
       function menu_page_removal() {
   
           global $menu;
   
           // Rename flamingo into Submissions
           $menu[26][0] = __('Submissions','textdomain');
   
       }
       add_action( 'admin_menu', 'menu_page_removal' , 999);
       ```
   
 * Save your functions and take a look in your dashboard.
    Flamingo should be renamed
   to Submissions.
 * If everything works correct you can remove the first function `debug_admin_menus`,
   since its only for debugging.
    This works for most other menu items as well
 * Good luck
    -  This reply was modified 9 years ago by [Wilco](https://wordpress.org/support/users/wilcodeveloper/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flamingo] Export Meta data post_title](https://wordpress.org/support/topic/export-meta-data-post_title/)
 *  [Wilco](https://wordpress.org/support/users/wilcodeveloper/)
 * (@wilcodeveloper)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/export-meta-data-post_title/#post-9060253)
 * I have the same question.

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