Changeset 1440974
- Timestamp:
- 06/21/2016 02:03:47 PM (10 years ago)
- Location:
- review-builder/trunk
- Files:
-
- 4 edited
-
app.php (modified) (1 diff)
-
com/controllers/Review.php (modified) (6 diffs)
-
com/core/SGRB.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
review-builder/trunk/app.php
r1440780 r1440974 4 4 * Plugin URI: https://sygnoos.com 5 5 * Description: Review Builder will allow you to add reviews section to your site. Build a reviews section so customers can leave reviews for your products. 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: Sygnoos 8 8 * Author URI: https://www.sygnoos.com -
review-builder/trunk/com/controllers/Review.php
r1440822 r1440974 286 286 287 287 $sgrbDataArray['title'] = $title; 288 $sgrbDataArray['notify'] = @$options["notify"];288 $sgrbDataArray['notify'] = $options["notify"]; 289 289 $sgrbDataArray['required-title-checkbox'] = @$options["required-title-checkbox"]; 290 290 $sgrbDataArray['required-email-checkbox'] = @$options["required-email-checkbox"]; … … 546 546 <meta content="'.@$sgrbSearchCommentsCount.'" itemprop="reviewCount"> 547 547 <meta content="'.@$bestRating.'" itemprop="bestRating"> 548 <meta content="1" itemprop="worstRating"> ';548 <meta content="1" itemprop="worstRating"></div>'; 549 549 } 550 550 else { … … 555 555 <meta content="0" itemprop="reviewCount"> 556 556 <meta content="'.@$bestRating.'" itemprop="bestRating"> 557 <meta content="1" itemprop="worstRating"> ';557 <meta content="1" itemprop="worstRating"></div>'; 558 558 } 559 559 } … … 608 608 } 609 609 } 610 $html .= '</div>';611 610 } 612 611 else if ($review[0]['options']['rate-type'] == SGRB_RATE_TYPE_PERCENT) { … … 642 641 } 643 642 } 644 $html .= '</div>';645 643 } 646 644 else if ($review[0]['options']['rate-type'] == SGRB_RATE_TYPE_POINT) { … … 680 678 } 681 679 } 682 $html .= '</div>'; 683 } 684 //$html .= $googleSearchResult; 685 $html .= '</div>'; 686 687 return '<form class="sgrb-user-rate-js-form"><div class="">'.$html.'</div></div>'.$commentForm.$allApprovedComments.'</div></div></form>'; 680 } 681 return '<form class="sgrb-user-rate-js-form"><div class="">'.$html.'</div></div>'.$commentForm.$allApprovedComments.'</div></form>'; 688 682 } 689 683 -
review-builder/trunk/com/core/SGRB.php
r1430383 r1440974 274 274 if(is_admin()) { 275 275 wp_enqueue_script($this->prefix.$script, $this->asset($script.'.js'), array('jquery', 'wp-color-picker'), false, true); 276 wp_enqueue_media(); 276 277 } 277 278 wp_enqueue_script($this->prefix.$script, $this->asset($script.'.js'), array('jquery'),false); 278 wp_enqueue_media();279 279 } 280 280 -
review-builder/trunk/readme.txt
r1440780 r1440974 1 1 === Review === 2 2 Plugin Name: Review 3 Version: 1.0. 23 Version: 1.0.3 4 4 Donate link: https://sygnoos.com/wordpress-review/ 5 5 URI: https://sygnoos.com/wordpress-review/ … … 110 110 == Changelog == 111 111 112 = 1.0.3 = 113 * Bug fixes. 114 112 115 = 1.0.2 = 113 116 * Bug fixes. … … 122 125 == Upgrade Notice == 123 126 124 Current version of Review Builder is v1.0. 1127 Current version of Review Builder is v1.0.3 125 128 126 129 == Other Notes ==
Note: See TracChangeset
for help on using the changeset viewer.