farkasdaniel
Forum Replies Created
-
Thanks for your help. I have checked the shipping settings. Everything was set up properly, but it does not work.
Forum: Plugins
In reply to: [Számlázz.hu integráció WooCommerce-hez] wc_szamlazz_xml filterSikerült megoldani végül:
function wc_szamlazz_xml_email($xml,$order) { if($xml->fejlec->dijbekero == 'true'){ $xml->elado->emailReplyto = "info@domain.hu"; $xml->elado->emailTargy = "Új díjbekérőd érkezett"; $xml->elado->emailSzoveg = " Kedves [vevőneve]! ... Rendelésed sorszáma: " . $order->get_order_number() . " ..."; }else{ $xml->elado->emailReplyto = "info@domain.hu"; $xml->elado->emailTargy = "Új számlád érkezett - FIZETVE"; $xml->elado->emailSzoveg = " Kedves [vevőneve]! ..."; } return $xml; } add_filter('wc_szamlazz_xml','wc_szamlazz_xml_email',10,2);Forum: Plugins
In reply to: [Számlázz.hu integráció WooCommerce-hez] wc_szamlazz_xml filterSajnos nem oldotta meg a problémámat. Most a wc_szamlazz_xml filterrel adom meg a Számla email tárgyát/szövegét, a wc_szamlazz_xml_dijbekero filterrel a Díjbekérő email tárgyát/szövegét, mégis a számlás szöveg megy ki a díjbekérővel is.
Forum: Plugins
In reply to: [Számlázz.hu integráció WooCommerce-hez] wc_szamlazz_xml filterKöszi a gyors választ! Ez elkerülte a figyelmemet.
Hi Jordy!
I would like an option, when I auto-rename a media file to the attached post title, then the media title and the media alt text can also be updated to the attached post title.
And when I have updated the post title, all of these (the media file name, the media title and the media alt text) can also bee updated automatically.
Thank you!
- This reply was modified 9 years, 2 months ago by farkasdaniel.
Try to click the Unsubscribe button on the top of this page:
Thank you for your help! I solved my problem on update. (I think, you missed a _ character at the _adverts_action in your code)
I use this:add_action( "adverts_post_save", "my_adverts_post_save", 10, 2 ); function my_adverts_post_save(Adverts_Form $form, $post_id) { if(adverts_request("_adverts_action") == "update"){ // your code to execute on advert update here. } }My other question: How can I call a custom function, when an advert has been deleted from the frontend (Ad manage page)? Thank you!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Multiple CurrencyHi Greg,
how can I use multiple currency for the adverts? For exapmple I would like to show a dropdown menu with enabled currencies on the Add form.
Thank you!Forum: Plugins
In reply to: [Számlázz.hu integráció WooCommerce-hez] Automata email küldés kikapcsolásaSzia!
Ezt találtam a dokumentációban:1.16 Milyen esetben történik tényleges email küldés?
Teszt fiók esetén a rendszer küld számlaértesítőt, de nem az xml állományban megadott emailcímre, hanem a
fiókhoz tartozó, a beállítások között megadott emailcímre.
Ha az xml fájlban a vevő adatainál megad email címet, akkor a rendszer az elkészült számlát számlaértesítő emailben
elküldi a vevő részére. Ez az alapértelmezett viselkedés.
Értelemszerűen: ha nem ad meg email címet, a Számla Agent nem fog számlaértesítő emailt küldeni.
Van arra is mód, hogy az xml adatok között szerepeltesse a vevő email címét, és kifejezetten kérje, hogy a Számla
Agent NE küldjön számlaértesítő emailt. Ebben az esetben az email címet követően az xml fájlban szerepeltesse
ezt a sort: <sendEmail>false</sendEmail>Itt letölthető a teljes dokumentáció:
https://www.szamlazz.hu/szamla/szamlaagent