Flavio Henrique
Forum Replies Created
-
Forum: Plugins
In reply to: [Juno Split] Incluir Frete no SplitI am not a Spammer. I think your anti-spam got it wrong.
Forum: Plugins
In reply to: [Juno Split] Incluir Frete no SplitResolvemos o problema internamente aqui.
Vou deixar aqui nossa solução para os colegas futuros.
Pessoal não sei se vocês sabem mas O plugin da Juno aplica o Split encima do valor total do produto Excluíndo o frete, até aí tudo bem.
Porem a Juno aplica a comissão dela encima do valor total Incluindo o frete ou seja, dependendo do seu modelo de negócio e modelo de comissionamento você sempre ficará no negativo pois a comissão do Admin do Marketplace sempre será menor que a comissão que a juno cobra.
Aqui no Clube das Mãezinhas [ redundant link removed ] Nossa regra de negócio é assim.
Para alguns vendedores especiais temos a comissão individual de 6,5% e para os demais 12%.
Também optamos por permitir o parcelamento até 3x se júros, em 90% das simulações nosso ganho fica negativo pois a comissão da Juno sempre será maior o meu ganho liquido devido ao problema relatado acima.
Qual foi a solução:
Editamos o Plugin (Por nossa conta) – O Arquivo que editamos foi …
/wp-content/plugins/juno-split/includes/marketplaces/dokan/class-juno-dokan.php
Neste arquivo incluímos por nossa conta o seguinte script.
// Variavel que recupera o valor total da transação incluindo o FRETE. $total_editado = get_post_meta($suborder_id,'_order_total',true); $individual_vendor_percentage = get_user_meta( $vendor_id, 'dokan_admin_percentage', true); $comissao_global = dokan_get_option('admin_percentage','dokan_selling', 10); // Se houver um comissionamento individual para o seller vamos trabalhar com ele, caso contrário vamos usar o comissionamento global if($individual_vendor_percentage != ""){ $total = ($total_editado * $individual_vendor_percentage) / 100; $total = $total_editado - $total; }else{ $total = ($total_editado * $comissao_global) / 100; $total = $total_editado - $total; }Este script foi criado por nós para resolver nossa situação de forma emergêncial uma vez que a juno não tem da nenhum suporte neste sentido.
Seria interessante ter essa opção nativa no plugin em suas versões posteriores uma vez que a Juno cobra sua comissão com o frete incluso e não faz sentido o admin ser cobrado sem o frete, o valor fica defasado.
Abraços.
- This reply was modified 4 years, 5 months ago by Jan Dembowski.
- This reply was modified 4 years, 5 months ago by Jan Dembowski.
My idea can be done in 2 ways… The first would be if there was a field for me to add my webhook and every time I had an abandoned cart, it would run this webhook.
Or if there was a hook so I can implement my API inside it.
Both paths would be very valuable.
Hello Thank you very much for answering my ticket. Your plugin is the best of all including you will get a premium version.
Well come on… Basically, I wanted to receive the same data that you store in the database
order id
Name
Phone (if any)I’m developing an integration with WhatsApp where my client and I will receive the data and I’ll put both of them in contact.
Today the solution you send email but my client does not use email very often so if I have whatsapp from my client who tried to buy I can integrate with a WhatsApp API to speed up service.
Thanks.
Forum: Plugins
In reply to: [NSFW] [Juno Split] A soma dos valores ‘charge.split[].amount’No nosso caso essa opção não funciona pois no nosso modelo de negócio não cobramos comissão dos sellers e se eu adiciono juros no cartão esse juros vem para o marketplace e é justamente isso que eu não quero pois não cobramos porcentagem ou seja esse resíduo precisaria ir para o seller
Forum: Plugins
In reply to: [NSFW] [Juno Split] A soma dos valores ‘charge.split[].amount’Também estou neste mesmo barco. Eu quero passar o juros do parcelamento todo para o seller e quando eu adiciono este juros ao valor total da transação e zero o juros para o admin ele da este erro.
Forum: Plugins
In reply to: [Certificate customizer for Tutor LMS] Customize the certificateThere is a bug in their plugin and I am posting a fix here for everyone who needs it.
Open the certificate-customizer-for-tutor-lms.php file located in the wp-content / plugins / certificate-customizer-for-tutor-lms folder
Change their array to
$ templates ['dhoritry'] = array ( 'name' => __ ('Dhoritry', 'dhoritry-cert'), 'orientation' => 'landscape', // landscape, portrait 'path' => trailingslashit (plugin_dir_path (DHORITRY_FILE). 'templates / dhoritry'), 'url' => trailingslashit (plugin_dir_url (DHORITRY_FILE). 'templates / dhoritry'), 'preview_src' => trailingslashit (plugin_dir_url (DHORITRY_FILE). 'templates / dhoritry /'). 'preview.png', 'background_src' => trailingslashit (plugin_dir_url (DHORITRY_FILE). 'templates / dhoritry'). 'background.png' );Their array is missing 2 lines of code.
When you install it it is like this.
https://prnt.sc/1290lytAfter the change it needs to look like this.
https://prnt.sc/1290n71This worked for us.
Regards
Flavio Henrique – Escola Ninja WPHello, the user is not derived only the level of access that is derived by taking away the student’s full access.
I work with an annual plan and there is no recurrence enabled, people bought it at the end of last year on blackfriday, that is, they only expire at the end of the year 2021, my payment system is to pay me a gateway here in Brazil.
Thanks.
Hello, thank you very much for your answer … I understand perfectly, but where could I disable this feature because I am using a members plugin here and it is not blocking the lesson I can only block the course page but when it enters the same lesson with the Permission on the lesson page it lets the user see … If you give me more or less the way to do it here I thank you.
Obrigado Claudio.