This file contains 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 | |
function run_tablepress_shortcodes_in_admin() { | |
if ( is_admin() ) { | |
TablePress::$model_options = TablePress::load_model( 'options' ); | |
TablePress::$model_table = TablePress::load_model( 'table' ); | |
$GLOBALS['tablepress_frontend_controller'] = TablePress::load_controller( 'frontend' ); | |
} | |
} | |
add_action( 'tablepress_run', 'run_tablepress_shortcodes_in_admin' ); |
This file contains 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 | |
// removes specific shortcode in PDF | |
function dkpdf_remove_shortcodes_bytag( $content ) { | |
$pdf = get_query_var( 'pdf' ); | |
if( $pdf ) { | |
remove_shortcode( 'responsivevoice' ); | |
$content = str_replace('[responsivevoice voice="Danish Female" buttontext="Læs opgaven"]', '', $content); | |
$content = str_replace('[/responsivevoice]', '', $content); |
This file contains 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 | |
// removes all shortcodes in PDF | |
function dkpdf_remove_all_shortcodes( $content ) { | |
$pdf = get_query_var( 'pdf' ); | |
if( $pdf ) { | |
return strip_shortcodes( $content ); |
This file contains 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 | |
// removes specific shortcode in PDF | |
function dkpdf_remove_shortcodes_bytag( $content ) { | |
$pdf = get_query_var( 'pdf' ); | |
if( $pdf ) { | |
remove_shortcode( 'responsivevoice' ); | |
add_shortcode('responsivevoice', '__return_false'); | |
} |
This file contains 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
<style type="text/css"> | |
body { | |
background:#FFF; | |
font-size: 100%; | |
} | |
.product-container { | |
width:100%; | |
float:left; | |
} | |
.product-container h1 {padding-top:15px;} |
This file contains 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
<body> | |
<?php | |
global $post; | |
$pdf = get_query_var( 'pdf' ); | |
$post_type = get_post_type( $pdf ); | |
if( $pdf && $post_type == 'product' ) { | |
$title = get_the_title(); | |
if( has_post_thumbnail( $post->ID ) ) { | |
$thumbnail = get_the_post_thumbnail( $post->ID, 'medium' ); |
This file contains 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
<body> | |
<?php | |
global $post; | |
$pdf = get_query_var( 'pdf' ); | |
$post_type = get_post_type( $pdf ); | |
if( $pdf ) { | |
// get info | |
$title = get_the_title(); |
This file contains 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
<body> | |
<?php | |
global $post; | |
$pdf = get_query_var( 'pdf' ); | |
$post_type = get_post_type( $pdf ); | |
?> | |
</body> | |