Through chat help on wordpress.com site, they helped me hide the footer and hide the navigation from the event page. Turns out, I found an even better solution by going to the Registration plugin in:
–Selecting form in the tab navigation
–In the “General Registration Options” look for “Form Location” I chose “short code or Gutenberg block”
–NOW when I create an EVENT I add a block and select Registration Block
———I think I was suppose to do this from the beginning————–
–I also selected to display a “Register” button, the user must click button to display pop-register window.
Hide the footer:
/* hide footer | 23870003-hc bk */
.site-footer {
display: none;
}
Hide the navigation from the event (shows up after the event)
/* hide naviation after event */
.tribe-events-sub-nav { display: none }
-
This reply was modified 4 years, 2 months ago by ahausmann.