mbdNnse
Forum Replies Created
-
Forum: Reviews
In reply to: [Contact Form 7] ReCAPTCHA integration makes it uselessUse google ?? There is very popular and known solution for this.
Also this is mentioned in their FaQ page: https://contactform7.com/faq-about-recaptcha-v3/#stop-script-loading
Forum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sites@ewd910 just installed and activated, nothing more. This plugin provided missing inline css in wp_head();
It works fine since then but I would love to know what caused the issue.
Forum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sites@ewd910 If you find the solution please let me know.
In my case I have missing styles in global-styles-inline-css. There is body .is-layout-flex{display: flex;} missing so the gallery block is not displayed correctly.
I have 2 websites – both the same template, both the same plugins. In one of these gallery block is fine and in the second one the gallery block is displayed as column due to lack of body .is-layout-flex{display: flex;}Small edit: installing the gutenberg plugin fixes the problem on the website with missing CSS. But on the other website I don’t even need gutenberg plugin to display gallery block in the correct way.
- This reply was modified 2 years, 4 months ago by mbdNnse.
Forum: Plugins
In reply to: [WooCommerce] Hidden custom field in product variation editing pageFor anyone looking for the solution:
All you have to do is
1. add the CSS class “variation-needs-update” to the div with “woocommerce_variation” and “wc-metabox” classes.
2. Activate the “save” button just by removing “disabled” attribute from it.<div class="woocommerce_variation wc-metabox">
to
<div class="woocommerce_variation variation-needs-update wc-metabox">
and then
<button type="button" class="button-primary save-variation-changes" disabled="disabled">Save changes</button>
to
<button type="button" class="button-primary save-variation-changes">Save changes</button>
You can do it with JS and onchange eventListener listening your hidden input field. I did it this way.
Forum: Plugins
In reply to: [Album Gallery - WordPress Gallery] Album GalleryHello @labtomarket,
jQuery is loaded too late so lightbox is not working. Are you using some kind of plugin that was installed to speedup your website? Something delays loading of jQuery and that’t the problem.Forum: Plugins
In reply to: [WooCommerce] Fatal error: Uncaught IntlException: Constructor@hiphopservers
I have the same issue and it’s probably caused by intl and UCI extension enabled in PHP. Try to disable it and then update woocommerce. That’s sad but I have the same issue and Woocommerce support just ignores me on the forum.Forum: Plugins
In reply to: [WooCommerce] Website won’t get up after update to 4.6.1Hey @3sonsdevelopment!
Will I get any more reply here?- This reply was modified 4 years, 4 months ago by mbdNnse.
Forum: Plugins
In reply to: [WooCommerce] Website won’t get up after update to 4.6.1Thanks for reply @3sonsdevelopment!
I tried to run it with woocommerce as the only active plugin and Storefront as active theme (I use child theme, storefront based). Sadly it didn’t work.
I have also uploaded 2 versions of woocommerce: 4.5.2 and 4.6.1. I have renamed it to woocommerce_new and woocommerce_old to be able to fast switch between versions (simply renaming one of these to “woocommerce”). 4.5.2 works fine and 4.6.1 is not working.
I have no idea what can be the reason of that issue…
Is there some way to prevent stack trace from being cutted?
What can be blocking rest api?
I was using it before in my custom plugins and it worked all the time.- This reply was modified 4 years, 4 months ago by mbdNnse.
Forum: Reviews
In reply to: [WooPrice Calculator] Worst support everI am paid User too.
Support is pretty fast and polite but still useless. They could not help me twice.
My main problem with that plugin:
I wrote “share cart” plugin. It adds button to cart page so you can click the button, copy the link and send it to friends. If someone will click that link, your items will be added to your friend’s cart automatically. One of products in your cart is using WooPrice Calculator (PRO version) for example there is a field named “width” created with WooPrice Calculator. That product can not be added to cart using PHP (WC()->cart->add_to_cart()).
There is no working way to add that item to cart and keep value of a “width” field.- This reply was modified 5 years, 6 months ago by mbdNnse.