Adding footer to Splash
What is the correct way to add the site footer to the splash screen.
I tried __footer__ but it didn't replace it.
Thanks 😎👍
-
-
-
- · Wise
-
·
In reply to LeonidS
- ·
This includes headers, hidemenus, etc... I just want to include the standard footer so terms / privacy / copyright are on splash as well.
If this was overlooked, I'm sure its easy to implement. 😁
-
-
·
LeonidS
-
·
In reply to Wise
- ·
You may hide the menu part using the RAW block with the CSS code and make it visible only to the guests. Or you may copy the HTML block with the footer menu and insert it directly to the splash code. Both variants are better than to edit the PHP code for the __footer__ var's processing :-)
-
·
LeonidS
-
- · Wise
- ·
Yup, that worked perfectly.
Anyone wanting their site footer on their splash screen, paste this at very bottom.
<div id="bx-footer-wrapper"> <div class="bx-def-page-width mx-auto px-3 md:px-4 lg:px-6 box-border"> <div id="bx-footer" class="bx-footer"> <div class="bx-footer-cnt mb-4"> <bx_injection:injection_footer_before /> <div id="bx-menu-bottom"> <bx_menu:sys_footer /> </div> <bx_injection:injection_footer_after /> </div> </div> </div> </div>
It will work 😁👍
Thanks @LeonidS for the idea.
-
-
-
- · PetsNexxt
- ·
Thanks for your quick reply. The default behavior is that you still see the top navigation bar when you click „Log in“, even if you're not logged in. Is it possible to hide it altogether and only make it visible once you're registered and logged in?
-
If you made it via the RAW / HTML block then you may drop the Unauthenticated users from the Visibility list of this block.