Forums

[Plugin: Flickr Gallery] default tab photoset not photostream? (3 posts)

  1. nowms
    Member
    Posted 3 years ago #

    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!

  2. DanCoulter
    Member
    Posted 3 years ago #

    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?

  3. dogdayfear
    Member
    Posted 3 years ago #

    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.

Topic Closed

This topic has been closed to new replies.

About this Topic