Last active
January 8, 2018 14:09
-
-
Save kreamweb/50574b1049d3fcc33c22fe09b69cc9da to your computer and use it in GitHub Desktop.
- remove the footer in quote-footer.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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