realroman
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
WP Fastest cache plugin was adjusted and it works now.
Forum: Plugins
In reply to: [WP Fastest Cache] CDN – WC variable product image – image url is not cdn urlIt works now, thank you!
Forum: Plugins
In reply to: [WP Fastest Cache] CDN – WC variable product image – image url is not cdn urlHi Emre,
thank you for fixing the issue so fast.
1. Can I ask where was the issue or what files changed?
2. If i upload this version, the plugin will be possible to update later via plugin updater in wordpress?Forum: Plugins
In reply to: [WP Fastest Cache] CDN – WC variable product image – image url is not cdn urlAre you saying that with the proper quotes it will translate the url to cdn url?
Well it is generated by the woocommerce variable.php file (assuming based on the html tags and code):
do_action( 'woocommerce_before_add_to_cart_form' ); ?> <form class="variations_form cart" action="<?php echo esc_url( apply_filters( 'woocommerce_add_to_cart_form_action', $product->get_permalink() ) ); ?>" method="post" enctype='multipart/form-data' data-product_id="<?php echo absint( $product->get_id() ); ?>" data-product_variations="<?php echo htmlspecialchars( wp_json_encode( $available_variations ) ); // WPCS: XSS ok. ?>"> <?php do_action( 'woocommerce_before_variations_form' ); ?> <?php if ( empty( $available_variations ) && false !== $available_variations ) : ?> <p class="stock out-of-stock"><?php esc_html_e( 'This product is currently out of stock and unavailable.', 'woocommerce' ); ?></p> <?php else : ?> <table class="variations" cellspacing="0"> <tbody> <?php foreach ( $attributes as $attribute_name => $options ) : ?> <tr> <td class="label"><label for="<?php echo esc_attr( sanitize_title( $attribute_name ) ); ?>"><?php echo wc_attribute_label( $attribute_name ); // WPCS: XSS ok. ?></label></td> <td class="value"> <?php wc_dropdown_variation_attribute_options( array( 'options' => $options, 'attribute' => $attribute_name, 'product' => $product, ) ); echo end( $attribute_keys ) === $attribute_name ? wp_kses_post( apply_filters( 'woocommerce_reset_variations_link', '<a class="reset_variations" href="#">' . esc_html__( 'Clear', 'woocommerce' ) . '</a>' ) ) : ''; ?> </td> </tr> <?php endforeach; ?> </tbody> </table>
- This reply was modified 6 years, 4 months ago by realroman.
Hi Andrew,
OK i will try to ask WP Fastest Cache.
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)