Satheesh Kumar
Forum Replies Created
-
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to display product’s variant sku?Hi @wbcomdesigns, I couldn’t find the meta.php file in woocommerce/templates folder.
- This reply was modified 9 years, 4 months ago by Satheesh Kumar.
Forum: Plugins
In reply to: [Products Per Page for WooCommerce] All products in drop downThank u so much. It works 🙂
Forum: Plugins
In reply to: [Invoices for WooCommerce] INR icon font not showing in pdf invoiceHurray!!
I found the solution.
Add the following code to ./wp-content/plugins/woocommerce-pdf-invoices/functions.php
function custom_bewpi_mpdf_options( $options ) {
$options[‘mode’] = ”;
$options[‘format’] = ”;
$options[‘default_font_size’] = 0;
$options[‘default_font’] = ‘dejavusans’;
$options[‘margin_left’] = 14;
$options[‘margin_right’] = 14;
$options[‘margin_top’] = 14;
$options[‘margin_bottom’] = 0;
$options[‘margin_header’] = 14;
$options[‘margin_footer’] = 6;
$options[‘orientation’] = ‘P’;
return $options;
}
add_filter( ‘bewpi_mpdf_options’, ‘custom_bewpi_mpdf_options’ );Forum: Plugins
In reply to: [Invoices for WooCommerce] Rupee Symbol ProblemHurray!!
I found the solution.
Add the following code to ./wp-content/plugins/woocommerce-pdf-invoices/functions.php
function custom_bewpi_mpdf_options( $options ) {
$options[‘mode’] = ”;
$options[‘format’] = ”;
$options[‘default_font_size’] = 0;
$options[‘default_font’] = ‘dejavusans’;
$options[‘margin_left’] = 14;
$options[‘margin_right’] = 14;
$options[‘margin_top’] = 14;
$options[‘margin_bottom’] = 0;
$options[‘margin_header’] = 14;
$options[‘margin_footer’] = 6;
$options[‘orientation’] = ‘P’;
return $options;
}
add_filter( ‘bewpi_mpdf_options’, ‘custom_bewpi_mpdf_options’ );Forum: Plugins
In reply to: [Invoices for WooCommerce] INR icon font not showing in pdf invoiceRupee symbol showing box when am creating PDF invoice please help to fix it..