AddToCartButton.php
3 months ago
CartMenuIcon.php
1 year ago
CollectionTags.php
1 year ago
Media.php
1 year ago
PriceChooser.php
1 year ago
Product.php
1 year ago
ProductCard.php
1 year ago
ProductContent.php
7 months ago
ProductLineItemNote.php
10 months ago
ProductPricing.php
1 year ago
ProductQuickAddButton.php
7 months ago
ProductReviewAverageRatingStars.php
4 months ago
ProductReviewAverageRatingValue.php
4 months ago
ProductReviewBreakdown.php
4 months ago
ProductReviewContent.php
4 months ago
ProductReviewList.php
2 months ago
ProductReviewRating.php
4 months ago
ProductReviewTotalRating.php
4 months ago
ProductReviews.php
4 months ago
Quantity.php
1 year ago
ReusableFormWidget.php
1 year ago
SaleBadge.php
1 year ago
SelectedPriceAdHocAmount.php
1 year ago
VariantPills.php
6 months ago
ProductReviewContent.php
150 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Integrations\Elementor\Widgets; |
| 4 | |
| 5 | if ( ! defined( 'ABSPATH' ) ) { |
| 6 | exit; // Exit if accessed directly. |
| 7 | } |
| 8 | |
| 9 | /** |
| 10 | * Product Review Content widget. |
| 11 | * |
| 12 | * This widget acts as a conditional visibility controller for its parent container. |
| 13 | * Place this widget inside a section/container along with other review summary widgets. |
| 14 | * When no reviews exist, the entire parent container will be hidden. |
| 15 | */ |
| 16 | class ProductReviewContent extends \Elementor\Widget_Base { |
| 17 | /** |
| 18 | * Get widget name. |
| 19 | * |
| 20 | * @return string |
| 21 | */ |
| 22 | public function get_name() { |
| 23 | return 'surecart-product-review-content'; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Get widget title. |
| 28 | * |
| 29 | * @return string |
| 30 | */ |
| 31 | public function get_title() { |
| 32 | return esc_html__( 'Product Review Content', 'surecart' ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Get widget icon. |
| 37 | * |
| 38 | * @return string |
| 39 | */ |
| 40 | public function get_icon() { |
| 41 | return 'eicon-eye'; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Get the widget keywords. |
| 46 | * |
| 47 | * @return array |
| 48 | */ |
| 49 | public function get_keywords() { |
| 50 | return array( 'surecart', 'review', 'content', 'conditional', 'visibility', 'wrapper' ); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Get the widget categories. |
| 55 | * |
| 56 | * @return array |
| 57 | */ |
| 58 | public function get_categories() { |
| 59 | return array( 'surecart-elementor-elements' ); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Register the widget controls. |
| 64 | * |
| 65 | * @return void |
| 66 | */ |
| 67 | protected function register_controls() { |
| 68 | $this->start_controls_section( |
| 69 | 'section_info', |
| 70 | [ |
| 71 | 'label' => esc_html__( 'Info', 'surecart' ), |
| 72 | ] |
| 73 | ); |
| 74 | |
| 75 | $this->add_control( |
| 76 | 'info_notice', |
| 77 | [ |
| 78 | 'type' => \Elementor\Controls_Manager::RAW_HTML, |
| 79 | 'raw' => sprintf( |
| 80 | '<div style="padding: 10px; border-radius: 3px;"> |
| 81 | <strong>%s</strong><br><br>%s |
| 82 | </div>', |
| 83 | esc_html__( 'Conditional Visibility Widget', 'surecart' ), |
| 84 | esc_html__( 'Place this widget inside a container/section along with your review summary widgets (Average Rating, Stars, Breakdown, etc.). When no reviews exist for the product, the entire parent container will be hidden on the frontend.', 'surecart' ) |
| 85 | ), |
| 86 | 'content_classes' => 'elementor-panel-alert', |
| 87 | ] |
| 88 | ); |
| 89 | |
| 90 | $this->end_controls_section(); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Check if the product has any published reviews. |
| 95 | * |
| 96 | * @return bool |
| 97 | */ |
| 98 | private function has_reviews() { |
| 99 | $product = sc_get_product(); |
| 100 | |
| 101 | if ( empty( $product ) ) { |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | // Check if reviews are enabled for this product. |
| 106 | if ( ! apply_filters( 'surecart/review_form/enabled', $product->reviews_enabled ) ) { |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | // Check total reviews count from product. |
| 111 | return ! empty( $product->total_reviews ) && (int) $product->total_reviews > 0; |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Render the widget output on the frontend. |
| 116 | * |
| 117 | * @return void |
| 118 | */ |
| 119 | protected function render() { |
| 120 | // In editor mode, return early - always show the container. |
| 121 | if ( \Elementor\Plugin::$instance->editor->is_edit_mode() ) { |
| 122 | return; |
| 123 | } |
| 124 | |
| 125 | // On frontend, if no reviews exist, hide the parent container. |
| 126 | if ( ! $this->has_reviews() ) { |
| 127 | $widget_id = $this->get_id(); |
| 128 | ?> |
| 129 | <div id="sc-review-content-<?php echo esc_attr( $widget_id ); ?>" data-sc-no-reviews="true" style="display: none;"></div> |
| 130 | <script> |
| 131 | (function() { |
| 132 | var widget = document.getElementById('sc-review-content-<?php echo esc_js( $widget_id ); ?>'); |
| 133 | if (widget) { |
| 134 | // Find the closest Elementor container/column/section parent |
| 135 | var parent = widget.closest('.elementor-widget-container'); |
| 136 | if (parent) { |
| 137 | parent = parent.closest('.elementor-column, .elementor-container, .e-con, .e-con-inner'); |
| 138 | } |
| 139 | if (parent) { |
| 140 | parent.style.display = 'none'; |
| 141 | } |
| 142 | } |
| 143 | })(); |
| 144 | </script> |
| 145 | <?php |
| 146 | } |
| 147 | // If reviews exist, render nothing - the sibling widgets will render normally. |
| 148 | } |
| 149 | } |
| 150 |