Changeset 3144930
- Timestamp:
- 09/01/2024 01:54:37 PM (7 months ago)
- Location:
- better-business-reviews
- Files:
-
- 30 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
better-business-reviews/trunk/admin/settings.php
r3140987 r3144930 85 85 </div> 86 86 </div> 87 88 <div class="brtpmj_setting-container"> 89 <h2 class="brtpmj_admin_heading">Customizer (Available in PRO version)</h2> 90 91 <form> 92 93 <div class="brtpmj_inner-container"> 94 <div class="brtpmj_col-1"> 95 <label>Hide Logo</label> 96 </div> 97 98 <div class="brtpmj_col-2"> 99 <input type="checkbox"> 100 </div> 101 </div> 102 103 <div class="brtpmj_inner-container"> 104 <div class="brtpmj_col-1"> 105 <label>Hide Name</label> 106 </div> 107 108 <div class="brtpmj_col-2"> 109 <input type="checkbox"> 110 </div> 111 </div> 112 113 <div class="brtpmj_inner-container"> 114 <div class="brtpmj_col-1"> 115 <label>Hide Review Count</label> 116 </div> 117 118 <div class="brtpmj_col-2"> 119 <input type="checkbox"> 120 </div> 121 </div> 122 123 <div class="brtpmj_inner-container"> 124 <div class="brtpmj_col-1"> 125 <label>Hide Add Review</label> 126 </div> 127 128 <div class="brtpmj_col-2"> 129 <input type="checkbox"> 130 </div> 131 </div> 132 133 <div class="brtpmj_inner-container"> 134 <div class="brtpmj_col-1"> 135 <label>Post limit</label> 136 </div> 137 138 <div class="brtpmj_col-2"> 139 <input type="number"> 140 </div> 141 </div> 142 143 <div class="brtpmj_inner-container"> 144 <div class="brtpmj_col-1"> 145 <?php 146 $filters = array( 147 'list' => 'List', 148 'grid' => 'Grid', 149 'carousel' => 'Carousel', 150 ); 151 $options = ''; 152 foreach($filters as $key => $val){ 153 $options .= '<option value="'.$key.'">'.$val.'</option>'; 154 } 155 156 ?> 157 <label>Layout</label> 158 </div> 159 160 <div class="brtpmj_col-2"> 161 <select><?php echo $options; ?></select> 162 </div> 163 </div> 164 165 <div class="brtpmj_inner-container"> 166 <div class="brtpmj_col-1"> 167 <?php 168 $filters = array( 169 170 'all' => 'All stars', 171 '5' => 'Five stars', 172 '4' => 'Four stars and above', 173 '3' => 'Three stars and above', 174 '2' => 'Two stars and above', 175 '1' => 'One star and above', 176 177 ); 178 $options = ''; 179 foreach($filters as $key => $val){ 180 181 $options .= '<option value="'.$key.'">'.$val.'</option>'; 182 } 183 184 ?> 185 <label>Filter by rating</label> 186 </div> 187 188 <div class="brtpmj_col-2"> 189 <select><?php echo $options; ?></select> 190 </div> 191 </div> 192 193 <div class="brtpmj_inner-container"> 194 <div class="brtpmj_col-1"> 195 <label>Description Words Limit</label> 196 </div> 197 198 <div class="brtpmj_col-2"> 199 <input type="number"> 200 </div> 201 </div> 202 </form> 203 </div> 87 204 </div> 88 205 -
better-business-reviews/trunk/better-business-reviews.php
r3140987 r3144930 3 3 * Plugin Name: Better Business Reviews - Trustpilot WordPress Plugin. 4 4 * Description: Display your business reviews from a Trustpilot profile. 5 * Version: 0.0. 55 * Version: 0.0.6 6 6 * Author: Better Business Reviews 7 7 * Author URI: https://www.mediajedi.com/product/trust-pilot-wordpress-plugin/ … … 21 21 22 22 define ( 'BRTPMJ_PLUGIN_DIR', plugin_dir_path(__FILE__ ) ); 23 define ( 'BRTPMJ_PLUGIN_VER', '0.0. 5' );23 define ( 'BRTPMJ_PLUGIN_VER', '0.0.6' ); 24 24 25 25 global $brtpmj_plugin_url, $brtpmj_api_url; -
better-business-reviews/trunk/readme.txt
r3140987 r3144930 4 4 Requires at least: 6.0 5 5 Tested up to: 6.6 6 Stable tag: 0.0. 56 Stable tag: 0.0.6 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 19 19 Check the [working demo here](https://www.mediajedi.com/trustpilot-reviews-wordpress-plugin-demo/) 20 20 21 Use the shortcode **[brtpmj_reviews]** to load the reviews from the Trustpilot profile you set in settings. 21 https://www.youtube.com/watch?v=Cv0Wqa3JuBc 22 22 23 By default the plugin displays only 3 recent reviews per shortcode. You can display 20 reviews with the PRO version. [Click here](https://www.mediajedi.com/product/trust-pilot-wordpress-plugin/) to get the PRO version. 23 **Shortcodes:** 24 25 List Layout (Default): **[brtpmj_reviews]** 26 27 Grid Layout: **[brtpmj_reviews layout="grid"]** 28 29 Carousel Layout: **[brtpmj_reviews layout="carousel"]** 30 31 Post Limit (PRO): **[brtpmj_reviews limit="8"]** 32 33 Minimum Stars (PRO): **[brtpmj_reviews min_stars="4"]** 34 35 By default the plugin displays only 3 recent reviews per shortcode. You can display 20 reviews with the PRO version. [Click here to get the PRO version.](https://www.mediajedi.com/product/trust-pilot-wordpress-plugin/) 24 36 25 37 Note: You will need to manually sync the reviews from settings to get the latest reviews from a profile. … … 27 39 Trustpilot WordPress plugin provides an integration between Trustpilot and WordPress. If you have any feature requests, please create a support ticket. 28 40 29 Disclaimer: This is an unofficial plugin and is not linked in any way to the official Trust Pilot platform. This plugin just fetches the publicly available content. 41 Please leave your valuable review here - [https://wordpress.org/support/plugin/better-business-reviews/reviews/](https://wordpress.org/support/plugin/better-business-reviews/reviews/) 42 43 **Disclaimer:** This is an unofficial plugin and is not linked in any way to the official Trust Pilot platform. This plugin just fetches the publicly available content. 44 45 == Features == 46 47 * The only WordPress Trustpilot plugin that actually works. 48 * Get 3 latest Reviews from any TrustPilot business profile. 49 * Display the reviews in List, Grid or Carousel layout. 50 * No need to use any API. 51 * Very easy to use. 52 * No iframe limits, you can use the CSS code to customize the output as you want. 53 54 [PRO version Features](https://www.mediajedi.com/product/trust-pilot-wordpress-plugin/) 55 56 * Get 20 reviews instead of 3. 57 * Supports list, grid, and carousel layouts. 58 * Shortcode support for reviews count limit and minimum stars. 59 * Option to customize the output like hide logo, name, review count or add-review link. 60 * Option to set review count limit. 61 * Option to change the layout from settings. 62 * Option to filter the reviews based on star count. 63 * Option to set description words limit. 30 64 31 65 ### External Service Usage
Note: See TracChangeset
for help on using the changeset viewer.