Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Warford Designs

    (@warford-designs)

    I seem to have fixed my own issue, thanks to your great documentation on Github. I have tweaked my code and now all functionality is working as it should be. In case this will help others I have added the code that I ended up using, this allows me to whitelist both a specific page as well as other pages which utilize query strings which is exactly what I was needing. ?? Thanks again for a great contribution.

    Here is the code I used in the end.

    function my_forcelogin_whitelist( $whitelist ) {
      $whitelist[] = site_url( '/member-verification/' );
      $whitelist[] = site_url( '/member-registration/' );
      $whitelist[] = site_url( '/account-confirmation/?' . $_SERVER['QUERY_STRING'] );
      $whitelist[] = site_url( '/account-confirmation.php?' . $_SERVER['QUERY_STRING'] );
      return $whitelist;
    }
    add_filter('v_forcelogin_whitelist', 'my_forcelogin_whitelist', 10, 1);

    I too would like to know how to display the full calendar for a specific category. Is this possible within the shortcode?

    Thread Starter Warford Designs

    (@warford-designs)

    the issue is I am not able to activate the plugin through the plugin admin page within the Dashboard. Is there another way possibly with a script added to wp-config, the theme functions file, or something along those lines? Currently at your mercy ?? Thanks for the prompt response ??

    Thread Starter Warford Designs

    (@warford-designs)

    Hi There, I do not have this option within my Theme Options unfortunatly, the weirtd part is I am using this plugin on another site and the titles are showing, I have looked at the settings for both wordpress installs regarding the plugin configuration and they are both the same yet one shows the titles and the other doesn’t. This is the last element I need to address to get this site live. Any insight would be gratefully appreciated. Thank you for your assistance and I will be awaiting your reply.

    Thread Starter Warford Designs

    (@warford-designs)

    What I am trying to do is place my post category members area in to my members area page. In order for all posts I send to that category to show up in the members area. the issue would be simple with the page2cat plugin if the members area was not a private page.

    I have the site live but in the back end, if you want a better understanding.

    https://www.warford-designs.com/durhamswebdesigner/

    I am not sure if what you mentioned would work as I have not delved into loops. I will be awaiting your replies.

Viewing 5 replies - 1 through 5 (of 5 total)