Recent content by King Fox

  1. K

    XF 2.1 Bridging Forums

    Hi, Not quite sure if this is the correct board to be posting, but I've got a few questions in regards to bridging Xenforo. I've bridged Xenforo in the past during the v1.5 days, however, I'm unsure as to what the new file conversions are in 2.1.x. Here is some of the relevant code from my v1.5...
  2. K

    XF 2.0 What is this component called?

    in admin panel click setup > public navigation then you can turn off certain sections.
  3. K

    XF 2.0 What is this component called?

    depends what you are trying to modify if you are trying to remove / add in navigation settings
  4. K

    XF 2.0 How to Create a Home page?

    click on forums in admin tab then press nodes -> add node ->node type "page" -> fill in info as normal -> add something like this into html section <xf:h1 hidden="true" /> <xf:widget key="home_portal"/> <xf:widget key="Poll" position="sidebar"/> <xf:widget key="forum_overview_new_posts"...
  5. K

    XF 2.0 How can I make the header background (and logo) disappear after login?

    Search for <header class="p-header" id="header"> in Page_Container. Add this before: <xf:if is="!$xf.visitor.user_id"> Add this after the final div for the header class. </xf:if>
  6. K

    XF 1.5 Scrolled Background

    background-image: url(".............."); background-position: center; background-repeat: no-repeat; background-size: cover; that'll solve one of your problems.
  7. K

    XF 2.0 Navbar going past page limit

    Hey guys I was wondering how i'd be able to prevent my navbar going past the page limit once it goes less then it's set length in px. (It's currently set at 1,200PX and set to change nav type at 1210px which it does however the bar it changes it to goes past the page limit.
  8. K

    XF 2.0 Add search box on sidebar

    how'd you manage ? I managed to get this into sidebar
  9. K

    How to add a Custom Group Badge / Banner to User Info

    If anyone is interested i just recently made these. Similar concept.
  10. K

    XF 2.0 How do i make widget change for visitors and members

    <xf:if is="$xf.visitor.user_id"> "widget code in here" </xf:if>
  11. K

    XF 2.0 How do i make widget change for visitors and members

    Hey everyone. So I was just messing around with some ideas of code and was wondering how do i make my sidebar widget work properly. At the moment if a visitor is on the website it shows the same as if a member was logged in. So in essence I want it to show login / register for the visitor and...
Top Bottom