Site logo

Archived topic

Problem with settings

17 replies · Started by Royal Rangers on February 2, 2022

Viewing posts 1–15 of 18

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.

Hi there,

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

Sorry. Site is online now.

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

I think no

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.

Another site Is ok. Same server 🤔

2 sites on the same server may have different settings.

Let us know after you contact your host :)

The HTTP proxy Cache is running on the web server.

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. :D

Don't forget to clear your browser cache as well to be sure. :)

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

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.

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

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

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

This archived topic is closed to new replies.