Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1070397

    Cookies consent message is showing at the bottom of the site (like in the socket), not like a pop up that users can dissmiss. How can I fix it?

    #1070568

    Hey Marc,

    There’s some js errors, maybe some plugin conflict.
    Try to disable all your plugins and check if it works properly.
    If the issue is gone please enable the plugins one by one to know which one is causing the issue.

    Best regards,
    Nikko

    #1071195

    Hi Nikko,

    I’ve disabled all and it still doesn’t work properly. What can I do? I would like to fix it asap as this is for a client and it wasn’t supposed to take that long. Thank you again,

    #1071618

    Hi dasemarc,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1071685

    Done,

    Thank you!

    #1072521

    Hi dasemarc,

    The link that you should give us would look something like the one in private content.
    It should allow us to access your site with administrator account to so we could check the backend.

    Best regards,
    Nikko

    #1072558

    Here it is, thanks!

    #1073662

    Hi dasemarc,

    It seems to be missing some css, I have manually added this in Quick CSS:

    .avia-cookie-consent{
    	width: 100%;
    	position: fixed;
    	background-color: rgba(0,0,0,0.85);
    	z-index: 999;
    	color: rgba(255,255,255,0.9);
    	padding: 1.1em;
    	text-align: center;
    	opacity: 1;
    	visibility: visible;
    	transition: all 0.3s ease-in-out;
    	overflow: hidden;
    }
    
    .avia-cookie-consent .container{
    	float: none !important;
    	padding: 0 !important;
    }
    
    .avia-cookie-consent a.avia_cookie_infolink,
    .avia-cookie-consent p,
    .avia-cookie-consent .avia-cookie-consent-button{
    	display: inline-block;
    	vertical-align: middle;
    	font-size: 12px;
    	letter-spacing: 0.05em;
    }
    
    .avia-cookie-consent a.avia_cookie_infolink{
    	color: inherit;
    }
    
    .avia-cookie-consent p{
    	margin: 0;
    }
    
    .avia-cookie-consent a.avia_cookie_infolink,
    .avia-cookie-consent p{
    	margin-right: 0.5em;
    }
    
    .avia-cookie-consent .avia-cookie-consent-button{
    	cursor: pointer;
    	display: inline-block;
    	background-color: #fff;
    	border:2px solid transparent;
    	color: #000;
    	padding: 1.1em;
    	min-width: 80px;
    	border-radius: 3px;
    	text-decoration: none;
    	transition: all 0.3s ease-in;
    	line-height: 1;
    	white-space: nowrap;
    	margin:0 0 0 6px;
    }
    
    .avia-cookie-consent .avia-cookie-consent-button.av-extra-cookie-btn{
    	color: #fff;
    	background-color: transparent;
    	border-color: #fff;
    }
    
    a.avia-cookie-consent-button:hover{
    	opacity: 0.9;
    }
    
    .avia-cookiemessage-bottom{
    	bottom: 0;
    	left: 0;
    }
    
    .avia-cookiemessage-top{
    	top: 0;
    	left: 0;
    }
    
    .avia-cookiemessage-top-left,
    .avia-cookiemessage-bottom-left,
    .avia-cookiemessage-top-right,
    .avia-cookiemessage-bottom-right{
    	width: 25%;
    }
    
    .avia-cookiemessage-top-left a.avia_cookie_infolink,
    .avia-cookiemessage-bottom-left a.avia_cookie_infolink,
    .avia-cookiemessage-top-right a.avia_cookie_infolink,
    .avia-cookiemessage-bottom-right a.avia_cookie_infolink,
    .avia-cookiemessage-top-left p,
    .avia-cookiemessage-bottom-left p,
    .avia-cookiemessage-top-right p,
    .avia-cookiemessage-bottom-right p {
    	display: block;
    	margin-right: 0;
    }
    
    .avia-cookiemessage-top-left .avia-cookie-consent-button,
    .avia-cookiemessage-bottom-left .avia-cookie-consent-button,
    .avia-cookiemessage-top-right .avia-cookie-consent-button,
    .avia-cookiemessage-bottom-right .avia-cookie-consent-button{
    	margin: 0.5em;
    }
    
    .avia-cookiemessage-bottom-right{
    	bottom: 30px;
    	right: 30px;
    }
    
    .avia-cookiemessage-top-right{
    	top: 30px;
    	right: 30px;
    }
    
    .avia-cookiemessage-bottom-left{
    	bottom: 30px;
    	left: 30px;
    }
    
    .avia-cookiemessage-top-left{
    	top: 30px;
    	left: 30px;
    }
    
    .avia-cookie-consent.cookiebar-hidden{
    	opacity: 0;
    	visibility: hidden;
    }
    
    .avia-cookiemessage-top.cookiebar-hidden {
    	transform: translateY(-110%);
    }
    
    .avia-cookiemessage-bottom.cookiebar-hidden {
    	transform: translateY(110%);
    }
    
    .avia-cookiemessage-bottom-left.cookiebar-hidden,
    .avia-cookiemessage-top-left.cookiebar-hidden {
    	transform: translateX(-110%);
    }
    
    .avia-cookiemessage-bottom-right.cookiebar-hidden,
    .avia-cookiemessage-top-right.cookiebar-hidden {
    	transform: translateX(110%);
    }
    
    .avia-cookie-consent.avia-cookiemessage-bottom.cookiebar-hidden{
    	bottom: -50px;
    }
    
    body.admin-bar .avia-cookiemessage-top,
    body.admin-bar .avia-cookiemessage-top-right,
    body.admin-bar .avia-cookiemessage-top-left
    {
    	margin-top: 32px;
    }
    
    .av-inline-modal {
        padding: 20px;
        border-radius: 4px;
        min-width: 250px;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        display: none;
        -webkit-transition: opacity 0.2s ease-in-out;
    	transition: 		opacity 0.2s ease-in-out;
    	opacity: 0;
    }
    
    .avia-popup .av-inline-modal{
    	display:block;
    	opacity: 1;
    }
    
    .avia-popup.mfp-removing .av-inline-modal{
    	opacity: 0;
    }
    
    .avia-popup .av-inline-modal .mfp-close{
    	right: 18px;
    	top:18px;
    }
    
    .avia-popup .av-inline-modal .mfp-close:hover{
        border: 2px solid #e1e0e0;
    }
    
    .avia-popup .av-inline-modal .tabcontainer{
    	min-height: 320px;
    }
    
    .avia-popup .av-inline-modal .tab{
    	    padding: 20px 16px;
    	    font-size: 14px;
        font-weight: bold;
    }
    
    .avia-popup .av-inline-modal > .av-special-heading{padding-right:40px;}

    Best regards,
    Nikko

    #1075593

    It still doesn’t work, nothing shows up :(

    #1075753

    Hi dasemarc,

    I can see it properly on my end, here is a screenshot (link in private content).
    Can you try to clear the browser cache?

    Best regards,
    Nikko

    #1077304

    Hi Nikko, thank you!

    I’ve tried but I still can’t see it. Is it possible because of the browser? How can I reset the cookies consent?

    Thank you again,

    #1078577

    Hi dasemarc,

    You need to clear cookies in the browser and test again.

    Best regards,
    Victoria

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