marcobeccari
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Error in qtransxf programmingI strongly suggest you to switch to the new qtranslate-xt plugin (not so new actually). You can find it on github: https://github.com/qtranslate/qtranslate-xt
Thank you! I had this problem, and you helped me spotting out the issue with the javascript merging from plugin WP-Optimizer. It’s not a default option, so it doesn’t affect your site as long as you activate the option.
Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuesI had problems with 3.9.1 so I downloaded the previous version (3.9.0) from the qtranslate github page and substituted. Now it works again…
I hope this helps you.Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issues@directordayking
github plugins don’t have the auto update option via wordpress. You need to install the plugin “github updater” on your website. I highly recommend you to do so. ??Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuesyes, now you will probably see an update available for qtranslate-xt, unless you have the latest version.
Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuesho cercato, non si può, pensavo di sì! sorry my bad
Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issues@directordayking ciao ancora, intendevo di scrivermi in privato in modo da poter usare l’italiano, non credo sia molto corretto usarlo qui.
Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issues@directordayking
Hi, yes I’m italian, your can PM me if you need help with Github updater. You can download it from here: https://github.com/afragen/github-updaterI don’t like Gutemberg, I use the classic editor plugin.
Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuesHi Giuseppe,
qTranslate xt works perfectly with woocommerce. I’ve installed GitHub Updater on my wordpress site, it takes care of checking whether an update for the qtranslate Xt is available and it prompts automatically in case it is.
My only issue with XT is in the product widgets (most viewed, most popular etc..), where it doesn’t work properly, but keep showing the code [:it] [:en] and so on…Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuesyes, that’s what I meant. XT
Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuesHi stevr1it
I installed it months ago, but still see the 2 languages and the relative tags on the widget. Can’t figure out why..Forum: Plugins
In reply to: [qTranslate X] Woocommerce widget issuessame, following…
- This reply was modified 4 years, 8 months ago by marcobeccari.
Forum: Reviews
In reply to: [qTranslate X] Kickstarter for qTranslate-X?Count me in, I will be more than happy to donate to see this plugin up to date with the latest versions of wordpress.
ciao Diana,
I assume you are editing the invoice.php inside of /wp-content/themes/mystile/woocommerce/pdf/”yourtemplatename”/invoice.php (where “yourtemplatename” is the name you specified for your custom template in the plugin interface).
Anyway, better if I send you all the code from the opening <table><table class="order-data-addresses"> <tr> <td class="address billing-address"> <!-- <h3><?php _e( 'Billing Address:', 'woocommerce-pdf-invoices-packing-slips' ); ?></h3> --> <?php $this->billing_address(); ?> <?php if ( isset($this->settings['display_email']) ) { ?> <div class="billing-email"><?php $this->billing_email(); ?></div> <?php } ?> <?php if ( isset($this->settings['display_phone']) ) { ?> <div class="billing-phone"><?php $this->billing_phone(); ?></div> <?php } ?> <!--AGGIUNTA Codice Fiscale o P. Iva --> <div class="billing-phone"><?php $this->custom_field('myfield1', 'P.IVA/C.F.:'); ?></div> <!--END--> <!--AGGIUNTA Gender Selection --> <div class="billing-phone"><?php $this->custom_field('myfield2', 'Sesso/Gender:'); ?></div> <!--END--> </td> <td class="address shipping-address"> <?php if ( isset($this->settings['display_shipping_address']) && $this->ships_to_different_address()) { ?> <h3><?php _e( 'Ship To:', 'woocommerce-pdf-invoices-packing-slips' ); ?></h3> <?php $this->shipping_address(); ?> <?php } ?> </td> <td class="order-data"> <table> <?php do_action( 'wpo_wcpdf_before_order_data', $this->type, $this->order ); ?> <?php if ( isset($this->settings['display_number']) ) { ?> <tr class="invoice-number"> <th><?php _e( 'Invoice Number:', 'woocommerce-pdf-invoices-packing-slips' ); ?></th> <td><?php $this->invoice_number(); ?></td> </tr> <?php } ?> <?php if ( isset($this->settings['display_date']) ) { ?> <tr class="invoice-date"> <th><?php _e( 'Invoice Date:', 'woocommerce-pdf-invoices-packing-slips' ); ?></th> <td><?php $this->invoice_date(); ?></td> </tr> <?php } ?> <tr class="order-number"> <th><?php _e( 'Order Number:', 'woocommerce-pdf-invoices-packing-slips' ); ?></th> <td><?php $this->order_number(); ?></td> </tr> <tr class="order-date"> <th><?php _e( 'Order Date:', 'woocommerce-pdf-invoices-packing-slips' ); ?></th> <td><?php $this->order_date(); ?></td> </tr> <tr class="payment-method"> <th><?php _e( 'Payment Method:', 'woocommerce-pdf-invoices-packing-slips' ); ?></th> <td><?php $this->payment_method(); ?></td> </tr> <?php do_action( 'wpo_wcpdf_after_order_data', $this->type, $this->order ); ?> </table> </td> </tr> </table>
Hi Diana,
Yes the file I edited is invoice.php and the code goes right after the DIV billing address (doing so you have the p.iva/c.f. value just below the other customer’s info when the Pdf is rendered).