gludie
Forum Replies Created
-
Forum: Plugins
In reply to: [Invoices for WooCommerce] All invoices with a single click -> printForum: Plugins
In reply to: [Invoices for WooCommerce] How to change color of the total amount on the pdfof course you can use also the existing class total-amount, maybe a third option:
just delete the style amount at h1:
example:
from:
<h1 class="amount"><?php echo wc_price( $this->order->get_total() - $this->order->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></h1>
to:
<h1><?php echo wc_price( $this->order->get_total() - $this->order->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></h1>then your changes in style total-amount will also affect the price 😉
ps: of course you would not need to add amount to the style.css of course
- This reply was modified 9 years, 7 months ago by gludie.
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to change color of the total amount on the pdfHi,
two possibilities:
1. add the following style to the templates style.css (in the default template it is used only for the price)
.amount { color: black; }This will change the color of the price … but going for option 2 will show you also the “Thank you … ” text below the price.
in the body.php ad the class to the span, which surrounds the price and “thank you …” text and remove the class amount from the h1 tag for the price.
example for standard template micro:
<span class="amount"> <h1><?php echo wc_price( $this->order->get_total() - $this->order->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></h1> <p><?php echo $this->template_options['bewpi_intro_text']; ?></p> </span>I hope this helps (I assume, you are aware of modifying the template, as you had already some tries with the css.
kr dieter
- This reply was modified 9 years, 7 months ago by gludie.
Forum: Plugins
In reply to: [WooCommerce] Spinning Disks in Your Order area of Checkout PageHi jjhardy,
I got this “spinning disk” some days ago as well.
Reproducable case:
Use in a shipping fee formula (under zones or in shipping classes) a wrong shortcode (eg. qyt instead of qty) and set in your wp-config file Debug=True.Set the config value to false: your running disc 😉 disappears – of course, the shipping calculation is not done / with no result.
In this case, i would recommend to check your logs in the backend …
debug=false in development or test mode would bot bena good idea 😉
But worth to check what happens.Then (or first): you can disable most of your plugins – or consider, which plugin may interfear with your new versions (you did an update, right ?)
KR
Forum: Plugins
In reply to: [WooCommerce] Shipping: Problems with ZIP Code Rangesa workaround for this ranges problem would be:
for range 1000-2999 define 2 lines with
1*
2*but mixing wildcards with non wildcard zipcodes fails !
eg. the folling list in zipcode box will not work:
1*
2000Forum: Plugins
In reply to: [Invoices for WooCommerce] Doesn’t Work At all!!!!!!Hi,
(in the admin order detail screen you should see a “meta box” at the right side – where you can generate and afterwards view it.
If you have generated a invoice already, then a “pdf” icon is also shown in the admin order overview …how did you install the plugin (just via plugin search and install) ?
have you “direct” access to your plugin directory (to verify the content in the woocommerce-pdf-invoices directory) ?
Forum: Reviews
In reply to: [Invoices for WooCommerce] Great Supports!@baaaas: well, for our need I only had to remove this big block with total amount above the details/item table. Definitely a nice eyecatcher, but for my partner it was too dominant; so, I just removed it (in the copied body template) for our need. if we will have future enhancements or changes on the invoices, I will share them with you. if this is worth an option / setting in the admins area – I doubt – as it can be easily managed by the templates …
one improvement (you might already have built in) is worth to mention: the textareas in the admin settings area could support the built in wp_editor. Advantage: preformatted text (example: bold company name, italic phone numbers etc, links (hrefs)) … but may be this works in the premium or newer plugin already ;-).
Forum: Reviews
In reply to: [Invoices for WooCommerce] Great Supports!new features in your plugin ? – *cool* – cant await them 😉
I guess there are no emails Bas, … only new topics in this forum here for you 😉 … I guess Andy’s complaint refers to: https://wordpress.org/support/topic/global-invoice-template/#post-8172689
kr
… you are welcome – like to share my experience with your great plugin- must admit, the handling of templates works like a charme
kind regards,
Dieter- This reply was modified 9 years, 8 months ago by gludie.
Forum: Reviews
In reply to: [Invoices for WooCommerce] Great Supports!hi andy, I was in the past excited about the support and sorry for you. May we can manage your problem together ?
what is your problem exactly ? – getting your own templates in place ?
kind regards,
DieterForum: Plugins
In reply to: [Invoices for WooCommerce] Global Invoice TemplateThe plugin author provides also good infos in the readme.txt file.
(adding your own templates) …kind regards,
DieterForum: Plugins
In reply to: [Invoices for WooCommerce] Global Invoice Templatewhich version do you use ?
quick easy (hack): modify the existing templates
or (better): copy and use new template (and change there the heading)check body.php template:
<h1 class="title"><?php _e( 'Global Invoice', 'woocommerce-pdf-invoices' ); ?></h1>consider your translations !
kr, Dieter
- This reply was modified 9 years, 8 months ago by gludie.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Date FormatHi Papin,
at a specific place / template or in general ? Please precise your problem – would help also others, if they have a similar problem 😉
kr
Forum: Plugins
In reply to: [Invoices for WooCommerce] Logo Not ShowingHi all,
I get the following error:
mPDF error: IMAGE Error (http://MYSITE/wp-content/uploads/2016/01/Logo_placeholder2_dark31.jpg): Error parsing image file – image type not recognised, and not supported by GD image create… investigation ongoing … will keep you updated
well, sorry, but it seems, that after updating the plugin (or others), the access denied issue is solved – can generate now pdfs.
how can the language to be forced to a specific one : eg. – pdf comes in german, want to have it in english or vice versa ?
and: the header logo is shown in the admin, but not in the pdf ?
Hi Bas,
also from me a great thanks for your job. Tried today to generate a pdf and get also Access denied, even I am administrator …
any idea ?