herchen
Forum Replies Created
-
I’m so glad you found it useful! Honored to be included in your distribution!
Forum: Reviews
In reply to: [Admin Menu Search] Must Have !!!Glad you love it!!
Forum: Plugins
In reply to: [Admin Menu Search] Feature RequestsI’m glad you like it! These are both fantastic ideas. I tested out Ctrl+K on my PC with Chrome and it jumped to the address bar for a Google Search. I don’t want to conflict with that so how about Ctrl+M?
I tested it out and that is a pretty simple change.Arrow key navigation is proving to be more complex. I have it triggerring mouseover when you hold Control and press the down arrow. But it’s quite slugish and sometimes doesn’t work. I might apply the specific css rules needed for the flyout instead of relying on mousovers.
I’ll try to work on the arrow key navigation if I have time, but if you like Ctrl+M for the shortcut key to the field I can commit that change. Let me know.
Forum: Plugins
In reply to: [Admin Menu Search] Does not work for nested menusIt will remove the parent menu if a child menu item does not exist, but it does not open the child menu.
https://i.imgur.com/N21rZvE.png
In the above example, “export” is an option beneath each of these parent menus.
So it trims down all menus that don’t include the search value.
Forum: Plugins
In reply to: [Admin Menu Search] Does not work for nested menusWhat plugin are you using to create the nested menu?
Thank You!
Forum: Plugins
In reply to: [Admin Menu Search] Icons disappearOh my, sorry for the trouble! Is this still happening? What version of WP and the plugin are you using? Mind if I have a Contributor login to your site so I can see it?
Thank You!
Forum: Plugins
In reply to: [Admin Menu Search] Forgot to remove debugger line in JSDoh. I’ll post the update when I commit the Chrome Autofill changes.
Thank You!
Forum: Plugins
In reply to: [Admin Menu Search] Chrome wants to insert stored usernameWow, great find! I’ve confirmed behavior on the UpdraftPlus settings page also. That plugin page has a password field (click Migrate/Clone, Create a temporary clone) so Chrome tries to put the saved username in the admin menu search box.
To prevent issues with plugins that might have a “username” field, I’ve changed the input field to a textarea and styled it appropriately. Using a hidden input does work, (thanks @suigintou ) but in case another plugin has a “username” this hopefully won’t cause a problem there.
I’m going to use the updated version for a day or so and make sure there aren’t any other issues.
Thanks for posting the bug and I’m glad you like the plugin!
The plugin file idee mentioned solves the hierarchy problem and also lets you see all of your Product Categories in one list instead of having to page through. Thank you idee, and thank you Sergey Biryukov!
Forum: Plugins
In reply to: [Admin Menu Search] NoticeThe wp_enqueue_script function is now being called in admin_enqueue_scripts, so that notice is no longer displaying.
Thank You!
Forum: Plugins
In reply to: [Admin Menu Search] NoticeYes, I will update this ASAP.
Forum: Plugins
In reply to: [Admin Menu Search] Multi-site support?Yes, the Admin Menu is the same on all sites within a WordPress Multi Site environment, so the filter is usable on Multi Site too.
Thank You!
- This reply was modified 5 years, 3 months ago by herchen.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce – Order History Paginationb0n4r, I had the same problem with the previous and first page link not working correctly.
Fixed by changing the pagination type to array, manipulated the array based on page num, then echo the output manually.
So my change was:
<div class="pagination"> <?php $args = array( 'base' => '%_%', 'format' => '?page=%#%', 'total' => $total_pages, 'current' => $paged, 'show_all' => True, 'end_size' => 1, 'mid_size' => 5, 'prev_next' => True, 'prev_text' => __('? Previous'), 'next_text' => __('Next ?'), 'type' => 'array', 'add_args' => False, 'add_fragment' => '' ); $olinks = paginate_links($args); if($paged>1){ $olinks[1] = "<a class='page-numbers' href='" . get_permalink( get_option('woocommerce_myaccount_page_id') ) . "'>1</a>"; } if($paged==2){ $olinks[0] = "<a class='prev page-numbers' href='" . get_permalink( get_option('woocommerce_myaccount_page_id') ) . "''>Previous</a>"; } foreach( $olinks as $olink){ echo $olink . " "; } ?> </div>
Forum: Plugins
In reply to: [Video Central for WordPress] Carousel ShortcodeAHA! Took a peek at Shortcodes.php and found
‘video-central-slider-grid’ => array( $this, ‘video_slider_grid’ ), // Video Player shortcode
Did the trick quite nicely.
Thank You!
Forum: Plugins
In reply to: [WooCommerce] Change Woocommerce Sort By TextThis is absolutely the best way to do this. Do not modify system files because those files may be modified when future versions of plugins are updated.
I just used this on a client site and it works perfectly.