leavai
Forum Replies Created
-
Forum: Plugins
In reply to: [Sensei LMS Certificates] PHP Fatal ErrorHi Animesh, thanks for your reply.
I try step by step your recomendations but the error persists.
I updated Sensei LMS to the latest version (4.11.2) and reinstall the sensei certificates plugin. When I want to see a certificate, this message is displayed.
Warning: stat(): stat failed for /home/c1890651/public_html/wp-content/plugins/sensei-certificates/lib/tfpdf/tFPDF/../font/unifont/AdegaBold.ttf in /home/c1890651/public_html/wp-content/plugins/sensei-certificates/lib/tfpdf/tFPDF/PDF.php on line 1042
Fatal error: Uncaught RuntimeException: Can’t open file /home/c1890651/public_html/wp-content/plugins/sensei-certificates/lib/tfpdf/tFPDF/../font/unifont/AdegaBold.ttf in /home/c1890651/public_html/wp-content/plugins/sensei-certificates/lib/tfpdf/tFPDF/TTFontFile.php:61 Stack trace: #0 /home/c1890651/public_html/wp-content/plugins/sensei-certificates/lib/tfpdf/tFPDF/PDF.php(1053): tFPDF\TTFontFile->getMetrics(‘/home/c1890651/…’) #1 /home/c1890651/public_html/wp-content/plugins/sensei-certificates/classes/class-woothemes-sensei-pdf-certificate.php(141): tFPDF\PDF->AddFont(‘adegabold’, ”, ‘AdegaBold.ttf’, true) #2 /home/c1890651/public_html/wp-content/plugins/sensei-certificates/classes/class-woothemes-sensei-certificates.php(762): WooThemes_Sensei_PDF_Certificate->generate_pdf() #3 /home/c1890651/public_html/wp-includes/class-wp-hook.php(308): WooThemes_Sensei_Certificates->download_certificate(”) #4 /home/c1890651/public_html/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array) #5 /home/c1890651/pub in /home/c1890651/public_html/wp-content/plugins/sensei-certificates/lib/tfpdf/tFPDF/TTFontFile.php on line 61
The PHP version is 7.4
Me respondieron del soporte oficial de MercadoPago (3 semanas despues de haber enviado la consulta) indicando que han deshabilitado esta opcion y no creen que vuelvan a incorporarla en futuras versiones.
La verdad… no entiendo como descuidan asi a sus integradores / desarrolladores, ya que esto nos perjudica muchisimo.
Quiza la solucion sea crear un desarrollo propio en conjunto con todos los que formamos parte de este foro.. porque el soporte técnico deja muchísimo que desear. Que opinan?
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Fallos en suscripcionesHola! tengo el mismo problema, aparentemente con la version 3.0.17 funcionan las suscripciones, pero no asi los pagos convencionales… cuando van a resolver el inconveniente MercadoLibre?
Hi!
I have the same problem with My website. The worst of all is that the client doesn’t receive the email confirmation and they make the payment twice because he think that the order has not been placed. I need to solve it urgently!Forum: Plugins
In reply to: [Invoices for WooCommerce] Orders double booked and jquery depreciationHi!
I have the same problem, did You solve it?Hi @lukefiretoss , Did you solve this?
Forum: Plugins
In reply to: [Brevo for WooCommerce] Apply Product Name tag on Successfull CheckoutHi @mspsrijan , did you solve this?
Hola! para resolverlo temporalmente te recomiendo volver a la Versión 4.0.8, yo lo resolvi temporalmente de esta manera hasta que resuelvan el issue.
https://downloads.www.ads-software.com/plugin/woocommerce-mercadopago.4.0.8.zip
Saludos!
Hello!
Have you been able to solve this problem? I have the same error.
Thank you!
Forum: Plugins
In reply to: [Payment Plugins Braintree For WooCommerce] Send products infoHi! thanks for your reply. I found that filter in the class-wc-braintree-gateway file. I added the following code to this line
$attribs = array( 'amount' => $order->get_total (), 'lineItems' => $order->get_items(), //this is my new line 'taxAmount' => bwc_is_wc_3_0_0_or_more () ? wc_round_tax_total ( $order->get_total_tax () ) : $order->get_total_tax () );
How could I send only the product info like product name, price, quantity and shipping info?
Thank you four your help!
- This reply was modified 5 years, 4 months ago by leavai.
Forum: Plugins
In reply to: [WooCommerce] Reset custom order for product categoriesHi!
You can use some plugin like this
https://www.ads-software.com/plugins/simple-taxonomy-ordering/
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Customer Login Error 500I resolved it applying this code in functions.php to redirect users to “orders” page after a successful login.
//Redirect after login function my_login_redirect( $url, $request, $user ){ if( $user && is_object( $user ) && is_a( $user, 'WP_User' ) ) { if( $user->has_cap( 'administrator')) { $url = admin_url(); } else { $url = home_url('/orders /'); } } return $url; } add_filter('login_redirect', 'my_login_redirect', 10, 3 ); //End Function Redirect after login
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Gift Card Plugin compatibleHi Oscar!! Could you send me more info about this? I’m interested in upgrade to Pro.
Thanks!
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Add-on category requiredHi! thanks for reply.
For example, if I need to select a flavor of drink, I should only be able to choose one from the list and not two options at the same time. I’m thinking that the best thing for these cases would be to use a radio button and not a checkbox. How can I solve it?
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Gift Card Plugin compatibleOscar, thanks for your reply.
I need to sell Gift Cards in multiple currencies, and if I create a coupon it applies only to default shop currency.
How could I solve this issue?