Site logo

[Resolved] Problem with settings

Home Forums Support [Resolved] Problem with settings

Home Forums Support Problem with settings

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #2102567
    Royal Rangers

    I have a GP on three sites and they have same settings. But it doesn’t work on one site:

    Sticky sidebar doesn´t work. I use this code:

    @media (min-width: 769px) {
    #right-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    margin-top: 0px;
    }
    }

    https://ctrlv.cz/OLWU

    Secondary menu doesn’t work. I use default theme settings but secondary menu I view only on frontpage.
    https://ctrlv.cz/YfJy

    In posts doesn´t work social icons. On pages are working. This is same block in footer.
    https://ctrlv.cz/ZbDg

    This settings working on two websites.

    #2102678
    David
    Staff
    Customer Support

    Hi there,

    your site is behind a mainentance mode and the URL you provided doesn’t bypass that.

    #2102715
    Royal Rangers

    Sorry. Site is online now.

    #2102910
    David
    Staff
    Customer Support

    Do you have any server side caches or optimizations running ? As some content is loading very late

    #2102942
    Royal Rangers

    I think no

    #2102953
    David
    Staff
    Customer Support

    You should ask your host if there are any issues with the site database or the server as there is definitely something wrong with the way its loading.

    #2102958
    Royal Rangers

    Another site Is ok. Same server 🤔

    #2103112
    Ying
    Staff
    Customer Support

    2 sites on the same server may have different settings.

    Let us know after you contact your host 🙂

    #2103360
    Royal Rangers

    The HTTP proxy Cache is running on the web server.

    #2103397
    Elvin
    Staff
    Customer Support

    Hi Jan,

    The HTTP proxy Cache is running on the web server.

    That’s something beyond our scope of support as it’s a server setting. It really has to be dealt w/ from the side the hosting.

    Once you’ve settled this, the changes should apply on the site w/ the issue. 😀

    Don’t forget to clear your browser cache as well to be sure. 🙂

    #2103414
    Royal Rangers

    Caching disable via code in .htaccess

    # BEGIN Expire headers
    <ifModule mod_expires.c>
    Header unset ETag
    Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
    Header set Pragma "no-cache"
    Header set Expires "Sat, 1 Jan 2000 01:00:00 GMT"
    </ifModule>
    # END Expire headers
    #2103445
    Elvin
    Staff
    Customer Support

    Can you link us to the page on the site w/ the issue?

    In case the problem is in the actual way of how the CSS code was pasted.

    #2103487
    Royal Rangers

    Ok. I send link on one post and one page.

    #2103496
    Elvin
    Staff
    Customer Support

    Ah I see the issue here.

    The CSS itself doesn’t seem appropriate for making the sidebar contents sticky.

    This should be the more appropriate CSS for making the right sidebar sticky. 🙂

    @media (min-width: 769px){
        #right-sidebar > .inside-right-sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 120px;
            margin-top: 0px;
        }
    }

    See it in action here – https://share.getcloudapp.com/P8u628Dy

    #2103518
    Royal Rangers

    Thank. It is works!

    Maybe this is css problem too.
    Secondary menu doesn’t work. I use default theme settings but secondary menu I view only on frontpage.
    https://ctrlv.cz/YfJy
    And this I don´t know where is problem 🙁
    In posts doesn´t work social icons. On pages are working. This is same block in footer.
    https://ctrlv.cz/ZbDg

Viewing 15 posts - 1 through 15 (of 18 total)
  • You must be logged in to reply to this topic.