Forum meme/banner general

SowiesoGroyp

nazo nazo
11111
Staff member
Elite rep power
Joined
Nov 30, 2023
Posts
7,663
Rep Power
5,764
this is what it looks like when you upload a logo

it becomes weird and complicated because you need to upload a "2x" logo for it to display on mobile for some reason. (iirc)
so there are two different uploads of the same image that are being displayed at any given time...

Screenshot-2024-04-28-225003.png


i would have to google around to begin to figure out what kind of bullshit is happening under the hood with the templates

maybe if i type a local path with php at the end into the logo url section, it'll directly inject that into a template, but it might just break because it wants an actual image upload and nothing more
 

SowiesoGroyp

nazo nazo
11111
Staff member
Elite rep power
Joined
Nov 30, 2023
Posts
7,663
Rep Power
5,764
IMO if we ever have a rotating logo, we'll probably have to delete the actual "logo" (leaving the section i screenshoted blank) and then manually placing our shit into a different template or module like what i did with the slogans.
 

SowiesoGroyp

nazo nazo
11111
Staff member
Elite rep power
Joined
Nov 30, 2023
Posts
7,663
Rep Power
5,764
the way i did the slogan thing was by abusing the "advertisement" module. xenforo made a thing that overlays on the forum header for people to put ads and i just put that instead. was difficult to get it to appear in the right spot on both desktop and mobile and i had to use chatGPT to help me with the javascript
 

SowiesoGroyp

nazo nazo
11111
Staff member
Elite rep power
Joined
Nov 30, 2023
Posts
7,663
Rep Power
5,764
k im pretty sure basically your entire post is like... actually not applicable to the structure of the forum.
i don't think the logo is pulled from somewhere that simply just says "src="
would be nice if that were the case...
ok i think this is what it actually looks like :eggbird:
Code:
            <div class="p-header-logo p-header-logo--image">
                <a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}">
                    <img src="{{ base_url(property('publicLogoUrl')) }}" srcset="{$srcset}" alt="{$xf.options.boardTitle}"
                        width="{{ property('publicLogoWidth') ?: '' }}" height="{{ property('publicLogoHeight') ?: '' }}" />
                </a>
            </div>
and
Code:
            <div class="p-nav-smallLogo">
                <a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}">
                    <img src="{{ base_url(property('publicLogoUrl')) }}" srcset="{$srcset}" alt="{$xf.options.boardTitle}"
                        width="{{ property('publicLogoWidth') ?: '' }}" height="{{ property('publicLogoHeight') ?: '' }}" />
                </a>
            </div>

but there might be other shit affecting it. these parts are from page_container which has 800 lines
 

Stiff

I 🖤 love
22222
Developer
High rep power
Joined
Apr 20, 2024
Posts
168
Rep Power
499
IMO if we ever have a rotating logo, we'll probably have to delete the actual "logo" (leaving the section i screenshoted blank) and then manually placing our shit into a different template or module like what i did with the slogans.
Probably yes
the way i did the slogan thing was by abusing the "advertisement" module. xenforo made a thing that overlays on the forum header for people to put ads and i just put that instead. was difficult to get it to appear in the right spot on both desktop and mobile and i had to use chatGPT to help me with the javascript
Is there a logo module in the Admin Control Panel? The page I read suggested there should be a way to modify page "appearance" "templates" from the Admin CP.

ok i think this is what it actually looks like :eggbird:
Code:
            <div class="p-header-logo p-header-logo--image">
                <a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}">
                    <img src="{{ base_url(property('publicLogoUrl')) }}" srcset="{$srcset}" alt="{$xf.options.boardTitle}"
                        width="{{ property('publicLogoWidth') ?: '' }}" height="{{ property('publicLogoHeight') ?: '' }}" />
                </a>
            </div>
and
Code:
            <div class="p-nav-smallLogo">
                <a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}">
                    <img src="{{ base_url(property('publicLogoUrl')) }}" srcset="{$srcset}" alt="{$xf.options.boardTitle}"
                        width="{{ property('publicLogoWidth') ?: '' }}" height="{{ property('publicLogoHeight') ?: '' }}" />
                </a>
            </div>

but there might be other shit affecting it. these parts are from page_container which has 800 lines
Based on this I assume that base_url(property('publicLogoUrl')) is the Logo URL you have set in the Logo settings page you showed. If you replace that programatically like in the examples I gave, it should work the way you want.
 

SowiesoGroyp

nazo nazo
11111
Staff member
Elite rep power
Joined
Nov 30, 2023
Posts
7,663
Rep Power
5,764
Probably yes

Is there a logo module in the Admin Control Panel? The page I read suggested there should be a way to modify page "appearance" "templates" from the Admin CP.


Based on this I assume that base_url(property('publicLogoUrl')) is the Logo URL you have set in the Logo settings page you showed. If you replace that programatically like in the examples I gave, it should work the way you want.
the logo upload module is under
Appearance --> Styles --> Winter --> Style properties --> Basic options

i could try replacing that part of the template, but first we'd need $lave to make a folder through filezilla or whatever he uses and then put a bunch of images in there.
 

SowiesoGroyp

nazo nazo
11111
Staff member
Elite rep power
Joined
Nov 30, 2023
Posts
7,663
Rep Power
5,764

i need you to make a cool 3D blocky/retro-pixel type of text with some cool static-y animation like the intro to this video but it says MEM Forum instead of "STAR"

you drained all your money on a computer to dick around in blender and now you have one jerb. @muttonhead
 
Top