how can i swap the tabs when using [flickr-gallery] so that photoset is the default not photostream? or even remove the photostream altogether? i tried to modify the code that gets rid of "most interesting" but that did not work.
thank you!
how can i swap the tabs when using [flickr-gallery] so that photoset is the default not photostream? or even remove the photostream altogether? i tried to modify the code that gets rid of "most interesting" but that did not work.
thank you!
When you put in the code to remove "most interesting" did it remove that tab? Where are you placing this code? Could you post what you were trying to add either to this forum or to pastebin?
I placed this code in the functions.php file of my theme. If you dont have this file just create it.
add_filter('flickr_gallery_tabs', 'flickr_gallery_remove_tab');
function flickr_gallery_remove_tab($tabs) {
unset($tabs[0]);
unset($tabs[2]);
return $tabs;
}
Play around with $tabs[0] and $tabs[2] to show or hide the tabs.
Hope this help.
This topic has been closed to new replies.