Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

/**
 * Plugin compatibility for dk-pdf
 *
 * @since 3.0.96
 * @link https://wordpress.org/plugins/dk-pdf/
 */
class ET_Builder_Plugin_Compat_DK_Pdf extends ET_Builder_Plugin_Compat_Base {
	/**
	 * Constructor
	 */
	function __construct() {
		$this->plugin_id = 'dk-pdf/dk-pdf.php';
		$this->init_hooks();
	}

	/**
	 * Hook methods to WordPress
	 * Note: once this issue is fixed in future version, run version_compare() to limit the scope
	 * of the hooked fix
	 * Latest plugin version: 1.9.3
	 *
	 * @return void
	 */
	function init_hooks() {
		// Bail if there's no version found
		if ( ! $this->get_plugin_version() ) {
			return;
		}

		// Up to: latest theme version

		// If current page has pdf query string, it means that DK PDF re-route the request to
		// display the pdf version of the page
		if ( isset( $_GET['pdf'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.NoNonceVerification
			add_filter(
				'et_pb_load_main_elements_priority',
				array( $this, 'fix_load_main_elements_priority' )
			);
		}

		// Add styling to fix DK PDF button when page builder is used
		add_action( 'wp_enqueue_scripts', array( $this, 'fix_dkpdf_button_styling' ), 20 );
	}

	/**
	 * Modify priority of et_builder_add_main_elements() hook so it'll be triggered be