David Jensen
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Split table on several pagesHello
Out of the box the table should wrap without issue to the second page of the PDF. Would you mind contacting me via email at [email protected] and sending me the link to your website so I can troubleshoot for you?
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Do not display cart totalGreat!
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Input field in pdfSounds good
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Input field in pdfCurrently it is not possible to have a fillable PDF. What I would recommend is to add a new product field for color, where the user specifys the color they want before adding the product to the cart. This can be accomplished with a plugin such as WooCommerce Extra Product Options
Hope this helps
Hello
Regarding the first request, this plugin is not designed to send quotes / offers to customers from the backend, you might want to look for a plugin designed specifically to send quotes to customers.
The shipping costs and taxes will be applied to the PDF if the customer first enters in their shipping details however.
To add additional content to the top or bottom of the PDF, you will need to copy the plugin file
templates/cart-table.php
to your child theme folderwoocommerce/wc-cart-pdf/cart-table.php
and then make your modifications there.Hopefully this can get you started in the right direction, cheers
Forum: Plugins
In reply to: [WooCommerce Cart PDF] How do I know it works? No link, no backend?@panicky Hi and apologies for the delay in response. As it was mentioned in the SO link, the button is generated by hooking into the
woocommerce_proceed_to_checkout
hook which appears in the cart. If your theme overrides the WooCommerce cart and this hook does not execute then the button will not render, in which case you will need to add the button to a different hook.Forum: Plugins
In reply to: [WooCommerce Cart PDF] Error when clicking on “Download cart as pdf”@streamalex This would be a PHP error being thrown. I would be happy to troubleshoot this for you, would you mind sending me an email at david at dkjensen.com
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Cyrillic font in PDFFixed in v1.0.5
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Please fix error font after exportFixed in v1.0.5
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Please fix error font after exportI am responding to you via email, standby
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Please fix error font after exportHello, could you please try this fix to see if it will work for you?
https://github.com/dkjensen/wc-cart-pdf/wiki/Fix-for-fonts-not-rendering-properly
Forum: Plugins
In reply to: [WooCommerce Cart PDF] Cyrillic font in PDFHello, the default language does not support Cyrillic fonts but you can easily change this to a font that does, for example Noto Sans. Place this in your themes functions.php file
/**
* Change PDF font to Noto Sans for language support
*
* @return void
*/
function child_theme_wc_cart_pdf_before_template() {
?><link href=”//fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap&subset=cyrillic,cyrillic-ext,devanagari,greek,greek-ext,latin-ext,vietnamese” rel=”stylesheet”>
<style>
body {
font-family: ‘Noto Sans’, sans-serif;
}
</style><?php
}
add_action( ‘wc_cart_pdf_before_template’, ‘child_theme_wc_cart_pdf_before_template’ );
Hello
Do you mean recurring payments using WooCommerce subscriptions?
Forum: Plugins
In reply to: [Colorful Categories] Widget theme filterThanks buddy
Forum: Plugins
In reply to: [Colorful Categories] Widget theme filterOn second thought, I was actually referring to the HTML structure being filtered, rather than just the CSS. For example, the plugin by default outputs the background color of the category on the inside a list item. Rather, I would like to just have a circle or a line, rather than the whole background be the color of the category. Or something like this example, where the number of posts has the background color: https://demo.mekshq.com/gridlove/?p=1411
Let me know if this is possible, thanks for your assistance ??