Johan Benjaminsson
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] Memory exhaustedI “solved” it by removing “approved” from the get_valid_statuses array in new-user-approve.php. Listing all the members in admin was probably the culprit for me.
Forum: Plugins
In reply to: [New User Approve] Memory exhaustedMy guess is that it is the 4000 members already in the DB that made it choke. Because when i try it on a fresh DB but equal setup it works fine.
Is there a way to make the plugin process the members in chunks? Or some other way around it?
Is this still in the pipeline?
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Description FieldRafinkarki! Look at the walker class in /wp-includes/nav-menu-template.php. You could do something like this.
if ( ! class_exists( 'My_Awesome_Walker' ) ) : class My_Awesome_Walker extends Walker_Nav_Menu { function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) // ... if ( !empty( $item->description ) ) { $item_output .= '<span class="sub">' . esc_attr( $item->description ) . '</span>'; } // ... } }
And call the menu like this:
wp_nav_menu( array( // ... 'walker' => new My_Awesome_Walker(), // ... ));
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Get image in the walkerThanks! I removed the filter
global $menu_image; remove_filter( 'walker_nav_menu_start_el', array( $menu_image, 'menu_image_nav_menu_item_filter') );
And looked on your code how you inserted the image. Worked perfectly, thanks!
Forum: Plugins
In reply to: [Manual Image Crop] Many PHP errors!I’m getting these errors too. Is this in the pipe on being fixed?
Forum: Plugins
In reply to: [Contact Form DB] Export for ExcelThanks but for some reason neither me or my client gets that question. When googling i see others getting that little wizard too.
Is it possible for the exported file to have this line at the top?
sep=,
That seem to solve it. Found in this thread.Forum: Plugins
In reply to: [Easy Foundation Shortcode] Will this be updated now Foundation 6 is out?Is this even possible? Isn’t v6 pretty different conceptually? (Would love it to work with 6 too though ?? )
I got the same issue and same solution. Would be great to be able to save my settings.
Forum: Plugins
In reply to: [Media Category Library] Plugin errorYes, a bit irritating :S
Forum: Plugins
In reply to: Searching for a plugin to prevent duplicate image uploads+1
Updated and everything works again. Thanks!
I wrote/FTP:d over the 1.6.6 folder with 1.6.5.1 and got it to work again. Thanks!
Is there a way to revert back to 1.6.5.1?