Missing filter for that.
You copy and modify the ezg_subfolders() to your theme functions.php, just swap out to your custom subfolders listing function.
// Own subfolders list
function my_ezg_subfolders_swap( $columns ) {
remove_action('eazyest_gallery_after_folder_content','ezg_subfolders', 5);
add_action('eazyest_gallery_before_folder_content','my_ezg_subfolders', 6);
}
add_action('eazyest_gallery_before_folder_content','my_ezg_subfolders_swap', 1);
/**
* Eazyest_Frontend::subfolders()
* Echo subfolders listing for galleryfolder
*/
function my_ezg_subfolders( $post_id = 0, $page = 1 ) {
...
}
Hi klihelp, thanks for the help with this but can not get it to work for me. I have copied the Frontend::subfolders to my child-theme and added the above functions to my function list but nothing happens. Have I done this/understood you correctly?
sandgropher.
Sandra, the code above were just starting point, the main function body needs to be written. How did you resolve it.