exxis
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Checkout page summary box colorForum: Fixing WordPress
In reply to: Operation not permitted in chmod errorchecked it, it’s 755 as it should be for wp-admin. So I’m none the wiser.
was using the helper plugin, however it somehow stopped working, I’m getting the same error message again.
were do I have to put that file?
- This reply was modified 3 years, 11 months ago by exxis.
Forum: Fixing WordPress
In reply to: [NSFW] Blog post links open featured imagesit is more or less fixed now. It is currently a bug in WPML. This is the reply I got from there support
Hi there, Thanks you. The following workaround fixed the issue for me on my local copy: - Using FTP, open “wp-content\plugins\sitepress-multilingual-cms\classes\query-filtering\class-wpml-404-guess.php” - Replace the following snippet (line 36): 1 2 3 public function guess_cpt_by_name( $name, $query ) { $type = $query->get( 'post_type' ); $ret = array( $name, $type, false ); With this: 1 2 3 4 5 6 7 8 public function guess_cpt_by_name( $name, $query ) { $type = $query->get( 'post_type' ); //Workaround if (empty($type)) { $type = !empty($query->get( 'pagename' )) ? 'page' : 'post'; } //End of workaround $ret = array( $name, $type, false ); We are writing a errata about this bug. Please let us know if it worked for you.
Forum: Plugins
In reply to: [WooCommerce] Checkout Button in new tabas I’ve already wrote, the redirect is working but what I wanted to do is that if the checkout button is clicked, that the payment windows is opened in a new tab not the same one.
Forum: Plugins
In reply to: [WooCommerce] Bulk sale schedule price changeAs far as I see it I can only change a preexisting sale price not add one for example on every product -10%. So and that is the problem if the sale price is set on the product page, it’s automaticly applied even if no schedule is set and that is annyoing.
So got a little confused over the last few pages.
the code form @jarmerson
// Captcha ONLY on form pages. add_action( 'wp_enqueue_scripts', 'custom_load_contact_form_resources', 1 ); function custom_load_contact_form_resources() { global $post; if ( isset( $post ) && has_shortcode( $post->post_content, 'contact-form-7' ) ) { return; } remove_action( 'wp_enqueue_scripts', 'wpcf7_do_enqueue_scripts' ); remove_action( 'wp_enqueue_scripts', 'wpcf7_recaptcha_enqueue_scripts' ); }
Is the one which denies the script from loading on pages where no form is present right? Because the first code which was posted a year ago worked like a charm only on pages where contact form 7 was present recaptcha would load.
Because recaptcha v3 highly increased the loading times on some sites.Forum: Plugins
In reply to: [WooCommerce] Block specific email providerthank you, worked like a charm with Blacklister. Has exactly everything I want.
Forum: Plugins
In reply to: [NSFW] [All-in-One Video Gallery] Cloudflare Stream videosLooks like that it works, only one video is displayed and the video controls are clickable and its playing.
Can this code added to the theme child function.php so it does not get changed/removed if the plugin gets updated?
Forum: Plugins
In reply to: [WooCommerce] Checkout Page TaxForum: Plugins
In reply to: [WooCommerce] Checkout Button in new tabd
- This reply was modified 4 years, 5 months ago by exxis.
Forum: Plugins
In reply to: [WooCommerce] Checkout Page TaxYes that is correct, but not the behaviour I want, including taxes and excluding taxes behaves the same, it always displays the tax as separated price. Which I do not want, I want only the Total Prive display with the included tax and the VAT not listed at all as seperate field.
Forum: Plugins
In reply to: [WooCommerce] Checkout Button in new tabHello,
thank you for your answer. Yes the customer should also still be redirected, that is working correctly, it’s simply about that the existing checkout button should open in a new tab for the convieniece of the customer, is something goes wrong, ergo payment failed or he closes the window by accident he isn’t on our site anymore, with a new tab we can work around with that.