[OzzModz] Daily Doodle Alternating Logo

[OzzModz] Daily Doodle Alternating Logo 2.0.5

No permission to download
This addon causes the error
Line 1136: syntax error - template modifications: public: PAGE_CONTAINER
when I update the Dimension Dark Style.
Does somebody has any idea?
 
This is not working on 2.3 . I use this a lot, if this isn't going to be updated does anyone know of a similar addon?
 
XF v2.3.4
just downloaded latest daily doodle add on.
the mouse over text works, but i can't for the life of me get the image to change.
i am using a modified version of the default style, so in short, where do i put the images, and what do i then put in the second column of the array?
i have put the images in several places, with direct links and relative links, in so many different combinations tried, my head is spinning.
at present, the line in question (one so far) looks like this:
Code:
12-05 ~ 12-25 | data/assets/logo_default/Bear_logo_xmas.png | Merry Christmas!
the file system path to that folder where the image is: /var/www/html/community/data/assets/logo_default

Thanks in advance for any help :)
 
had to change the PAGE_CONTAINER section to the following:
Code:
<a href="{{ ($xf.options.logoLink && $xf.homePageUrl) ? $xf.homePageUrl : link('index') }}">
    <img src="{{ base_url(property('publicLogoUrl')) }}"
        alt="{$xf.options.boardTitle}"
         width="{{ property('publicLogoWidth') }}"
         height="{{ property('publicLogoHeight') }}"
        {{ property('publicLogoUrl2x') ? 'srcset="' . base_url(property('publicLogoUrl2x')) . ' 2x"' : '' }} />
</a>
similar to previous instructions, but i added width and height. otherwise the image was too small to notice the image had changed.
 
Back
Top Bottom