BackuPs
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Is woo commerce removing inline style in the page?it is caused by line 712 in woocommerce/includes/wp-template-functions.php.
It should only sanitize the description and not the whole content ! Please revert that change as this is not correct code.
Forum: Plugins
In reply to: [Polylang] WordPress 4.8 broke polylang (and other translations plugins)Apparently you have the same issue as me. https://wordpress.org/support/topic/wp-4-8-breaks-polylang-wpquery-or-term_get_by-when-slugnames-are-used/
I am waiting more the 3 weeks to get a reply and i have seen threads before mine that are waiting on this issue getting fixed.
It looks like the polylang developer does not think it is important to reply or fix the issue. Very frustrating !
Another thread on this https://github.com/hyyan/woo-poly-integration/issues/187 He is waiting since june this year.
Is it possible to get some feedback from the developer on this as this is a serious issue and bug?
To Add to this the wpml solution does not work for polylang.
So adding the same shortcode in the translated page or using slugnames in settings does not get the correct ID for the category selected using polylang.
Polylang needs a different kind of solution i guess. But the wpml functions will point out where to look for it.
Forum: Plugins
In reply to: [Polylang] WP_Query and category_nameHi
You can read more here https://wordpress.org/support/topic/wp-4-8-breaks-polylang-wpquery-or-term_get_by-when-slugnames-are-used/
Have a great day !
Forum: Fixing WordPress
In reply to: Fatal error undefined function get_header() in index.php on line 1The error is caused by somebody calling directly your index.php in the themes folder.
f.e. http://yourwebsite.com/wp-content/themes/theme-name/index.php
The fix is easy and you only need to add this in the top of the index.php just after the first <?php and before the get_header(); call, so you get this.
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } get_header();If you want to use the linux4me solution the code should be like this as nobody want to add their website url into that file on every update of the theme and you also want to cover https as well as http websites.
if (function_exists('get_header')) { get_header(); } else { $url = "/"; header("Location: " . $url); exit();}`
Forum: Plugins
In reply to: [WooCommerce] Variant product is adding unwanted srcset code to imagewhy is there not a single-product.php or a filter for the creation of the variant images? So that we have full control of that image as well. Now woo is just grabbing the default images that are generated by the woo image settings for display single products image. But woo provides a products.image.php for any normal product to override that image. Pretty useless when using variant products as then woo is replacing the image url the product-image.php has created by javascript.
To me this feels like a bug !
Forum: Plugins
In reply to: [WooCommerce] V 3.0 Single product Thumbnail columns filter does not workI mentioned already in my initial thread that it only sets the classname to the wrapper. This worked out of the box in v 2.6.14. Why does woo strip abilities? Does not make any sense to have such small thumbnails in a row below the image.
Why is the classname set when it does not do anything? Then i could have easily added the classname myself.
It really is bizar what Woo is doing here. Stripping out abilities we had before.
Forum: Plugins
In reply to: [WooCommerce] V 3.0 Single product Thumbnail columns filter does not workThat does not get me the columns back…. i have been there. It will only work when i revert back to the old product-thumbnails.php which adds the columns but then i loose the zoom ability.
this realy ……. what woo is doing here !
There should be at least some way to determine and control the columns for the thumbs. Why is there other wise the filter in the product-image.php and why does it set the classname to the outer wrapper? I believe they made a mistake in woo v 3.0
Even the old column css for the thumbnails.php is still in the global woo layout css.
Your answer does not help or make sense.
here is the code from the product-image.php
$columns = apply_filters( 'woocommerce_product_thumbnails_columns', 4 );Then why is this there if it does not work anymore? Does not make sense !
Forum: Plugins
In reply to: [Analyticator] Plugin causing get_currentuserinfo deprecated messageChange the code to this
//global $current_user; //get_currentuserinfo(); $current_user = wp_get_current_user();Unbelievable this has not been fixed after 2 months.
Forum: Plugins
In reply to: [Stealth Login Page] Stopped working in wpms wp 4.7it also happens in a single server install. the plugin crashes the update mechanism. you have to turn off the plugin before updating and turn it back on afterwards.
Forum: Plugins
In reply to: [Stealth Login Page] Stopped working in wpms wp 4.7Well it only happened while updating. I removed the plugin, updated and reinstalled it and it seems to work again. Apparently some changed in wp 4.7 that causes your plugin to provide that error on updating.
Thanks and looking forward to a update of the plugin
- This reply was modified 9 years, 5 months ago by BackuPs.
Forum: Plugins
In reply to: [WooCommerce] Quatity spinners disappear after update cart!never mind…. firefox was still caching the old javascript.
it works now. thank you
Forum: Plugins
In reply to: [WooCommerce] Quatity spinners disappear after update cart!Hi
i saw the update of the plugin but the spinners still disappear after pressing + / – in the cart and updating the cart.
even in the default theme
Try it yourselves
http://defaultheme.backupsdemo.nl/winkel
1) add a product.
2) goto the cart and increment the amount by the +/-update the cart by the button
after the update the spinner is gone
thanks
Forum: Plugins
In reply to: [WooCommerce] No spinner when updating order detail in checkout pagesame here try this plugin in the default theme
https://wordpress.org/support/plugin/woocommerce-quantity-increment
and the same will happen in the default theme aswell.
Woocommerce changed something causing any spinner plugin to fail now ! Its not related to the theme