Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Last active January 8, 2018 14:09
Show Gist options
  • Save kreamweb/50574b1049d3fcc33c22fe09b69cc9da to your computer and use it in GitHub Desktop.
Save kreamweb/50574b1049d3fcc33c22fe09b69cc9da to your computer and use it in GitHub Desktop.
- remove the footer in quote-footer.php
<?php
if( defined('YITH_YWRAQ_PREMIUM') ){
add_action('yith_ywraq_quote_template_after_content', 'ywraq_bigfooter');
function ywraq_bigfooter(){
if( get_option('ywraq_pdf_footer_content') != '' ){
echo '<div class="footer" style="position:absolute;bottom:0px">';
echo get_option('ywraq_pdf_footer_content');
echo '<div>';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment