spacemind
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Warning: array_flip(): Can only flip STRING and INTEGER valuesI have same issue. I haven’t used any database cleaning tools.
Sure, take a look: https://gist.github.com/spacemind-studio/ec39b2259cf1d51f3dceb15946642f0c
It was made for my own purpose, maybe you’ll find some field to improvement.
In short:
– I’ve added action to record sales for variations
– I’ve added function to get total sales from variation
– I’ve updated code of your plugin withif($product->is_type( 'variable' )){
Additionaly I’ve wrote little javascript https://pastebin.com/1NvZ9ZLi for my own purpose to make something like this: https://i.imgur.com/dQfkNa8.png
Update: I managed to make it work with couple tweaks in code
Forum: Plugins
In reply to: [W3 Total Cache] Paginated comments not purgedNo I’m not using any custom plugin. We just added comment pagination with paginate_comments_links() function. My settings in Purge Policy are as following:
Forum: Plugins
In reply to: [W3 Total Cache] Paginated comments not purgedThese are normal blog posts with paginated comments.
Is there any regular expression I can paste there to force purging? Do you have any sample syntax? I mean something like this:[all posts]/comment-page-[every pagination number]
so this would purge after comment publish such links as /sample-post/comment-page-1 and also for e.g. /sample-post-1/comment-page-33 etc.
Forum: Plugins
In reply to: [W3 Total Cache] Paginated comments not purgedSorry I meant comment publication.
If I purge post cache manually it works and cache is being reloaded properly.
After publishing new comment without purging manualy cache, only /post has correct cache date, post/comment-page-1 etc. are outdatedForum: Plugins
In reply to: [W3 Total Cache] Lazy Load exclude filterHello, possibly any update on this topic?
Forum: Plugins
In reply to: [W3 Total Cache] Lazy Load exclude filterOnly on Safari 13.0.5. I think that problem lies in fact that print function fires before images are fully loaded so that’s the reason I asked about filter/code to disable lazy-load feature.
- This reply was modified 4 years, 10 months ago by spacemind.
Forum: Plugins
In reply to: [W3 Total Cache] Lazy Load exclude filterIt’s simple JS function:
window.onload = function() { window.print(); }
Problem occurs on Safari 13.0.5
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Stock availability for product with variations@yithemes ist there any chance to get feedback from You?
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Stock availability for product with variationsI’m talking about situation when one of the variations is in stock, but in wishlist it shows that it isn’t. Please take a look:
100 ml – out of stock
250 ml – in stockWishlist status – out of stock
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Authors – full name not nicknameYes, I understand that clearly, but when I choose ‘author’ it displays authors nicknames – you can see it there under label “Autorzy”: https://bosonamacie.pl/wszystkie-artykuly-2 All that I wanted to do is to show Full name instead of nickname as I have it now ??
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Authors – full name not nicknameSorry then, I thought that your plugin allows by default to sort articles by author.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] ID order of itemsI’ve found solution:
add_filter('uwpqsf_taxonomy_arg', 'change_order','',2); function change_order($args,$formid){ $args['orderby']='id'; $args['order']='ASC'; return $args; }
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Sort filter results by date in dropdownHow to change position of this dropdown? I want it below my 2nd taxonomy field