Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Created December 1, 2018 12:31
Show Gist options
  • Select an option

  • Save wpweb101/2a1eecdbae6e304764830c9165afa1e3 to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/2a1eecdbae6e304764830c9165afa1e3 to your computer and use it in GitHub Desktop.
Pdf Voucher code to set custom background image height and width for landscape view
<?php
// Code to set custom width for the pdf background image
function woo_vou_set_custom_bg_width( $height, $width){
return $width;
}
add_filter( 'woo_vou_pdf_land_bg_img_width', 'woo_vou_set_custom_bg_width', 10,2);
// Code to set custom height for the pdf background image
function woo_vou_set_custom_bg_height( $width, $height){
return $height;
}
add_filter( 'woo_vou_pdf_land_bg_img_height', 'woo_vou_set_custom_bg_height', 10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment