Forum Replies Created
-
AuthorPosts
-
December 13, 2019 at 8:48 pm in reply to: Social Share Icons No Longer Showing Header / Footer #1165640
Everyone is having this issue.
Same here! I have 5 icons and only the first icon shows or can be changed with CSS. So I used Chrome to inspect the live website and the “data-av-icon” is not present in the website’s HTML for that last four icons, which is why the CSS styling did not work.
Yes, I cleared my browser cache. In fact I used three different browsers and I also used them in private mode.
Yes, I cleared my WordPress cache plugin and I even toggled the Enfold performance features and cleared the old code CSS and JS.
Yes, I uploaded a new copy of Enfold.
Yes, I deleted and added back the Social icons but no change.
Yes, I tried adding the icons to the Footer but no change.
Yes, I and running the latest version of everything installed to include PHP 7.3.
I am not having issues with any other icons on my website or problems with any other functions on my website.
Everything was working fine until WP 5.3.1.
Same here!
December 13, 2019 at 1:05 pm in reply to: Social Share icons are not displayed after WordPress update 5.3.1 #1165507Same here! I have 5 icons and only the first icon shows or can be changed with CSS. So I used Chrome to inspect the live website and the “data-av-icon” is not present in the website’s HTML for that last four icons, which is why the CSS styling did not work.
Yes, I cleared my browser cache. In fact I used three different browsers and I also used them in private mode.
Yes, I cleared my WordPress cache plugin and I even toggled the Enfold performance features and cleared the old code CSS and JS.
Yes, I uploaded a new copy of Enfold.
Yes, I deleted and added back the Social icons but no change.
Yes, I tried adding the icons to the Footer but no change.
Yes, I and running the latest version of everything installed to include PHP 7.3.
I am not having issues with any other icons on my website or problems with any other functions on my website.
Everything was working fine until WP 5.3.1.
- This reply was modified 4 years, 11 months ago by corefocusgroup.
I have the same problem. I can track a huge drop off in traffic back to the 4.6.x upgrades. I have all cookies and services accepted on page load, user can opt out. Google analytics is also reporting (not set) for landing pages, this also started after the 4.6.x upgrades. I am currently running 4.6.2.
When I attempt to verify the domain with Google Webmaster Tools using the Google Analytics option, it say the tracking code is malformed.
- This reply was modified 5 years, 2 months ago by corefocusgroup. Reason: additional details
Already updated to 4.6.2. As with 4.6.1 and 4.6.2 the Mailchimp (checkbox) privacy text is still missing. All I get is a checkbox and no text.
September 11, 2019 at 11:47 pm in reply to: "Read more" button on cookie bar after 4.6 update #1137281Hi, I’ve updated from 4.6.1 to 4.6.2. The privacy text is still missing next to the MailChimp forms (checkbox) on all of my pages.
All of the privacy text options for checkboxes are enabled.
September 10, 2019 at 6:49 am in reply to: Update 4.6 makes cookie consent reload every time #1136381Yes, I have 4.6.1.
I had the same problems everyone else had and 4.6.1 fixed all of them, to include, the MailChimp checkbox BUT the privacy text that should be next to it is missing.
- This reply was modified 5 years, 2 months ago by corefocusgroup.
September 9, 2019 at 9:07 pm in reply to: Update 4.6 makes cookie consent reload every time #1136208I’m still having problems with the MailChimp (privacy policy) checkbox option; the text disappeared. TURNED OFF FOR NOW.
Is anyone having Google analytic problems? I’ve been receiving (not set) errors since this update. Possibly related to cookies?
Seems like there are a lot more problems under the hood if it’s fixed for some, partially fixed for some more and unfixed for others.
September 6, 2019 at 5:18 am in reply to: "Read more" button on cookie bar after 4.6 update #1134715The 4.6.1 update seems to have solved the Cookie Consent issue with the bar and maps. BUT the Privacy Checkbox “text” is missing for the MailChimp (short code) forms. For now I’ve turned off the Privacy Checkbox for MailChimp (short code) forms.
I cleared the cache and tested this on every major browser to include MAC and PC.
FIX?
- This reply was modified 5 years, 2 months ago by corefocusgroup.
September 4, 2019 at 9:28 am in reply to: Update 4.6 makes cookie consent reload every time #1133712I feel like there is a real disconnect here. I updated to version 4.6 just like a ton of other people and the cookie consent was broken, SO I TURNED IT OFF.
This is clearly not a site-specific issue. It’s affecting a lot of people.
I’m also having issues with maps and other cookie consent related functions, just like everyone else.
Same problem with the Maps in my Blog posts!
1. Cookie Consent Bar – Reappears on every page after accepting
2. Maps in Blog Post – Maps are disabled by user messageTEMP FIX: Turning off Cookie consent fixed both…
3. MailChimp forms – Consent checkbox missing
TEMP FIX: None
All seems to be related to the Privacy and Cookie options.
Same problem with the Maps in my Blog posts!
1. Cookie Consent Bar – Reappears on every page after accepting
2. Maps in Blog Post – Maps are disabled by user messageTEMP FIX: Turning off Cookie consent fixed both…
3. MailChimp forms – Consent checkbox missing
TEMP FIX: None
All seems to be related to the Privacy and Cookie options.
Same problem with the Maps in my Blog posts!
1. Cookie Consent Bar – Reappears on every page after accepting
2. Maps in Blog Post – Maps are disabled by user messageTEMP FIX: Turning off Cookie consent fixed both…
3. MailChimp forms – Consent checkbox missing
TEMP FIX: None
All seems to be related to the Privacy and Cookie options.
- This reply was modified 5 years, 2 months ago by corefocusgroup. Reason: Additional information
I managed to make a custom bar below the footer that will collapse. The problem is that I have to manually detect the “aviaCookieConsent” cookie and I haven’t been able to get that to work.
I have two functions in functions.php: myFunction() and myFunction2(). myFunction() works and hides the DIV, but I can’t get myFunction2() to run on page load to evaluate if the cookie is present on page load.
CODE BLOCK ON PAGE:
<head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> #myDIV { width: 100%; padding: 3px 0; text-align: center; background-color: #162946; margin-top: 10px; } </style> </head> <body onload="myFunction2()"> <p>Click the "Try it" button to toggle between hiding and showing the DIV element:</p> <button onclick="myFunction()">Try it</button> <div id="myDIV"> <a class="avia-button avia-cookie-consent-button avia-cookie-consent-button-1 avia-cookie-close-bar" data-contents="b35d8be8d2946ee5599f0c85b5cfb027" href="#" onclick="myFunction()">OK</a> </div> </body>
CODE IN FUNCTIONS.PHP
function custom_script_name(){ ?> <script> function myFunction() { var x = document.getElementById("myDIV"); if (x.style.display === "none") { x.style.display = "block"; } else { x.style.display = "none"; } } </script> <?php } add_action('wp_footer', 'custom_script_name'); // End custom script in footer // I added this! //------------------------------- // Custom script in footer // Detect cookie to toggle GDPR bar //------------------------------- function custom_script_name_2(){ ?> <script> function myFunction2() { var x = document.getElementById("myDIV"); if (!isset($_COOKIE['aviaCookieConsent'])) { x.style.display = "block"; } else { x.style.display = "none"; } } </script> <?php } add_action('wp_footer', 'custom_script_name_2');
- This reply was modified 6 years ago by corefocusgroup.
Hi, I appear to have resolved the primary issue.
Thanks!
CSS (Quick CSS):
#socket {
border: none;
}#socket .container {
padding: 0;
}#socket .copyright {
width: 100%;
text-align: center;
}.procharter-navbar {
display: table;
width: 100%;
text-align: center;
margin: 0;
}.procharter-navbar li {
display: table-cell;
width: 25%;
}#socket .avia-button.avia-size-large {
font-size: 16px;
border-radius: 0px;
margin: 0;
}#socket .btn-custom-width {
display: block!important;
margin-right: 1px;
margin-left: 1px;
}#socket .btn-custom-width .avia-button {
width: 100%;
}HTML (Footer Copyright)
<ul class="procharter-navbar"> <li> [av_button label=' ENQUIRE NOW' link='/aviation-service-quote/' link_target='' size='large' position='' icon_select='yes' icon='ue8b6' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='btn-custom-width' admin_preview_bg=''] </li> <li> [av_button label=' EMAIL US' link='mailto: (Email address hidden if logged out) ' link_target='' size='large' position='' icon_select='yes' icon='ue805' font='entypo-fontello' color='custom' custom_bg='#144566' custom_font='#ffffff' av-mini-hide='aviaTBaviaTBav-mini-hide' av_uid='' custom_class='btn-custom-width' admin_preview_bg=''] </li> <li> [av_button label=' CONTACT US' link='/about/contact/' link_target='' size='large' position='' icon_select='yes' icon='ue854' font='entypo-fontello' color='custom' custom_bg='#144566' custom_font='#ffffff' av-mini-hide='aviaTBaviaTBav-mini-hide' av_uid='' custom_class='btn-custom-width' admin_preview_bg=''] </li> <li> [av_button label=' CALLBACK' link='/procharter-callback/' link_target='' size='large' position='' icon_select='yes' icon='ue854' font='entypo-fontello' color='custom' custom_bg='#144566' custom_font='#ffffff' av-mini-hide='aviaTBaviaTBav-mini-hide' av_uid='' custom_class='btn-custom-width' admin_preview_bg=''] </li> </ul>
- This reply was modified 6 years ago by corefocusgroup.
October 25, 2018 at 9:59 am in reply to: Table in Blog "Code Block" is not using the sitewide Enfold font #1026258Ok, I figured out what was going on. It was having the Blog page in Visual vs. Text.
I’m just going to use the standard Enfold table instead.
Thanks!
Thank You!
What is I want to get rid of the footer socket border?
See footer socket…
Does the Enfold version disable/enable the actual cookies? It doesn’t appear to do anything when the buttons are switched.
This is the same for a lot of the other GDPR plugins. A lot of them have all the options but YOU have to program them to disable the cookies. The Enfold solution seems to be the same.
Also, for the cookies to be disabled/enabled after the the user selects what they want, wouldn’t the page have to reload to active/deactivate the cookies? Enfold does nothing when the dialog box is closed.
May 24, 2018 at 7:22 pm in reply to: Does the GDPR options disable cookies? It seems to have no effect. #961805wouldn’t the page have to reload for them to take effect? I tried reloading and the cookies are still there.
Hi,
I used the buttons to disable all of the cookie types. Does not seem to work. No cookies are disabled.
Hi,
1. Do the button actually disable/enable the cookies?
2. If the buttons do disable/enable the cookies, shouldn’t that require a page reload?
- This reply was modified 6 years, 5 months ago by corefocusgroup.
May 24, 2018 at 6:57 pm in reply to: GDRP dialog box "Main Heading" does not show any text on website #961783Hi, I discover the problem. Under performance I have to allow “Always Load All Elements”
Can you change that requirement so we can choose the option to only load what is needed?
May 24, 2018 at 6:29 pm in reply to: Get a link to the modal window with privacy and cookie info #961767Same issue!
August 12, 2017 at 5:15 pm in reply to: GWT problems indexing Enfold (soft 404) with search activated (?s=) #837958After extensive testing it works for us (using the testing function provided in Google Webmaster).
If it doesn’t work for you, it suggests there may be some other variables involved.
For example, how are these parameters handle in your Google webmaster account? Do you have a child theme?
In any case, this solution may help some people in the interim until a permanent solution is found.
- This reply was modified 7 years, 3 months ago by corefocusgroup.
August 8, 2017 at 4:34 pm in reply to: GWT problems indexing Enfold (soft 404) with search activated (?s=) #835905Hi,
Add this line in your robot.txt
Disallow: /*?s=
July 23, 2017 at 4:34 pm in reply to: GWT problems indexing Enfold (soft 404) with search activated (?s=) #828713Hi Havi,
I just used Fetch as Google in Google Webmaster (Console) and none of my page redirects are being blocked- all can be indexed.
Only URLs with “redirect_to” are being blocked and those don’t seem to have anything to do with 300 level redirects. I assume it’s something being generated by Enfold or another plugin. But it’s definitely not blocking any page redirects that I have setup.
- This reply was modified 7 years, 3 months ago by corefocusgroup.
-
AuthorPosts