• Hello,

    I am a French professional photographer and sell pictures on my website since few years.

    I already have tested a lot of wordpress solutions and plugins, free and paying, to do it.

    Feed Them Gallery plugin is a good plugin to do this, but there’s some negative points.

    I have discovered an issue with Polylang extension and opened a premium support ticket, but there’s no answer since weeks.

    It’s like the premium support has stopped to work !

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author slickremix

    (@slickremix)

    Thanks using our plugins and taking the time to leave an extensive review.

    We do plan on making an update here that will make it so the /ftg-gallery/ page can be redirected because I can see how that is not helpful when trying to password protect a different page you have placed our shortcode on.

    We’ll be adding this in our next update however if you want to apply it before that happens simply open up your themes function.php file and add this to the top.

    add_action( 'template_redirect', 'ftg_gallery_redirect_post' );
    function ftg_gallery_redirect_post() {
        $queried_post_type = get_query_var('post_type');
        if ( 'ftg-gallery' ==  $queried_post_type ) {
            wp_redirect( home_url(), 301 );
            exit;
        }
    }

    This will redirect the /ftg-gallery/ custom post type to the home page. I double checked and the gallery shortcodes will still work on your protected galleries too.

    Plugin Author slickremix

    (@slickremix)

    We have now added this option into the plugin so you can redirect ftg-gallery pages and or add a custom URL too.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Good plugin at a correct price but must pay more for password protection’ is closed to new replies.