Ever wanted to fetch your entities using complex query from inside you form class? Check out below.
Expected argument of type “string”, “NULL” given when using form in Symfony 4.1
Expected argument of type “string”, “NULL” given is very common question and seems to not be handled since Symfony 2
How to enable php-intl extension for php 7.1 using XAMPP on MacOS High Sierra
This may seem trivial, but in fact about 2 months ago some clever guys made changes in brew repository, so doing just: brew install php71-intl will show you […]
How to find Woocommerce products out of stock with stock greater then zero?
Sometimes, especially if you are using custom plugins to import stock data, you may find products with some stock value (greater then 0) but with stock flag set […]
How to make Woocommerce pages work with Polylang?
This can be really frustrating, you wanted your woocommerce shop running multilingual, but from cart page “Checkout” button leads to default language version? Solution is very simple, but […]
How to manually generate bootstrap.php.cache using Symfony 2?
Well, the easiest way is to use composer.phar update but if you don’t want to update all bundles and waste an hour of your time, you can use: […]
Quick tip: How to add WSSE Security headers in SoapUI?
Since this information is not easy to find, I want to share it with you. Valid WSSE security header should look like this: <soapenv:Header> <wsse:Security xmlns:wsse=”http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd” soapenv:mustUnderstand=”1″> <wsse:UsernameToken> […]
How to fix WooCommerce 404 error on product page
This can be frustrating when you are new to wordpres and/or woocommerce. You just created your first product, and got 404 when trying to see it. Fortunately solution […]
Quick tip: How to create WooCommerce product variants programmatically?
I found few solutions, but obviously none of them were working, so had to find it out by myself. So where to start – lets suppose we have […]