Title: CloudCatch's Replies | WordPress.org

---

# CloudCatch

  [  ](https://wordpress.org/support/users/cloudcatch/)

 *   [Profile](https://wordpress.org/support/users/cloudcatch/)
 *   [Topics Started](https://wordpress.org/support/users/cloudcatch/topics/)
 *   [Replies Created](https://wordpress.org/support/users/cloudcatch/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/cloudcatch/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/cloudcatch/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/cloudcatch/engagements/)
 *   [Favorites](https://wordpress.org/support/users/cloudcatch/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/cloudcatch/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/cloudcatch/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Splide Carousel Block] Error when try to set responsive breakpoints](https://wordpress.org/support/topic/error-when-try-to-set-responsive-breakpoints/)
 *  Plugin Contributor [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [5 months ago](https://wordpress.org/support/topic/error-when-try-to-set-responsive-breakpoints/#post-18789278)
 * Hi [@emmek](https://wordpress.org/support/users/emmek/) Version 1.7.1 was released
   which should resolve this issue. Thanks for reporting!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Light Modal Block] No open modal on click](https://wordpress.org/support/topic/no-open-modal-on-click/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/no-open-modal-on-click/#post-18195994)
 * Hi [@eno812](https://wordpress.org/support/users/eno812/)
 * The setting is not removed, but it is only available on the following blocks:
    - Button
    - Image
    - Heading
    - Group
 * It will be under the Advanced panel on one of those blocks.
 * You can trigger the modal by using a CSS selector however, something like this
   you can target any element that when clicked will open the modal:
 * > [View post on imgur.com](https://imgur.com/a/gl54p1C)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Removed Page Title Block and Lost The Cart PDF Button](https://wordpress.org/support/topic/removed-page-title-block-and-lost-the-cart-pdf-button/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/removed-page-title-block-and-lost-the-cart-pdf-button/#post-18195990)
 * Hi [@ecros](https://wordpress.org/support/users/ecros/)
 * When visiting the cart page I am seeing the cart PDF button. Were you able to
   get this resolved?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Splide Carousel Block] Problem with the “speed” option](https://wordpress.org/support/topic/problem-with-the-speed-option/)
 *  Plugin Contributor [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/problem-with-the-speed-option/#post-17937322)
 * The plugin has been updated and should solve this issue for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Add PDF number (Generated cart number) in email heading](https://wordpress.org/support/topic/add-pdf-number-generated-cart-number-in-email-heading/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/add-pdf-number-generated-cart-number-in-email-heading/#post-17908142)
 * Hello
 * You can add the cart number to your email subject by adding something like the
   below to your child theme **functions.php** file or in a code snippet:
 *     ```wp-block-code
       add_filter( 'wc_cart_pdf_admin_copy_subject', function( $subject ) {	$incremented_num = absint( get_option( 'wc_cart_pdf_unique_increment_num', 1 ) );	$subject = sprintf( esc_html__( 'Cart Number: %s' ), sprintf( '%04d', $incremented_num ) );	// $subject = sprintf( esc_html__( 'Cart Number: %d' ), $incremented_num ); // Non formatted string	return $subject;} );
       ```
   
 * Hope this helps
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Reset PDF increment number to zero](https://wordpress.org/support/topic/reset-pdf-increment-number-to-zero/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/reset-pdf-increment-number-to-zero/#post-17907377)
 * Hello
 * Could you please visit your URL `/wp-admin/options.php`, e.g.:
 * `https://example.com/wp-admin/options.php`
 * When that page loads, search for the value **wc_cart_pdf_unique_increment_num**
 * Change that back to 0 (or another number), and then save. WC Cart PDF will start
   from that number.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Download PDF only if customer enters email and name](https://wordpress.org/support/topic/download-pdf-only-if-customer-enters-email-and-name/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/download-pdf-only-if-customer-enters-email-and-name/#post-17881267)
 * Hello
 * Please navigate to WooCommerce > Settings > Integrations > Cart PDF and enable
   the option **Require customer to populate their information before download PDF**.
 * This will enable a popup to be displayed to the customer prior to download the
   PDF.
 * To add the name field, please add the following file to **child-theme/woocommerce/
   wc-cart-pdf/modal-capture.php:**
 *     ```wp-block-code
       <?php/** * WC Cart PDF template * * @package dkjensen/wc-cart-pdf */?><dialog id="wc-cart-pdf-modal" class="wc-cart-pdf-modal" role="dialog" aria-labelledby="dialogTitle" aria-describedby="dialogDesc">	<div class="wc-cart-pdf-modal-content">		<button class="wc-cart-pdf-modal-close" role="button" aria-label="Close">&times;</button>		<p id="dialogTitle"><?php esc_html_e( 'Please enter your email address to receive your cart as a PDF.', 'wc-cart-pdf' ); ?></p>		<div id="wc-cart-pdf-capture-form-errors"></div>		<form id="wc-cart-pdf-capture-form" class="wc-cart-pdf-capture-form" method="post" action="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'cart-pdf' => '1' ), wc_get_cart_url() ), 'cart-pdf' ) ); ?>">			<div><input type="email" name="billing_email" id="billing_email" placeholder="<?php esc_html_e( 'Email', 'wc-cart-pdf' ); ?>" value="<?php echo esc_attr( $customer->get_billing_email() ); ?>" required aria-required="true"></div>            <div><input type="text" name="billing_first_name" id="billing_first_name" placeholder="<?php esc_html_e( 'Name', 'wc-cart-pdf' ); ?>" value="<?php echo esc_attr( $customer->get_billing_first_name() ); ?>" required aria-required="true" /></div>            <div>				<label for="email_copy">					<input type="checkbox" name="email_copy" id="email_copy" value="1" <?php checked( apply_filters( 'wc_cart_pdf_modal_email_copy_default', true ), true ); ?>>					<?php esc_html_e( 'Send a copy of the PDF via email.', 'wc-cart-pdf' ); ?>				</label>			</div>			<div><button type="submit" class="button wp-element-button"><?php esc_html_e( 'Submit', 'wc-cart-pdf' ); ?></button></div>		</form>	</div></dialog>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Image not show the pdf](https://wordpress.org/support/topic/image-not-show-the-pdf/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/image-not-show-the-pdf/#post-17880973)
 * [@adamgabor](https://wordpress.org/support/users/adamgabor/) Nice! I believe 
   [this answer](https://stackoverflow.com/a/24922522) is related to the issue you
   were having.
 * You should be able to remove previous code added to the **wp-config.php** file
   and child theme **functions.php** file and just keep that newest snippet that
   worked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Image not show the pdf](https://wordpress.org/support/topic/image-not-show-the-pdf/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/image-not-show-the-pdf/#post-17880851)
 * Could you try adding the following snippet to your child theme **functions.php**
   file?
 *     ```wp-block-code
       /** * Replace image URLs with local paths in the cart PDF. *  * @param string $content The cart PDF content. * @return string */add_filter( 'wc_cart_pdf_content', function( $content ) {	$wp_upload_dir = wp_upload_dir();	$content = str_replace( $wp_upload_dir['baseurl'], $wp_upload_dir['basedir'], $content );	return $content;} );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Tabs Block] Bug: Attributes Randomly Get Removed](https://wordpress.org/support/topic/bug-attributes-randomly-get-removed/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [2 years, 12 months ago](https://wordpress.org/support/topic/bug-attributes-randomly-get-removed/#post-16844451)
 * [@revxx14](https://wordpress.org/support/users/revxx14/) Version 2.0.0 was released
   which should fix this issue. I would like to warn however if you have any custom
   CSS applied to the tabs, to test the plugin update on a staging environment before
   upgrading on production
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Tabs Block] Bug: Attributes Randomly Get Removed](https://wordpress.org/support/topic/bug-attributes-randomly-get-removed/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [2 years, 12 months ago](https://wordpress.org/support/topic/bug-attributes-randomly-get-removed/#post-16841227)
 * [@revxx14](https://wordpress.org/support/users/revxx14/) Thanks for bringing 
   this to my attention. The tabs plugin uses the block `clientId` as a unique identifier,
   it seems when other blocks outside of the tabs are modified/removed, it can change
   the `clientId` of the tabs.
 * I’m currently working on refactoring this plugin, and I will be sure this is 
   fixed in the next update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Variation product image is real size on pdf](https://wordpress.org/support/topic/variation-product-image-is-real-size-on-pdf/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/variation-product-image-is-real-size-on-pdf/#post-16174520)
 * [@pahedomotica](https://wordpress.org/support/users/pahedomotica/) I’m not too
   familiar with WebP, and a quick Google does not bring up any issues with the 
   PDF library this plugin issues. You could try disabling WebP conversion on PDFs?
 *     ```
       add_action( 'wc_cart_pdf_before_process', function() {
           add_filter( 'webpc_supported_source_file', '__return_false' );
       } );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Variation product image is real size on pdf](https://wordpress.org/support/topic/variation-product-image-is-real-size-on-pdf/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/variation-product-image-is-real-size-on-pdf/#post-16174481)
 * [@pahedomotica](https://wordpress.org/support/users/pahedomotica/) Are you using
   a plugin such as WebP Express to convert PNG to WebP?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Korean fonts are broken in PDF creation](https://wordpress.org/support/topic/%ed%95%9c%ea%b5%ad-%ed%8f%b0%ed%8a%b8%ea%b0%80-%ea%b9%a8%ec%a7%80%eb%8a%94-%ed%98%84%ec%83%81/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/%ed%95%9c%ea%b5%ad-%ed%8f%b0%ed%8a%b8%ea%b0%80-%ea%b9%a8%ec%a7%80%eb%8a%94-%ed%98%84%ec%83%81/#post-16172410)
 * [@yesudream](https://wordpress.org/support/users/yesudream/) The latest update
   version 2.3.0 should fix Korean fonts being broken.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart PDF for WooCommerce] Korean fonts are broken in PDF creation](https://wordpress.org/support/topic/%ed%95%9c%ea%b5%ad-%ed%8f%b0%ed%8a%b8%ea%b0%80-%ea%b9%a8%ec%a7%80%eb%8a%94-%ed%98%84%ec%83%81/)
 *  Plugin Author [CloudCatch](https://wordpress.org/support/users/cloudcatch/)
 * (@cloudcatch)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/%ed%95%9c%ea%b5%ad-%ed%8f%b0%ed%8a%b8%ea%b0%80-%ea%b9%a8%ec%a7%80%eb%8a%94-%ed%98%84%ec%83%81/#post-16149275)
 * Hi [@yesudream](https://wordpress.org/support/users/yesudream/)
 * Could you try the following code snippet
 *     ```
       add_filter( 'wc_cart_pdf_mpdf_args', function( $args ) {
       	$args['mode'] = 'ja+aCJK';
   
       	return $args;
       } );
       ```
   

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/cloudcatch/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/cloudcatch/replies/page/2/?output_format=md)