Sooner or later you will face with changing back button title in navigation bar. This may seem simple. But after few hours trying to change this damn text, […]
How to proper use UIImage with tint color?
This can seem trivial, but I saw lot of people complaining about not working tint color when using UIImage. Here is the proper way: UIImageView *imageView = [[UIImageView […]
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> […]
Sharing data between UIViewControllers
If you are new to iOS programming this may take you a while to found out. But I’m here to help so will give you ready to use […]
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: AppDefaultZone does not support sync semantics
If you just started playing with CloudKit, probably you will see that error trying to implement custom synchronization. Why need custom synchronization? Because receiving push message each time […]