Skip to content

Instantly share code, notes, and snippets.

View Dinamiko's full-sized avatar
💭
just coding stuff

Emili Castells Dinamiko

💭
just coding stuff
View GitHub Profile
<?php
function custom_dkpdf_button_container_css() {
return 'float:none;';
}
add_filter( 'dkpdf_button_container_css', 'custom_dkpdf_button_container_css' );
<?php
function dkpdfg_hide_button_isset() {
return isset( $_POST['dkpdfg_action_create'] ) || isset( $_POST['dkpdfg_action_create_categories'] );
}
add_filter( 'dkpdf_hide_button_isset', 'dkpdfg_hide_button_isset' );
function dkpdfg_hide_button_equal() {
return $_POST['dkpdfg_action_create'] == 'dkpdfg_action_create' || $_POST['dkpdfg_action_create_categories'] == 'dkpdfg_action_create_categories';
}
add_filter( 'dkpdf_hide_button_equal', 'dkpdfg_hide_button_equal' );
<?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' );
<?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);
<?php
// removes all shortcodes in PDF
function dkpdf_remove_all_shortcodes( $content ) {
$pdf = get_query_var( 'pdf' );
if( $pdf ) {
return strip_shortcodes( $content );
<?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');
}
<style type="text/css">
body {
background:#FFF;
font-size: 100%;
}
.product-container {
width:100%;
float:left;
}
.product-container h1 {padding-top:15px;}
<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' );
<body>
<?php
global $post;
$pdf = get_query_var( 'pdf' );
$post_type = get_post_type( $pdf );
if( $pdf ) {
// get info
$title = get_the_title();
<body>
<?php
global $post;
$pdf = get_query_var( 'pdf' );
$post_type = get_post_type( $pdf );
?>
</body>