gore.m
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] WP-Admin = 404 + I can’t log outIn WPS Hide Login I can set only slug, right? So I leaved it as it is default “login”.
If I “save changes” and openedYour login page is now here: https://www.example.com/de/login/. Bookmark this page!Ive got 404.WPML:
Site Languages DE (default), ENLanguage URL format:
Different languages in directories (yes)
Use directory for default language (yes)
HTML file (lang.php) (yes)Make themes work multilingual (yes)
Browser language redirect (Disable)
Language filtering for AJAX operations (yes)Forum: Plugins
In reply to: [WPS Hide Login] WP-Admin = 404 + I can’t log outIt is strange…
If I use only your plugin (WPML disabled) it works perfect.
If I use only WPML (your plugin disabled) it works perfect.
But together login url, log out url = 404 error 🙁Forum: Plugins
In reply to: [WPS Hide Login] WP-Admin = 404 + I can’t log outI have the latest versions.
Im using Language Directory for the Default Language
https://wpml.org/documentation/getting-started-guide/language-setup/directory-default-language/Root page contain:
<?php header("HTTP/1.1 301 Moved Permanently"); header( 'Location: //www.example.com/de/' ) ; ?>So it looks like conflict with my root page redirect?
Do you have an idea how keep this settings and use your plugin?Thanks you
edit:
Ive tried (with same problem):<?php wp_redirect( home_url() ); exit; ?>- This reply was modified 8 years, 1 month ago by gore.m.
OK so I found out one problem… few months ago I made mistake and I uploaded images with latin extended characters, I deteled this images immediately, but I forget that WPML plugin is making translation of this files and is necessary delete them for every language, after that is image completely deleted.
So now, Im able to reach 100% of all images on reSmushit page, but than I got this message:An error occured when contacting webservice. Please try again later.
Forum: Plugins
In reply to: [WooCommerce] Registered size instead of woocommerce_gallery_thumbnailThanks you.
I thought that this filter is able to catch WordPress sizes, as it is described at the end of article I posted above : https://docs.woocommerce.com/document/image-sizes-theme-developers/If not, what is difference, compared to this one?:
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) { return array( 'width' => 180, 'height' => 180, 'crop' => 0, ); } );Thanks you
Thanks you @johndcoy
I already have solution. For anyone who is looking for same solution, here is an complete example Im using for failed order:
add_filter( 'woocommerce_email_subject_failed_order', 'customizing_failed_email_subject', 10, 2 ); function customizing_failed_email_subject( $formated_subject, $order ){ return sprintf( esc_html__( 'ANYTHING YOU WANT - Your order #%s failed', 'textdomain'), $order->get_id() ); }Hi Maecia,
no, Im using Chrome. Same in Firefox…
– If I try “Optimize all pictures” it everytime freeze at some point.
– If I try “Optimize” button it produce “Reduced by 0 (0 saved)”.Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] wc-ajax returning 404Thanks to @ankitgadertcampcom for working solution https://wpml.org/forums/topic/subdomain-ajax-call-uses-http-instead-of-https/#post-1556422
Forum: Plugins
In reply to: [WooCommerce] Error with WPML after updating to 3.3.4Cool, it is working, thanks you .-)
Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] wc-ajax returning 404It looks like there is not http and https mix (Im on Woo 3.3.3 there).
URLs are OK, I checked it few times. There is only one thing that is obvious – it is because of Woo 3.3.4 update.Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] wc-ajax returning 404Hello @botzev, it seems error is not caused by migration. Re-saving permalinks doesnt work.
According to this topic and recommendation of @christian70 Ive downgraded to Woocommerce 3.3.3 and I can confirm errors are gone. And I think I can agree with @icaleb that error is obviously caused because of Woocommerce 3.3.4 update:
* Fix - Use relative scheme for AJAX endpoint to avoid errors when using a mix of HTTP and HTTPS.Woocommerce mutlilingual v4.2.9 is incompatible with Woocommerce 3.3.4.
Quick help is uninstall Woo 3.3.4, install Woo 3.3.3 and wait for compatibility update – until that is your store unusable, because you cant pass checkout.
WARN: After Woo downgrade some plugins (WooCommerce Product Add-ons, WooCommerce PDF Invoices & Packing Slips) are not working.- This reply was modified 8 years, 1 month ago by gore.m.
Thanks you @corylamleorg
I thought it is problem with URLs that caused Duplicator, but problem is caused by Woocommerce x WPML.
Thanks youForum: Plugins
In reply to: [WooCommerce] Error with WPML after updating to 3.3.4As @christian70 sugested, Ive downgraded to Woocommerce 3.3.3 and I can confirm errors are gone. And I think I can agree with @icaleb it is obviously because of 3.3.4 Woocommerce 3.3.4 update:
* Fix - Use relative scheme for AJAX endpoint to avoid errors when using a mix of HTTP and HTTPS.Unfortunately Woocommerces “Status page” losed here itself sense, it should warn that Woocommerce mutlilingual v4.2.9 is “Not tested with the active version of WooCommerce” or is incompatible with Woocommerce 3.3.4.
Hi, thanks you for your reply.
It is not exactly URL.
If you open Chrome Dev Tool and refresh page, you can see on Network > XHR that there is 404 error from wc-ajax=get_refreshed_fragments.
And on Checkout page there is one more error wc-ajax=update_order_review.Thanks you
Forum: Plugins
In reply to: [WooCommerce] Error with WPML after updating to 3.3.4OK, thanks you