Posts by Lunchbird

    Hey all, would really appreciate a sanity check.


    I'm using the blog app; and I'm checking whether two post fields are filled out like so:

    Code
    1. <perch:if exists="yt-video OR image-3">
    2.     CODE
    3. </perch:if>

    This does not work.


    Checking each individually like so does work.

    Code
    1. <perch:if exists="yt-video">
    2.     CODE
    3. </perch:if>
    4. <perch:if exists="image-3">
    5.     CODE
    6. </perch:if>

    Debug shows nothing that can help me.


    Can anyone explain what I'm doing wrong?

    Hey all,


    I've come across an issue when calling for the metadata of my article:

    Even though I've disabled SSL in my perch config, URLs are pulled with a "https" even though the website is not SSL secured.

    This breaks the metadata functionality as the URLs are incorrect.


    Specifically this occurs in "meta_head.html", a master template of the blog app. Where it requests for <perch:blog id="postURL" type="hidden" />"


    How do I resolve this?

    Hey all, I would appreciate if I could get some help on this.


    My client needs to use the perch blog addon with Greek titles. In my local dev environment, perch(?) would convert the slug into the english equivalent of the characters. Like so:


    However when using Stellar by Namecheap to host the website, the slug is not turned into english characters, resulting in this:


    The Slug keeps whatever characters are English, and dumps the rest.


    Can someone help me please?