Pro Sites loses pricing tables if page set as homepage

Hi Guys,

I have my pro site set as my bookings, so if I want to view the pricing table I can, by viewing MYSITE.com/my-bookings

However if I change this page in settings to be the home page, I no longer see the pricing tables.

Also, I have a H2 with ‘Change your plan’ showing. I have tried to hide with css, but cant. I dont want that or the ‘Your Current Plan’, if logged in, showing. I have been trying to find in settings with no luck.

If someone can help , would be greatly appreciated

I am using wp 4.4, installed as multi, and the latest download of plugins.

Thanks

Mike

  • Luís Lopes
    • QA

    Hi @bizetools,

    I hope had been good today!

    I not sure, but as the “Pro site” page is a dynamically created, it not worked if is set as a static page. I contacted the developer, so he can enlighten me.

    However, a simple redirection can work for you? I.E when a user opens the home page, it redirects to the “Pro site” page? If yes, add this code to your theme functions.php:

    function prosites_redirect_homepage() {
    if ( is_home() ) {
    wp_redirect(home_url('/pro-site'));
    exit();
    }
    }
    add_action( 'template_redirect', 'prosites_redirect_homepage' );

    Also, I have a H2 with ‘Change your plan’ showing. I have tried to hide with css, but cant. I dont want that or the ‘Your Current Plan’, if logged in, showing. I have been trying to find in settings with no luck.

    I checked your website and seems you already hid the “Change your plan” text. Have you done it to “Your Current Plan” text too? If not, can you give us access to your admin panel, so we can check your issue?

    If you don’t already know, please, follow the link below, to see how enable the staff login:

    https://wpmudev.com/manuals/wpmu-dev-dashboard-enabling-staff-login/

    When you enable this option, please post again!

    Cheers, Luís