Forum Replies Created
-
This reply has been marked as private.in reply to: Plugin update breaks my product page layouts
Dear, You can change to use Recommended Products by shortcode(see attachment(:
[woocommerce_prl_recommendations id="woocommerce_after_single_product"]
Attachments:
You must be logged in to view attached files.Dear, I don’t understand your question because I see product with custom template and I see the ‘You may also like’ section is showing. Please kindly give me more details. I will check to help you.
Best regards.
This reply has been marked as private.in reply to: Internal Server Error when Customers Make PaymentThis reply has been marked as private.in reply to: Internal Server Error when Customers Make PaymentThis reply has been marked as private.This reply has been marked as private.in reply to: Internal Server Error when Customers Make PaymentThis reply has been marked as private.in reply to: Display theme product data and widgetsThis reply has been marked as private.This reply has been marked as private.in reply to: Slider FilterDear, You can send for me demo Recommendations products section with default theme on your site. I will check to help you.
Best regards.
Yes. I have changed custom PHP on your site to help you do it. Code:
add_filter('do_shortcode_tag', function($output, $tag){ if('dhvc_woo_product_page_price' === $tag) { ob_start(); echo $output; if(function_exists('shoptimizer_change_displayed_sale_price_html')){ echo '<div class="product-details-wrapper" style="padding: 0 !important;margin: 0 !important;">'; shoptimizer_change_displayed_sale_price_html(); echo '</div>'; } echo '<div class="clear"></div>'; if(function_exists('afterpay_show_pay_over_time_info_product_page')){ afterpay_show_pay_over_time_info_product_page(); } $output = ob_get_clean(); } elseif ('dhvc_woo_product_page_add_to_cart' === $tag) { ob_start(); echo $output; echo '<div class="clear" style="margin-top: 20px;"></div>'; if(function_exists('commercekit_product_countdown_timer')){ commercekit_product_countdown_timer(); } if(function_exists('commercekit_display_inventory_counter')){ commercekit_display_inventory_counter(); } echo '<div class="clear"></div>'; $output = ob_get_clean(); } return $output; },10,2);
Best regards.
in reply to: Display theme product data and widgetsDear, I have fixed all your request:
1. Display ‘Or 4 payments of $x with Afterpay’
4. Only 5 left in stock – part of the Shoptimizer theme options
= Add custom PHP code in end of file functions.php of your theme. Code is:add_filter('do_shortcode_tag', function($output, $tag){ if('dhvc_woo_product_page_price' === $tag && function_exists('afterpay_show_pay_over_time_info_product_page')) { ob_start(); echo $output; echo '<div class="clear"></div>'; afterpay_show_pay_over_time_info_product_page(); $output = ob_get_clean(); } elseif ('dhvc_woo_product_page_add_to_cart' === $tag && function_exists('commercekit_display_inventory_counter')) { ob_start(); echo $output; echo '<div class="clear" style="margin-top: 15px;"></div>'; commercekit_display_inventory_counter(); $output = ob_get_clean(); } return $output; },10,2);
2. The input number with large arrows next to the add to cart button
= Add custom class ‘woocommerce-cart-form’ for ‘WC Single Product Add to Cart’ shortcode in template3. Add to wishlist – heart add to wish list – with functionality – (a YITH plugin)
= The wishlist button is show, You need ‘Publish’ product to wishlist work5. Display a widget area
= Widget is showing.Please check your site again.
Best regards.
in reply to: Display theme product data and widgetsThis reply has been marked as private.in reply to: Plugin update breaks my product page layoutsThis reply has been marked as private.in reply to: Slider Filter