Aleš Menzel

Results 33 comments of Aleš Menzel

@greg-db Thank you! I have looked under the hood, and the library uses 'superagent' package which should support it. ``` apiRequest = request.post(getBaseURL(host) + path) .type('application/octet-stream') .set('Authorization', 'Bearer ' +...

When sending **new FileResponse( ... )** from nette, instead of forcing the download of the file, it sends the file represented as a string (see http://prntscr.com/9azo8u). ``` php public function...

Taky bych rád viděl variace. Složité to nebude. Zde jsou snippety kódu, který lze použít. ``` php if ($produkt->is_type("variable")){ foreach($produkt->get_available_variations() as $variation){ $variation = new WC_Product_Variation($variation['variation_id']); /* Zde již lze...

Velké množství produktů jsem řešil drobnou úpravou skriptu následovně: ``` ... //foreach loop pro projití produktů if ($key%25 == 0){ // po 25 produktech se uloží do souboru file_put_contents($file_name, $xmlWriter->flush(true),...

V nové verzi WPML se změnila funkce na: ``` if (!apply_filters( 'wpml_post_language_details', NULL, $product->ID )['different_language']) { ... } ``` ,která vrátí, zda zobrazovaný produkt je v jazyce, ve kterém se...

Hi, is there anything I can dig up, that could help solve this very annoying issue? https://github.com/spaceship-prompt/spaceship-prompt/issues/1236 PS: Some of the issue is related to `SPACESHIP_PROMPT_ASYNC=false` where I am just...

@kolchurinvv thanks for the workaround, I was so annoyed by this issue I had to switch to a different zsh prompt/theme... and this issue seems to not move anywhere, so...

@denysdovhan I have been digging and trying to help without a response from the maintainer other than that it is a duplicate issue https://github.com/spaceship-prompt/spaceship-prompt/issues/1236 . **I offered to help investigate...

Hi @MeCapron , @denysdovhan I was digging some more and I have found whats causing my prompt to act weird. The issue in my case is caused by the right...

@denysdovhan I had all of these turned off when testing it ``` SPACESHIP_PROMPT_ASYNC=false SPACESHIP_PROMPT_ADD_NEWLINE=false SPACESHIP_PROMPT_SEPARATE_LINE=false SPACESHIP_RPROMPT_ADD_NEWLINE=false ``` Here is my complete configuration in `~/.spaceshiprc.zsh` for the spaceship prompt for reference....