Thomas Cigolla
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page Templates no longer Appears after WordPress 6.5 – Block EditorThanks for your tip. I have the same problem. It also seems to occur with posts. In the template management, it is also no longer possible to rename templates as described here. Too bad
Template Editor
- This reply was modified 7 months, 2 weeks ago by Thomas Cigolla.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Gallery only vertical on block themeI see your point and understand that you can’t do very much about it. I did a few more tests, and it seems that until “twenty twenty one” the gallery works as it should. With the following ones, it doesn’t work properly anymore. If anyone has a workaround, I would be grateful for a solution.
Thank you very much for pointing this out. That was my confusion. Your plugin is really powerful and exactly what I was looking for. It is not very easy to get started. I will try to write an article on my blog with a step-by-step guide, for a dynamic gallery. Now I just need to figure out how to customize the look.
Forum: Alpha/Beta/RC
In reply to: WP 5.9 TemplatesI also did some other tests and came to the same conclusion. One possibility is to create your own template files in the “template” directory. Which, in my opinion, contradicts the idea of “full site editing”.
I find the plugin really good and it has many features that are missing in WordPress. I did some tests with WP 5.9 and the new theme and I have the impression that there are still some things missing. It would be nice if you can make the plugin available for the new version as well.
I have the same problem with Twenty Twenty One and WP 5.8 and the Gutenberg block. The settings in the block are not set correctly.
Forum: Plugins
In reply to: [Contact Form 7] contact form does not work with chromeI have found the cause of the issue. There was a script in the Child Theme that disabled the REST API.
After I commented it out, the form works again with Chrome/Edge. What I am wondering now is why did it work with Firefox?//Disable rest API interface for unregistered users
// add_filter( ‘rest_authentication_errors’, function( $result ) {
// if ( ! empty( $result ) ) {
// return $result;
// }
// if ( ! is_user_logged_in() ) {
// return new WP_Error( ‘401’, ‘not allowed.’, array(‘status’ => 401) );
// }
// return $result;
// });`Forum: Plugins
In reply to: [Contact Form 7] contact form does not work with chromeNo, i don’t have plugins like this.
I only have these plugins that have something to do with secutiy.* Limit Login Attempts
* Email Address Encoder
* Akismet Anti-Spam
* Health Check & TroubleshootingForum: Plugins
In reply to: [Contact Form 7] contact form does not work with chromeand why only with Chrome / Edge
Forum: Plugins
In reply to: [Contact Form 7] contact form does not work with chromeOk, but why had it worked until now only with the update to 5.7.2 I could see the behavior.
Forum: Plugins
In reply to: [Contact Form 7] contact form does not work with chromeIt seems to be a problem with my child theme. I have activated the original theme (Chaplin) and can now submit forms. Can it be that it has something to do with the order of loading the scripts. Unfortunately I am not a WP developer (PHP, JavaScript).
So, I have now found the error. This is what happens when you don’t know exactly what you are doing. I found a function on the internet that turns off the zooming of the image. After turning it off, everything works now.
/*
function remove_zoom_effect_product_image( $html, $post_id ) {$post_thumbnail_id = get_post_thumbnail_id( $post_id );
return get_the_post_thumbnail( $post_thumbnail_id, apply_filters( ‘single_product_large_thumbnail_size’, ‘shop_single’ ) );
}
add_filter(‘woocommerce_single_product_image_thumbnail_html’, ‘remove_zoom_effect_product_image’, 10, 2);
*/Translated with https://www.DeepL.com/Translator (free version)
- This reply was modified 3 years, 11 months ago by Thomas Cigolla.
Thanks a lot for the fix.
I have just installed the latest version. So far everything has worked ?? and the images are displayed correctly.With my child theme there is still a problem, there the images are doubled. I have to see if I have made a mistake. I have seen the wrong class is used “class=”attachment-shop_single size-shop_single wp-post-image” instead of “zoomImg”.
Here is an example on my test page:
https://test.cigolla.ch/produkt/catkraft-smellwell-zeolith-bio-deo-fuers-katzenklo/I think I have found the place where the problem arises. OK, it’s the same finding as in the link .
My question now is how can I override the style statement, as far as I know statements directly in the HTML have the highest priority.
Why is this style statement directly in the code and not in a CSS file?<div class="woocommerce-product-gallery woocommerce-product-gallery--with-images woocommerce-product-gallery--columns-4 images" data-columns="4" style="opacity: 0; transition: opacity .25s ease-in-out;">
- This reply was modified 3 years, 11 months ago by Thomas Cigolla.
- This reply was modified 3 years, 11 months ago by Thomas Cigolla.
- This reply was modified 3 years, 11 months ago by Thomas Cigolla.
- This reply was modified 3 years, 11 months ago by Thomas Cigolla.
Thank you for your prompt reply.
That’s right, I looked at the generated code and it looks good.