catwingz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] CSS not Displaying on Mobile, remove navigation@jonayedhosen, it appears that I have a mystery to solve. I already have the correct file path in the style sheet for the child theme. The localhost path was there until I changed it, but must somehow still be in a second location. If you can suggest where the overriding entry might be, please do so. It’s too late tonight and I won’t be able to look until tomorrow.
Thanks again
Forum: Themes and Templates
In reply to: [Storefront] CSS not Displaying on Mobile, remove navigationThanks for pointing out the file path issue @jonayedhosen. I believe I’ve corrected it but this hasn’t solved the problem. What am I missing?
The navigation has been banished. Thanks again.
Strange. I replied to this but it is missing. I removed the manually added code as instructed. As a result the banner is now no longer visible on mobile either. This is moving in the wrong direction. What do I need to do to make the banner visible on all devices?
Thank you
Hello, Initially the banner was showing but not with the color customization I had added. Then, as instructed, I removed the code to start the banner and the banner is now no longer visible. That’s a problem. To recap, this is the code in the head tag of the header.php: (minus the comments – a shame they removed the provision for code)
“<?php
/**
* clean_magazine_before_wp_head hook
*
* @hooked clean_magazine_head – 10
*
*/
do_action( ‘clean_magazine_before_wp_head’ );wp_head(); ?> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("consent", "default", { ad_storage: "denied", ad_user_data: "denied", ad_personalization: "denied", analytics_storage: "denied", functionality_storage: "denied", personalization_storage: "denied", security_storage: "granted", wait_for_update: 2000, }); gtag("set", "ads_data_redaction", true); gtag("set", "url_passthrough", true);<!-- Google Tag Manager -->so, problem #1 – the banner has now disappeared; #2 – the color customization wasn’t showing; #3 – how to deal with uncategorized cookies for which a script url pattern is not going to be available.
thank you
Is there code which would automatically block cookies which lack a sccript URL pattern? That looks like the only strategy which could work.
Forum: Plugins
In reply to: [Simple Shopping Cart] Issues connecting with PayPalThat did it. I wanted to make sure it wasn’t going to come back, but it’s staying off. That was the missing piece. I had turned the new one on but hadn’t turned the old one off. I would be surprised if others hadn’t had the same problem. Thanks so much for your help!
Forum: Plugins
In reply to: [Simple Shopping Cart] Issues connecting with PayPalI’m not sure what I’m looking for. This is what I see: https://snipboard.io/7Vvzbl.jpg
Thank you
Forum: Plugins
In reply to: [Simple Shopping Cart] Issues connecting with PayPalThe Live API was added using the buttons, the Sandbox API was added manually. The first time I used the Delete Token Cache button is cleared the message but then it came back a few seconds later. I have cleared the cache both on the website and the server and there is no change. The error message persists. This is in the Dashboard, not following a purchase. It’s one of the first things you see following login.
What next?
Thank you
Forum: Plugins
In reply to: [Simple Shopping Cart] Issues connecting with PayPal@mbrsolution we were able to connect the sandbox account and, as far as we can tell, the PayPal PPCP version of the cart is in use. However the top of the dashboard continues to have the banner with the message “Switch to the new PayPal Commerce Platform API by configuring the API credentials“. This banner won’t be dismissed. Is there some little detail we’ve missed or is this issue with the banner a known bug? What needs to be done to get rid of it?
Thank you
Forum: Plugins
In reply to: [Simple Shopping Cart] is this cookie from your plugin?Thanks @mbrsolution
We are taking this up with Stripe.
Forum: Plugins
In reply to: [Simple Shopping Cart] Issues connecting with PayPalHello, it appears I haven’t made myself clear. It would be pointless to enable Sandbox testing because the Sandbox Paypal account is not connected. While we were able to successfully connect the Live account the website has yet to acquire Sandbox credentials. The Live account Client ID and Secret Key are now filled in, but they are conspicuously empty for the Sandbox.
As I explained before, at some point a text message was sent which allowed the process to finalize for the Live account. The Sandbox account is still stuck waiting for emails which never arrive. Please advise.
Update 2: I attempted the same thing on a second website but disabled CF7 and am having the same result. Host Siteground, browser Brave
Update: I left the tabs for the first two attempts open and they eventually resolved to show a modal stating that “we are waiting on AWeber authorization”, with this hanging. I spoke with AWeber support and was told that from their side they couldn’t see any attempts to connect.
I also asked if leaving CF7 connected could be interfering and was told that it might but they felt I should leave it connected for now.
What should I do?
In which case, it’s not from a plugin, but from Acuity the scheduling SASS. Would my best option be to reach out to them? It should be classified as necessary but “m” with no description isn’t going to get it there! How would you suggest I handle this?
I am a little confused by Step 4 in this documentation: https://www.cookieyes.com/documentation/google-consent-mode-v2-integration-with-cookieyes-wordpress-plugin/
In it the third item is the CookieYes script, with the added note: Do not add CookieYes script again from the CookieYes Webapp. The wp_head() function already executes this action.
Unless I missed something I haven’t installed this script at all, making doing it again highly unlikely. At this point this is what the <head></head> section of the header.php looks like:
<head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("consent", "default", { ad_storage: "denied", ad_user_data: "denied", ad_personalization: "denied", analytics_storage: "denied", functionality_storage: "denied", personalization_storage: "denied", security_storage: "granted", wait_for_update: 2000, }); gtag("set", "ads_data_redaction", true); gtag("set", "url_passthrough", true); </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5F2H8XX2');</script> <!-- End Google Tag Manager --> <?php wp_head(); ?> </head>Am I missing anything?