WPMajestic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Errors with a submission formHello @gunnyret,
I see the following errors in the console:
Refused to execute script from ‘https://summitcountystanddown.org/forms/donation-report/js/script.js’ because its MIME type (‘text/html’) is not executable, and strict MIME type checking is enabled.
donation-report/:1 Access to XMLHttpRequest at ‘https://clients6.google.com/rpc?key=AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ’ from origin ‘https://summitcountystanddown.org’ has been blocked by CORS policy: Response to preflight request doesn’t pass access control check: No ‘Access-Control-Allow-Origin’ header is present on the requested…
It means that there is a problem with MIME type checking, something is blocking script.js and CORS policy is not set properly to allow fetching resources from your domain.
You need to check about these issue with your hosting support and/or within Cloudflare settings, you can try to resolve CORS problem by adding this on top of the .htaccess file:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin https://summitcountystanddown.org
</IfModule>But as I suggested, better check this out with your hosting company,
Kind regards.
Forum: Fixing WordPress
In reply to: Page title does not want to hide!!!!Hello @vmastah,
If your selector is h1.gdlr-page-title – then you can use custom CSS to set display: none; to it. Maybe your selector is wrapped into something and that interrupts the reading of Elementor options to hide the title. But as I mentioned you can use Custom CSS to hide it:
h1.gdlr-page-title { display: none;}
If that does not work, try to force with !important:
h1.gdlr-page-title { display: none !important;}
If you wish to target only specific pages or posts, then you can append .page-id or .post-id to the CSS code to target only specific pages.
Let me know if this was helpful, cheers.
Forum: Fixing WordPress
In reply to: Page title does not want to hide!!!!Hi @vmastah,
It should be easy to hide title with Elementor, did you follow this tutorial -> https://elementor.com/help/how-to-hide-page-titles-in-wordpress
In the second part of the tutorial there are instructions on how to hide page title if it’s using theme CSS selector, that should be helpful.
Kind Regards.
Forum: Fixing WordPress
In reply to: Form Not added in WebsiteHello @astroo,
The form is not added because your site is trying to fetch the CSS file for the form via HTTP -> https://prnt.sc/ZBPjKtWJeELa – that is why file get’s blocked, you need to have all URLs as HTTPS, to achieve this you can use this plugin -> https://www.ads-software.com/plugins/better-search-replace/ – or some other plugin with the same functionality, run a query to replace all instances of https://3k-entruempelung.de with https://3k-entruempelung.de
Kind Regards.
Forum: Fixing WordPress
In reply to: Publishing failed. The response is not a valid JSON response.Hello @oumz99,
If you exclude potential plugin conflicts and server misconfiguration, this error usually happens if there is a firewall, firewall blocks some JSON paths and then you get that error. Review if you have a firewall and disable it temporarily – to see will the issue disappears. If it’s not a firewall then you need to check these things:
- Incorrect site URL settings. Mismatched WordPress site address settings can disrupt JSON responses.
- Plugin conflicts. Incompatible or poorly coded WordPress plugins may interfere with the JSON response.
- Server configuration issues. Server-side problems or insufficient resources can lead to this error.
- SSL/mixed content problems. Mixed content from HTTP and HTTPS elements can prevent proper JSON communication.
- Permalink structure issues. Improper permalink settings can affect how URLs are handled, causing JSON errors.
Kind regards.
Forum: Plugins
In reply to: [WooCommerce] Cart page not updating – mini cart updatingHello @susanna961,
Did you try to disable all plugins and to see will it work then? It could be a plugin conflict or a plugin settings causing that to malfunction, I see a “jQuery not defined” error in the console -> https://prnt.sc/V1CjvEVTvkU7 – which usually happens when there is a plugin conflict or when some plugins for optimization are used. Review your optimization plugin settings, it’s very likely that something from the plugin is causing the issue. But you can disable plugins first and re-enable them individually to find the exact cause.
Kind regards.
Forum: Plugins
In reply to: [WooCommerce] tax report is never sentHello @yonabienetreintime,
It seems this issue is well known, you can see it here -> https://github.com/woocommerce/woocommerce/issues/48841
The issue will be fixed with the next WooCommerce update, if you can’t wait for the next update, you can try to change the code in the plugins/woocommerce/src/Admin/API/Reports/Taxes/DataStore.php on your own, here are the patch -> https://github.com/woocommerce/woocommerce/pull/51270/files
I suggest waiting for the WooCommerce next update, trying to tweak code on your own could cause your site to go down if you make a mistake.
Kind regards.
Forum: Fixing WordPress
In reply to: Berichten weergaveHello @jesuis15,
It seems you are using a post, instead of the page, you would not have that on top of the page.
If that’s a page and not a blog post, then you just make the same content and use a page, check this article <span style=”box-sizing: border-box; margin: 0px; padding: 0px;”>to understa</span>nd the difference ->?https://learn.www.ads-software.com/lesson-plan/pages-versus-posts better
If you insist on using the posts instead of pages, to hide that, you can use custom CSS code:
[data-prefix="single_blog_post"] .entry-header .entry-meta {display: none;}
You need to add that code to Customizer – Additional CSS area.
I hope you find this reply helpful.
Kind regards.
Forum: Fixing WordPress
In reply to: Mysterious numbers on the bottom of my websiteHello @rftkohiat,
If that’s the only result you got for searching the string – then number is not in the files, it’s in the database, can you search the database via phpMyAdmin? If you don’t have phpMyAdmin access, you can use this plugin -> https://www.ads-software.com/plugins/pexlechris-adminer
Let me know what shows up when you search for that number in the database.
Kind Regards.
Forum: Plugins
In reply to: [WooCommerce] New border shows around added to cart messageHello @uriahs-victor,
Thank you. I was able to see the issue, and the border appeared on focus. To fix it, you need to add custom CSS to the Customizer.
.woocommerce-message:focus-visible {
outline: none;
}If that does not work, add !important, like this:
.woocommerce-message:focus-visible {
outline: none !important;
}Let me know did it resolved your issue?
Kind regards.
Forum: Developing with WordPress
In reply to: WordPress menu upHello @marcusabs,
As I mentioned, you need to find and remove this code -> https://prnt.sc/aSB1mZGiqRWG – then submenu will open on top. Check the widget settings and look for padding and other variables, you can tweak them in the Elementor settings for that widget.
Kind Regards.
Forum: Developing with WordPress
In reply to: showcaseHello @patriziacriscuolo,
Yeah – that effect can be created with custom CSS and JS, but can’t write a code for you because code is not universal in this case, it would be based on the content of your WP Bakery page (based on what you build) and it would be tricky to combine it, but I can say that it’s 100% possible to make that with the usage of custom CSS and JS.
Kind Regards.
Forum: Everything else WordPress
In reply to: Script not showingHello @loribethnc,
This is not related to a plugin or a theme, it’s a hosting side. Show this screenshot to your hosting -> https://prnt.sc/eCKYtot8-46I – tell them that you need to change the Content Security Policy directive to allow resources to load from https://review-carousel-resource.kenect.com
They will know what to do, it seems they use nginx, so they will need to tweak nginx configuration to add that directive.
Kind Regards.
Forum: Plugins
In reply to: [WooCommerce] New border shows around added to cart messageHi @uriahs-victor,
I don’t have that issue on my sites, the border that appears on your video – does not appear, I tried with the Storefront theme as well, on my end it does not appear. If you can provide me with a link to the site where this happens – I will resolve the issue for you.
Kind Regards.
Forum: Developing with WordPress
In reply to: WordPress menu upSorry, I missed that you were writing about mobile menu version, I saw that button on desktop is not aligned and figured that you wanted that fixed.
On the mobile device, I see the menu at the bottom, if you with to show menu items you need to correct CSS -> https://prnt.sc/aSB1mZGiqRWG – you or someone else added that CSS for the widget area, if you can locate it and disable it, you can push menu items up.
Kind Regards.