Changeset 3079797
- Timestamp:
- 05/01/2024 10:05:41 AM (23 months ago)
- Location:
- echo-rewards
- Files:
-
- 12 edited
- 1 copied
-
tags/1.2.1 (copied) (copied from echo-rewards/trunk)
-
tags/1.2.1/echo-rewards.php (modified) (2 diffs)
-
tags/1.2.1/includes/Admin/Tabs/Ecre_Init_Settings.php (modified) (1 diff)
-
tags/1.2.1/includes/Ecre_Generate_Coupon.php (modified) (1 diff)
-
tags/1.2.1/includes/ecre-functions.php (modified) (2 diffs)
-
tags/1.2.1/languages/echo-rewards.pot (modified) (6 diffs)
-
tags/1.2.1/readme.txt (modified) (3 diffs)
-
trunk/echo-rewards.php (modified) (2 diffs)
-
trunk/includes/Admin/Tabs/Ecre_Init_Settings.php (modified) (1 diff)
-
trunk/includes/Ecre_Generate_Coupon.php (modified) (1 diff)
-
trunk/includes/ecre-functions.php (modified) (2 diffs)
-
trunk/languages/echo-rewards.pot (modified) (6 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
echo-rewards/tags/1.2.1/echo-rewards.php
r3079076 r3079797 4 4 * Plugin URI: https://echorewards.pro 5 5 * Description: WooCommerce coupon plugin for WordPress. Generate coupons, reward customers, and setup the ideal customer referral program for your store. 6 * Version: 1.2. 06 * Version: 1.2.1 7 7 * Author: EchoRewards 8 8 * Author URI: https://echorewards.pro/ … … 23 23 24 24 if ( ! defined( 'ECRE_VERSION' ) ) { 25 define( 'ECRE_VERSION', '1.2. 0' );25 define( 'ECRE_VERSION', '1.2.1' ); 26 26 define( 'ECRE_FILE', __FILE__ ); 27 27 define( 'ECRE_PATH', dirname( ECRE_FILE ) ); -
echo-rewards/tags/1.2.1/includes/Admin/Tabs/Ecre_Init_Settings.php
r3079076 r3079797 79 79 ), 80 80 self::FIELD_PREFIX . 'referral_icon' => array( 81 'name' => __( ' Referralicon', 'echo-rewards-pro' ),82 'tooltip' => __( 'Ch oose the type of discount you want to offer (in percentage or a fixed amount).', 'echo-rewards' ),81 'name' => __( 'EchoRewards menu icon', 'echo-rewards-pro' ), 82 'tooltip' => __( 'Change the EchoRewards menu icon', 'echo-rewards' ), 83 83 'default_value' => '', 84 84 'display_label' => 'yes', -
echo-rewards/tags/1.2.1/includes/Ecre_Generate_Coupon.php
r3054309 r3079797 86 86 $new_coupon_id = wp_insert_post( $coupon ); 87 87 88 update_user_meta( $user_id, 'ecre_referral_coupon', $coupon_code ); 88 89 update_post_meta( $new_coupon_id, 'discount_type', $discount_type ); 89 90 update_post_meta( $new_coupon_id, 'coupon_amount', $amount ); -
echo-rewards/tags/1.2.1/includes/ecre-functions.php
r3079076 r3079797 449 449 $ecre_currency_sign = str_replace( ' ', '', $ecre_currency_sign ); 450 450 $ecre_currency_sign = trim( $ecre_currency_sign ); 451 $referral_coupon = ecre_referral_coupons();452 451 $referral_discount = ''; 453 452 $reward_discount = ''; 454 453 $referral_discount_type = ''; 455 454 $reward_discount_type = ''; 456 $coupon_code = ' ECHO75V5KLDA';455 $coupon_code = '75V5KLDA'; 457 456 $referral_coupon_code = ''; 457 $current_user_id = get_current_user_id(); 458 $referral_coupon = get_user_meta( $current_user_id, 'ecre_referral_coupon', true ); 458 459 459 460 if ( ! empty( $default_values ) ) { … … 462 463 $referral_discount_type = get_option( 'ecre_referral_discount_type', $default_values['ecre_referral_discount_type'] ); 463 464 464 if ( ! empty( $referral_coupon ) ) { 465 $referral_coupon_code = strtoupper( $referral_coupon[0]['coupon_code'] ); 466 } 465 $referral_coupon_code = $referral_coupon ? $referral_coupon : 'ECHO75V5KLDA'; 467 466 468 467 if ( 'percent' === $referral_discount_type ) { -
echo-rewards/tags/1.2.1/languages/echo-rewards.pot
r3072106 r3079797 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 2024-0 4-16 17:42+0600\n"5 "POT-Creation-Date: 2024-05-01 15:28+0600\n" 6 6 "PO-Revision-Date: 2024-04-15 18:00+0600\n" 7 7 "Last-Translator: \n" … … 49 49 50 50 #: includes/Admin/Ecre_Menu.php:119 51 #: includes/Admin/Tabs/Ecre_Referral_Settings.php:2 3851 #: includes/Admin/Tabs/Ecre_Referral_Settings.php:274 52 52 msgid "Referral Settings" 53 53 msgstr "" … … 103 103 msgstr "" 104 104 105 #: includes/Admin/Tabs/Ecre_Email_Settings.php:1 86105 #: includes/Admin/Tabs/Ecre_Email_Settings.php:195 106 106 msgid "Reward Email Settings" 107 107 msgstr "" … … 112 112 113 113 #: includes/Admin/Tabs/Ecre_Init_Settings.php:75 114 #: includes/Admin/Tabs/Ecre_Init_Settings.php:89 115 #: includes/Admin/Tabs/Ecre_Init_Settings.php:315 116 msgid "Choose the type of discount you want to offer (in percentage or a fixed amount)." 117 msgstr "" 118 119 #: includes/Admin/Tabs/Ecre_Init_Settings.php:81 120 msgid "EchoRewards menu icon" 121 msgstr "" 122 114 123 #: includes/Admin/Tabs/Ecre_Init_Settings.php:82 124 msgid "Change the EchoRewards menu icon" 125 msgstr "" 126 127 #: includes/Admin/Tabs/Ecre_Init_Settings.php:88 128 msgid "Select widget position" 129 msgstr "" 130 131 #: includes/Admin/Tabs/Ecre_Init_Settings.php:96 132 msgid "Discount amount" 133 msgstr "" 134 135 #: includes/Admin/Tabs/Ecre_Init_Settings.php:97 136 msgid "The discount amount when someone purchases using the referral coupon of any customer." 137 msgstr "" 138 139 #: includes/Admin/Tabs/Ecre_Init_Settings.php:102 140 msgid "Discount capping" 141 msgstr "" 142 143 #: includes/Admin/Tabs/Ecre_Init_Settings.php:103 144 #: includes/Admin/Tabs/Ecre_Init_Settings.php:336 145 msgid "The maximum discount will be limited to the amount you set here." 146 msgstr "" 147 148 #: includes/Admin/Tabs/Ecre_Init_Settings.php:109 149 msgid "Monthly referral limit" 150 msgstr "" 151 152 #: includes/Admin/Tabs/Ecre_Init_Settings.php:110 153 msgid "Set the maximum number of times a customer can refer and earn rewards." 154 msgstr "" 155 156 #: includes/Admin/Tabs/Ecre_Init_Settings.php:116 157 #: includes/Admin/Tabs/Ecre_Init_Settings.php:121 158 msgid "Hide icon" 159 msgstr "" 160 161 #: includes/Admin/Tabs/Ecre_Init_Settings.php:125 162 msgid "EchoRewards menu name" 163 msgstr "" 164 165 #: includes/Admin/Tabs/Ecre_Init_Settings.php:126 166 msgid "This is the name your customers will see on the menu of their My Account page. Clicking on this name they will access their referral page." 167 msgstr "" 168 169 #: includes/Admin/Tabs/Ecre_Init_Settings.php:132 170 msgid "Minimum purchase amount to apply referral coupon" 171 msgstr "" 172 173 #: includes/Admin/Tabs/Ecre_Init_Settings.php:133 174 msgid "Set the minimum amount that a customer must purchase so that he can apply referral coupon." 175 msgstr "" 176 177 #: includes/Admin/Tabs/Ecre_Init_Settings.php:139 178 msgid "Message to show to the referrer" 179 msgstr "" 180 181 #: includes/Admin/Tabs/Ecre_Init_Settings.php:140 182 msgid "Customize the discount percentage or amount a referrer receives when someone purchases using his coupon." 183 msgstr "" 184 185 #: includes/Admin/Tabs/Ecre_Init_Settings.php:141 186 msgid "You need to have at least one order in your account before you can refer others" 187 msgstr "" 188 189 #: includes/Admin/Tabs/Ecre_Init_Settings.php:147 190 msgid "Coupon usage criteria" 191 msgstr "" 192 193 #: includes/Admin/Tabs/Ecre_Init_Settings.php:148 194 msgid "If this option is enabled then a referee customer will be able to apply referral coupons only once. This means if the referee customer receives multiple referral coupons and uses one of those coupons then the remaining coupons can't be used. Also a same referral coupon can't be used multiple times." 195 msgstr "" 196 197 #: includes/Admin/Tabs/Ecre_Init_Settings.php:149 198 msgid "A customer can use referral coupon only once." 199 msgstr "" 200 201 #: includes/Admin/Tabs/Ecre_Init_Settings.php:155 202 msgid "Social Share Options" 203 msgstr "" 204 205 #: includes/Admin/Tabs/Ecre_Init_Settings.php:156 206 msgid "Enable or disable social share options." 207 msgstr "" 208 209 #: includes/Admin/Tabs/Ecre_Init_Settings.php:157 210 msgid "Choose the social media platforms for referral sharing." 211 msgstr "" 212 213 #: includes/Admin/Tabs/Ecre_Init_Settings.php:163 214 msgid "EchoRewards tab on WooCommerce product page" 215 msgstr "" 216 217 #: includes/Admin/Tabs/Ecre_Init_Settings.php:164 218 msgid "Enabling this option will add a tab on product page where customers will be able to see their referral code which they can share with others." 219 msgstr "" 220 221 #: includes/Admin/Tabs/Ecre_Init_Settings.php:165 222 msgid "Show EchoRewards tab on WooCommerce product page" 223 msgstr "" 224 225 #: includes/Admin/Tabs/Ecre_Init_Settings.php:170 226 msgid "Referral program status" 227 msgstr "" 228 229 #: includes/Admin/Tabs/Ecre_Init_Settings.php:171 230 msgid "Enable referral program for your customers. Customers won't see the referral program option on their dashboard if you disable it." 231 msgstr "" 232 233 #: includes/Admin/Tabs/Ecre_Init_Settings.php:172 234 msgid "Enable referral program for the customers to share their referral code and get rewards" 235 msgstr "" 236 237 #: includes/Admin/Tabs/Ecre_Init_Settings.php:177 238 msgid "Referral status" 239 msgstr "" 240 241 #: includes/Admin/Tabs/Ecre_Init_Settings.php:178 242 msgid "If you enable this option, only those customers who has at-least an order in their account will be able to refer others using their coupon code." 243 msgstr "" 244 245 #: includes/Admin/Tabs/Ecre_Init_Settings.php:179 246 msgid "Referrer needs to have at-least one order before he can refer others" 247 msgstr "" 248 249 #: includes/Admin/Tabs/Ecre_Init_Settings.php:185 250 msgid "Floating referral widget" 251 msgstr "" 252 253 #: includes/Admin/Tabs/Ecre_Init_Settings.php:186 254 msgid "Enabling this option will show a floating widget on the Homepage, Shop page, Cart page, Checkout page and Single Product page on your website. Visitors and your customers will be able to know about your referral program when they click on the referral widget." 255 msgstr "" 256 257 #: includes/Admin/Tabs/Ecre_Init_Settings.php:187 258 msgid "Enable floating referral widget to be shown on your website" 259 msgstr "" 260 261 #: includes/Admin/Tabs/Ecre_Init_Settings.php:193 262 msgid "Social Sharing" 263 msgstr "" 264 265 #: includes/Admin/Tabs/Ecre_Init_Settings.php:194 266 msgid "Enable social sharing for your customers so that they can share their referral coupon on their preferred social media." 267 msgstr "" 268 269 #: includes/Admin/Tabs/Ecre_Init_Settings.php:195 270 msgid "Enable social sharing for customers to share their referral coupons" 271 msgstr "" 272 273 #: includes/Admin/Tabs/Ecre_Init_Settings.php:200 274 msgid "Referral coupon prefix" 275 msgstr "" 276 277 #: includes/Admin/Tabs/Ecre_Init_Settings.php:201 278 msgid "You can add your own prefix here. The referral coupons will be started with the prefix. It can help you to promote your brand identity." 279 msgstr "" 280 281 #: includes/Admin/Tabs/Ecre_Init_Settings.php:208 282 #: includes/Admin/Tabs/Ecre_Init_Settings.php:349 283 msgid "Include products" 284 msgstr "" 285 286 #: includes/Admin/Tabs/Ecre_Init_Settings.php:209 287 #: includes/Admin/Tabs/Ecre_Init_Settings.php:350 288 msgid "Products that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 289 msgstr "" 290 291 #: includes/Admin/Tabs/Ecre_Init_Settings.php:211 292 #: includes/Admin/Tabs/Ecre_Init_Settings.php:218 293 #: includes/Admin/Tabs/Ecre_Init_Settings.php:352 294 #: includes/Admin/Tabs/Ecre_Init_Settings.php:359 295 msgid "Search for products…" 296 msgstr "" 297 298 #: includes/Admin/Tabs/Ecre_Init_Settings.php:216 299 #: includes/Admin/Tabs/Ecre_Init_Settings.php:357 300 msgid "Exclude products" 301 msgstr "" 302 303 #: includes/Admin/Tabs/Ecre_Init_Settings.php:217 304 #: includes/Admin/Tabs/Ecre_Init_Settings.php:358 305 msgid "Products that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 306 msgstr "" 307 308 #: includes/Admin/Tabs/Ecre_Init_Settings.php:224 309 msgid "Include product categories" 310 msgstr "" 311 312 #: includes/Admin/Tabs/Ecre_Init_Settings.php:225 313 msgid "Product categories that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 314 msgstr "" 315 316 #: includes/Admin/Tabs/Ecre_Init_Settings.php:226 317 #: includes/Admin/Tabs/Ecre_Init_Settings.php:234 318 #: includes/Admin/Tabs/Ecre_Init_Settings.php:367 319 #: includes/Admin/Tabs/Ecre_Init_Settings.php:375 320 msgid "Search for categories…" 321 msgstr "" 322 323 #: includes/Admin/Tabs/Ecre_Init_Settings.php:232 324 #: includes/Admin/Tabs/Ecre_Init_Settings.php:365 325 #: includes/Admin/Tabs/Ecre_Init_Settings.php:373 326 msgid "Exclude categories" 327 msgstr "" 328 329 #: includes/Admin/Tabs/Ecre_Init_Settings.php:233 330 #: includes/Admin/Tabs/Ecre_Init_Settings.php:366 331 #: includes/Admin/Tabs/Ecre_Init_Settings.php:374 332 msgid "Product categories that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 333 msgstr "" 334 335 #: includes/Admin/Tabs/Ecre_Init_Settings.php:240 336 #: includes/Admin/Tabs/Ecre_Init_Settings.php:280 337 msgid "Enable email notification" 338 msgstr "" 339 340 #: includes/Admin/Tabs/Ecre_Init_Settings.php:241 341 msgid "When this option is enabled, customers will see the option to refer others via email." 342 msgstr "" 343 344 #: includes/Admin/Tabs/Ecre_Init_Settings.php:242 345 msgid "Allow users to send their referral code to others via email" 346 msgstr "" 347 348 #: includes/Admin/Tabs/Ecre_Init_Settings.php:247 349 #: includes/Admin/Tabs/Ecre_Init_Settings.php:287 350 msgid "Email subject" 351 msgstr "" 352 353 #: includes/Admin/Tabs/Ecre_Init_Settings.php:248 354 #: includes/Admin/Tabs/Ecre_Init_Settings.php:288 355 msgid "Change the subject of the invitation email." 356 msgstr "" 357 358 #: includes/Admin/Tabs/Ecre_Init_Settings.php:249 359 msgid "You got a discount coupon! 🎁" 360 msgstr "" 361 362 #: includes/Admin/Tabs/Ecre_Init_Settings.php:254 363 #: includes/Admin/Tabs/Ecre_Init_Settings.php:294 364 msgid "Email heading" 365 msgstr "" 366 367 #: includes/Admin/Tabs/Ecre_Init_Settings.php:255 368 #: includes/Admin/Tabs/Ecre_Init_Settings.php:295 369 msgid "Change the heading/title of the email content." 370 msgstr "" 371 372 #: includes/Admin/Tabs/Ecre_Init_Settings.php:257 373 msgid "Congratulations on your reward." 374 msgstr "" 375 376 #: includes/Admin/Tabs/Ecre_Init_Settings.php:262 377 #: includes/Admin/Tabs/Ecre_Init_Settings.php:270 115 378 #: includes/Admin/Tabs/Ecre_Init_Settings.php:275 116 msgid "Choose the type of discount you want to offer (in percentage or a fixed amount)." 117 msgstr "" 118 119 #: includes/Admin/Tabs/Ecre_Init_Settings.php:81 120 msgid "Select widget position" 121 msgstr "" 122 123 #: includes/Admin/Tabs/Ecre_Init_Settings.php:89 124 msgid "Discount amount" 125 msgstr "" 126 127 #: includes/Admin/Tabs/Ecre_Init_Settings.php:90 128 msgid "The discount amount when someone purchases using the referral coupon of any customer." 129 msgstr "" 130 131 #: includes/Admin/Tabs/Ecre_Init_Settings.php:95 132 msgid "Discount capping" 133 msgstr "" 134 135 #: includes/Admin/Tabs/Ecre_Init_Settings.php:96 136 #: includes/Admin/Tabs/Ecre_Init_Settings.php:296 137 msgid "The maximum discount will be limited to the amount you set here." 138 msgstr "" 139 140 #: includes/Admin/Tabs/Ecre_Init_Settings.php:102 141 msgid "Minimum purchase amount to apply referral coupon" 142 msgstr "" 143 144 #: includes/Admin/Tabs/Ecre_Init_Settings.php:103 145 msgid "Set the minimum amount that a customer must purchase so that he can apply referral coupon." 146 msgstr "" 147 148 #: includes/Admin/Tabs/Ecre_Init_Settings.php:109 149 msgid "Message to show to the referrer" 150 msgstr "" 151 152 #: includes/Admin/Tabs/Ecre_Init_Settings.php:110 153 msgid "Customize the discount percentage or amount a referrer receives when someone purchases using his coupon." 154 msgstr "" 155 156 #: includes/Admin/Tabs/Ecre_Init_Settings.php:111 157 msgid "You need to have at least one order in your account before you can refer others" 158 msgstr "" 159 160 #: includes/Admin/Tabs/Ecre_Init_Settings.php:117 161 msgid "Coupon usage criteria" 162 msgstr "" 163 164 #: includes/Admin/Tabs/Ecre_Init_Settings.php:118 165 msgid "If this option is enabled then a referee customer will be able to apply referral coupons only once. This means if the referee customer receives multiple referral coupons and uses one of those coupons then the remaining coupons can't be used. Also a same referral coupon can't be used multiple times." 166 msgstr "" 167 168 #: includes/Admin/Tabs/Ecre_Init_Settings.php:119 169 msgid "A customer can use referral coupon only once." 170 msgstr "" 171 172 #: includes/Admin/Tabs/Ecre_Init_Settings.php:125 173 msgid "Social Share Options" 174 msgstr "" 175 176 #: includes/Admin/Tabs/Ecre_Init_Settings.php:126 177 msgid "Enable or disable social share options." 178 msgstr "" 179 180 #: includes/Admin/Tabs/Ecre_Init_Settings.php:127 181 msgid "Choose the social media platforms for referral sharing." 182 msgstr "" 183 184 #: includes/Admin/Tabs/Ecre_Init_Settings.php:133 185 msgid "EchoRewards tab on WooCommerce product page" 186 msgstr "" 187 188 #: includes/Admin/Tabs/Ecre_Init_Settings.php:134 189 msgid "Enabling this option will add a tab on product page where customers will be able to see their referral code which they can share with others." 190 msgstr "" 191 192 #: includes/Admin/Tabs/Ecre_Init_Settings.php:135 193 msgid "Show EchoRewards tab on WooCommerce product page" 194 msgstr "" 195 196 #: includes/Admin/Tabs/Ecre_Init_Settings.php:140 197 msgid "Referral program status" 198 msgstr "" 199 200 #: includes/Admin/Tabs/Ecre_Init_Settings.php:141 201 msgid "Enable referral program for your customers. Customers won't see the referral program option on their dashboard if you disable it." 202 msgstr "" 203 204 #: includes/Admin/Tabs/Ecre_Init_Settings.php:142 205 msgid "Enable referral program for the customers to share their referral code and get rewards" 206 msgstr "" 207 208 #: includes/Admin/Tabs/Ecre_Init_Settings.php:147 209 msgid "Referral status" 210 msgstr "" 211 212 #: includes/Admin/Tabs/Ecre_Init_Settings.php:148 213 msgid "If you enable this option, only those customers who has at-least an order in their account will be able to refer others using their coupon code." 214 msgstr "" 215 216 #: includes/Admin/Tabs/Ecre_Init_Settings.php:149 217 msgid "Referrer needs to have at-least one order before he can refer others" 218 msgstr "" 219 220 #: includes/Admin/Tabs/Ecre_Init_Settings.php:155 221 msgid "Floating referral widget" 222 msgstr "" 223 224 #: includes/Admin/Tabs/Ecre_Init_Settings.php:156 225 msgid "Enabling this option will show a floating widget on the Homepage, Shop page, Cart page, Checkout page and Single Product page on your website. Visitors and your customers will be able to know about your referral program when they click on the referral widget." 226 msgstr "" 227 228 #: includes/Admin/Tabs/Ecre_Init_Settings.php:157 229 msgid "Enable floating referral widget to be shown on your website" 230 msgstr "" 231 232 #: includes/Admin/Tabs/Ecre_Init_Settings.php:163 233 msgid "Social Sharing" 234 msgstr "" 235 236 #: includes/Admin/Tabs/Ecre_Init_Settings.php:164 237 msgid "Enable social sharing for your customers so that they can share their referral coupon on their preferred social media." 238 msgstr "" 239 240 #: includes/Admin/Tabs/Ecre_Init_Settings.php:165 241 msgid "Enable social sharing for customers to share their referral coupons" 242 msgstr "" 243 244 #: includes/Admin/Tabs/Ecre_Init_Settings.php:170 245 msgid "Referral coupon prefix" 246 msgstr "" 247 248 #: includes/Admin/Tabs/Ecre_Init_Settings.php:171 249 msgid "You can add your own prefix here. The referral coupons will be started with the prefix. It can help you to promote your brand identity." 250 msgstr "" 251 252 #: includes/Admin/Tabs/Ecre_Init_Settings.php:178 253 #: includes/Admin/Tabs/Ecre_Init_Settings.php:309 254 msgid "Include products" 255 msgstr "" 256 257 #: includes/Admin/Tabs/Ecre_Init_Settings.php:179 258 #: includes/Admin/Tabs/Ecre_Init_Settings.php:310 259 msgid "Products that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 260 msgstr "" 261 262 #: includes/Admin/Tabs/Ecre_Init_Settings.php:181 263 #: includes/Admin/Tabs/Ecre_Init_Settings.php:188 264 #: includes/Admin/Tabs/Ecre_Init_Settings.php:312 265 #: includes/Admin/Tabs/Ecre_Init_Settings.php:319 266 msgid "Search for products…" 267 msgstr "" 268 269 #: includes/Admin/Tabs/Ecre_Init_Settings.php:186 270 #: includes/Admin/Tabs/Ecre_Init_Settings.php:317 271 msgid "Exclude products" 272 msgstr "" 273 274 #: includes/Admin/Tabs/Ecre_Init_Settings.php:187 275 #: includes/Admin/Tabs/Ecre_Init_Settings.php:318 276 msgid "Products that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 277 msgstr "" 278 279 #: includes/Admin/Tabs/Ecre_Init_Settings.php:194 280 msgid "Include product categories" 281 msgstr "" 282 283 #: includes/Admin/Tabs/Ecre_Init_Settings.php:195 284 msgid "Product categories that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 285 msgstr "" 286 287 #: includes/Admin/Tabs/Ecre_Init_Settings.php:196 288 #: includes/Admin/Tabs/Ecre_Init_Settings.php:204 289 #: includes/Admin/Tabs/Ecre_Init_Settings.php:327 290 #: includes/Admin/Tabs/Ecre_Init_Settings.php:335 291 msgid "Search for categories…" 292 msgstr "" 293 294 #: includes/Admin/Tabs/Ecre_Init_Settings.php:202 295 #: includes/Admin/Tabs/Ecre_Init_Settings.php:325 296 #: includes/Admin/Tabs/Ecre_Init_Settings.php:333 297 msgid "Exclude categories" 298 msgstr "" 299 300 #: includes/Admin/Tabs/Ecre_Init_Settings.php:203 301 #: includes/Admin/Tabs/Ecre_Init_Settings.php:326 302 #: includes/Admin/Tabs/Ecre_Init_Settings.php:334 303 msgid "Product categories that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 304 msgstr "" 305 306 #: includes/Admin/Tabs/Ecre_Init_Settings.php:210 307 #: includes/Admin/Tabs/Ecre_Init_Settings.php:240 308 msgid "Enable email notification" 309 msgstr "" 310 311 #: includes/Admin/Tabs/Ecre_Init_Settings.php:211 312 msgid "When this option is enabled, customers will see the option to refer others via email." 313 msgstr "" 314 315 #: includes/Admin/Tabs/Ecre_Init_Settings.php:212 316 msgid "Allow users to send their referral code to others via email" 317 msgstr "" 318 319 #: includes/Admin/Tabs/Ecre_Init_Settings.php:217 320 #: includes/Admin/Tabs/Ecre_Init_Settings.php:247 321 msgid "Email subject" 322 msgstr "" 323 324 #: includes/Admin/Tabs/Ecre_Init_Settings.php:218 325 #: includes/Admin/Tabs/Ecre_Init_Settings.php:248 326 msgid "Change the subject of the invitation email." 327 msgstr "" 328 329 #: includes/Admin/Tabs/Ecre_Init_Settings.php:219 330 msgid "You got a discount coupon! 🎁" 331 msgstr "" 332 333 #: includes/Admin/Tabs/Ecre_Init_Settings.php:224 334 #: includes/Admin/Tabs/Ecre_Init_Settings.php:254 335 msgid "Email heading" 336 msgstr "" 337 338 #: includes/Admin/Tabs/Ecre_Init_Settings.php:225 339 #: includes/Admin/Tabs/Ecre_Init_Settings.php:255 340 msgid "Change the heading/title of the email content." 341 msgstr "" 342 343 #: includes/Admin/Tabs/Ecre_Init_Settings.php:227 344 msgid "Congratulations on your reward." 345 msgstr "" 346 347 #: includes/Admin/Tabs/Ecre_Init_Settings.php:232 348 #: includes/Admin/Tabs/Ecre_Init_Settings.php:261 379 #: includes/Admin/Tabs/Ecre_Init_Settings.php:301 349 380 msgid "Email description text" 350 381 msgstr "" 351 382 352 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 33353 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 262383 #: includes/Admin/Tabs/Ecre_Init_Settings.php:263 384 #: includes/Admin/Tabs/Ecre_Init_Settings.php:302 354 385 msgid "Change the description text of the email content." 355 386 msgstr "" 356 387 357 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 35388 #: includes/Admin/Tabs/Ecre_Init_Settings.php:265 358 389 #, php-format 359 390 msgid "%s has some awesome products. Check them out with an awesome discount for your first purchase." 360 391 msgstr "" 361 392 362 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 41393 #: includes/Admin/Tabs/Ecre_Init_Settings.php:281 363 394 msgid "When this option is enabled, customers will receive a email notification as soon as they receive a reward coupon." 364 395 msgstr "" 365 396 366 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 42397 #: includes/Admin/Tabs/Ecre_Init_Settings.php:282 367 398 msgid "Send email to the referrer after they receive a reward by sharing their coupon" 368 399 msgstr "" 369 400 370 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 49401 #: includes/Admin/Tabs/Ecre_Init_Settings.php:289 371 402 msgid "Here's your reward for a successful referral! 🎁" 372 403 msgstr "" 373 404 374 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 56405 #: includes/Admin/Tabs/Ecre_Init_Settings.php:296 375 406 msgid "Congratulations!" 376 407 msgstr "" 377 408 378 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 263409 #: includes/Admin/Tabs/Ecre_Init_Settings.php:303 379 410 msgid "You've received a reward coupon. Enjoy an exciting discount on your next purchase." 380 411 msgstr "" 381 412 382 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 268413 #: includes/Admin/Tabs/Ecre_Init_Settings.php:308 383 414 msgid "Expiration Date" 384 415 msgstr "" 385 416 386 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 269417 #: includes/Admin/Tabs/Ecre_Init_Settings.php:309 387 418 msgid "Set the date on which the discount codes or rewards will expire. After this date, the discounts won't be applicable." 388 419 msgstr "" 389 420 390 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 274421 #: includes/Admin/Tabs/Ecre_Init_Settings.php:314 391 422 msgid "Reward coupon type" 392 423 msgstr "" 393 424 394 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 281425 #: includes/Admin/Tabs/Ecre_Init_Settings.php:321 395 426 msgid "Reward discount amount" 396 427 msgstr "" 397 428 398 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 282429 #: includes/Admin/Tabs/Ecre_Init_Settings.php:322 399 430 msgid "The discount amount of the reward coupon when someone purchases using the referral code of the customer." 400 431 msgstr "" 401 432 402 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 285433 #: includes/Admin/Tabs/Ecre_Init_Settings.php:325 403 434 msgid "This change will only apply to the new reward coupons." 404 435 msgstr "" 405 436 406 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 288437 #: includes/Admin/Tabs/Ecre_Init_Settings.php:328 407 438 msgid "Minimum purchase amount to apply reward coupon" 408 439 msgstr "" 409 440 410 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 289441 #: includes/Admin/Tabs/Ecre_Init_Settings.php:329 411 442 msgid "Set the amount a customer needs to have in the cart so that he can apply the reward coupon." 412 443 msgstr "" 413 444 414 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 295445 #: includes/Admin/Tabs/Ecre_Init_Settings.php:335 415 446 msgid "Reward discount capping" 416 447 msgstr "" 417 448 418 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 02449 #: includes/Admin/Tabs/Ecre_Init_Settings.php:342 419 450 msgid "Reward coupon validity" 420 451 msgstr "" 421 452 422 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 03453 #: includes/Admin/Tabs/Ecre_Init_Settings.php:343 423 454 msgid "Set the number of days the reward coupon will be valid after it has been issued." 424 455 msgstr "" 425 456 426 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 41457 #: includes/Admin/Tabs/Ecre_Init_Settings.php:381 427 458 msgid "Reward coupon usage limit" 428 459 msgstr "" 429 460 430 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 42461 #: includes/Admin/Tabs/Ecre_Init_Settings.php:382 431 462 msgid "Set the number of how many times a reward coupon can be used." 432 463 msgstr "" … … 448 479 msgstr "" 449 480 450 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:1 17451 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:35 4481 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:120 482 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:357 452 483 msgid "Pro" 453 484 msgstr "" 454 485 455 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:59 1486 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:594 456 487 msgid "YES" 457 488 msgstr "" 458 489 459 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:59 5490 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:598 460 491 msgid "NO" 492 msgstr "" 493 494 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:744 495 #: includes/Templates/Ecre_Email_Template.php:169 496 msgid "Hi" 497 msgstr "" 498 499 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:748 500 msgid "Enjoy " 501 msgstr "" 502 503 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:748 504 #: includes/Templates/Ecre_Email_Template.php:171 505 msgid "discount" 506 msgstr "" 507 508 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:748 509 #: includes/Templates/Ecre_Email_Template.php:172 510 msgid "with this coupon code" 511 msgstr "" 512 513 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:779 514 msgid "Reset" 515 msgstr "" 516 517 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:785 518 msgid "Supported formats: png, jpg" 461 519 msgstr "" 462 520 … … 647 705 msgstr "" 648 706 649 #: includes/Templates/Ecre_Email_Template.php:169650 msgid "Hi"651 msgstr ""652 653 707 #: includes/Templates/Ecre_Email_Template.php:170 654 708 msgid "Enjoy" 655 msgstr ""656 657 #: includes/Templates/Ecre_Email_Template.php:171658 msgid "discount"659 msgstr ""660 661 #: includes/Templates/Ecre_Email_Template.php:172662 msgid "with this coupon code"663 709 msgstr "" 664 710 -
echo-rewards/tags/1.2.1/readme.txt
r3079342 r3079797 5 5 Tested up to: 6.5 6 6 Requires PHP: 5.4 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 80 80 **📊 Advanced Reporting & Analytics:** Monitor referral statistics including the most active referrer, new customer acquisition, and total generated revenue from the referral program. Take proactive decisions based on your program’s performance and enhance your future marketing efforts. 81 81 82 **🎨 Customize Referral Program Name:** You can customize the name and use a custom icon on the Referral Program menu customers get on their My Account page, giving your referral program a unique touch.83 84 **🔒 Set Referral Limit:** Control your referral program and maintain integrity by setting a monthly cap on how many times a customer can refer friends.85 86 82 [✨ Try Live Demo](https://go.wppool.dev/ChuU) | [⚡ Get the Premium Version](https://go.wppool.dev/mhyt/) 87 83 … … 122 118 == Changelog == 123 119 120 = 1.2.1 – 01 May 2024 = 121 * **Fix:** Fixed an issue on add product page & order page 122 124 123 = 1.2.0 – 30 Apr 2024 = 125 124 * **New:** The menu name and icon shown on the My Account page can now be customized from plugin settings -
echo-rewards/trunk/echo-rewards.php
r3079076 r3079797 4 4 * Plugin URI: https://echorewards.pro 5 5 * Description: WooCommerce coupon plugin for WordPress. Generate coupons, reward customers, and setup the ideal customer referral program for your store. 6 * Version: 1.2. 06 * Version: 1.2.1 7 7 * Author: EchoRewards 8 8 * Author URI: https://echorewards.pro/ … … 23 23 24 24 if ( ! defined( 'ECRE_VERSION' ) ) { 25 define( 'ECRE_VERSION', '1.2. 0' );25 define( 'ECRE_VERSION', '1.2.1' ); 26 26 define( 'ECRE_FILE', __FILE__ ); 27 27 define( 'ECRE_PATH', dirname( ECRE_FILE ) ); -
echo-rewards/trunk/includes/Admin/Tabs/Ecre_Init_Settings.php
r3079076 r3079797 79 79 ), 80 80 self::FIELD_PREFIX . 'referral_icon' => array( 81 'name' => __( ' Referralicon', 'echo-rewards-pro' ),82 'tooltip' => __( 'Ch oose the type of discount you want to offer (in percentage or a fixed amount).', 'echo-rewards' ),81 'name' => __( 'EchoRewards menu icon', 'echo-rewards-pro' ), 82 'tooltip' => __( 'Change the EchoRewards menu icon', 'echo-rewards' ), 83 83 'default_value' => '', 84 84 'display_label' => 'yes', -
echo-rewards/trunk/includes/Ecre_Generate_Coupon.php
r3054309 r3079797 86 86 $new_coupon_id = wp_insert_post( $coupon ); 87 87 88 update_user_meta( $user_id, 'ecre_referral_coupon', $coupon_code ); 88 89 update_post_meta( $new_coupon_id, 'discount_type', $discount_type ); 89 90 update_post_meta( $new_coupon_id, 'coupon_amount', $amount ); -
echo-rewards/trunk/includes/ecre-functions.php
r3079076 r3079797 449 449 $ecre_currency_sign = str_replace( ' ', '', $ecre_currency_sign ); 450 450 $ecre_currency_sign = trim( $ecre_currency_sign ); 451 $referral_coupon = ecre_referral_coupons();452 451 $referral_discount = ''; 453 452 $reward_discount = ''; 454 453 $referral_discount_type = ''; 455 454 $reward_discount_type = ''; 456 $coupon_code = ' ECHO75V5KLDA';455 $coupon_code = '75V5KLDA'; 457 456 $referral_coupon_code = ''; 457 $current_user_id = get_current_user_id(); 458 $referral_coupon = get_user_meta( $current_user_id, 'ecre_referral_coupon', true ); 458 459 459 460 if ( ! empty( $default_values ) ) { … … 462 463 $referral_discount_type = get_option( 'ecre_referral_discount_type', $default_values['ecre_referral_discount_type'] ); 463 464 464 if ( ! empty( $referral_coupon ) ) { 465 $referral_coupon_code = strtoupper( $referral_coupon[0]['coupon_code'] ); 466 } 465 $referral_coupon_code = $referral_coupon ? $referral_coupon : 'ECHO75V5KLDA'; 467 466 468 467 if ( 'percent' === $referral_discount_type ) { -
echo-rewards/trunk/languages/echo-rewards.pot
r3072106 r3079797 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 2024-0 4-16 17:42+0600\n"5 "POT-Creation-Date: 2024-05-01 15:28+0600\n" 6 6 "PO-Revision-Date: 2024-04-15 18:00+0600\n" 7 7 "Last-Translator: \n" … … 49 49 50 50 #: includes/Admin/Ecre_Menu.php:119 51 #: includes/Admin/Tabs/Ecre_Referral_Settings.php:2 3851 #: includes/Admin/Tabs/Ecre_Referral_Settings.php:274 52 52 msgid "Referral Settings" 53 53 msgstr "" … … 103 103 msgstr "" 104 104 105 #: includes/Admin/Tabs/Ecre_Email_Settings.php:1 86105 #: includes/Admin/Tabs/Ecre_Email_Settings.php:195 106 106 msgid "Reward Email Settings" 107 107 msgstr "" … … 112 112 113 113 #: includes/Admin/Tabs/Ecre_Init_Settings.php:75 114 #: includes/Admin/Tabs/Ecre_Init_Settings.php:89 115 #: includes/Admin/Tabs/Ecre_Init_Settings.php:315 116 msgid "Choose the type of discount you want to offer (in percentage or a fixed amount)." 117 msgstr "" 118 119 #: includes/Admin/Tabs/Ecre_Init_Settings.php:81 120 msgid "EchoRewards menu icon" 121 msgstr "" 122 114 123 #: includes/Admin/Tabs/Ecre_Init_Settings.php:82 124 msgid "Change the EchoRewards menu icon" 125 msgstr "" 126 127 #: includes/Admin/Tabs/Ecre_Init_Settings.php:88 128 msgid "Select widget position" 129 msgstr "" 130 131 #: includes/Admin/Tabs/Ecre_Init_Settings.php:96 132 msgid "Discount amount" 133 msgstr "" 134 135 #: includes/Admin/Tabs/Ecre_Init_Settings.php:97 136 msgid "The discount amount when someone purchases using the referral coupon of any customer." 137 msgstr "" 138 139 #: includes/Admin/Tabs/Ecre_Init_Settings.php:102 140 msgid "Discount capping" 141 msgstr "" 142 143 #: includes/Admin/Tabs/Ecre_Init_Settings.php:103 144 #: includes/Admin/Tabs/Ecre_Init_Settings.php:336 145 msgid "The maximum discount will be limited to the amount you set here." 146 msgstr "" 147 148 #: includes/Admin/Tabs/Ecre_Init_Settings.php:109 149 msgid "Monthly referral limit" 150 msgstr "" 151 152 #: includes/Admin/Tabs/Ecre_Init_Settings.php:110 153 msgid "Set the maximum number of times a customer can refer and earn rewards." 154 msgstr "" 155 156 #: includes/Admin/Tabs/Ecre_Init_Settings.php:116 157 #: includes/Admin/Tabs/Ecre_Init_Settings.php:121 158 msgid "Hide icon" 159 msgstr "" 160 161 #: includes/Admin/Tabs/Ecre_Init_Settings.php:125 162 msgid "EchoRewards menu name" 163 msgstr "" 164 165 #: includes/Admin/Tabs/Ecre_Init_Settings.php:126 166 msgid "This is the name your customers will see on the menu of their My Account page. Clicking on this name they will access their referral page." 167 msgstr "" 168 169 #: includes/Admin/Tabs/Ecre_Init_Settings.php:132 170 msgid "Minimum purchase amount to apply referral coupon" 171 msgstr "" 172 173 #: includes/Admin/Tabs/Ecre_Init_Settings.php:133 174 msgid "Set the minimum amount that a customer must purchase so that he can apply referral coupon." 175 msgstr "" 176 177 #: includes/Admin/Tabs/Ecre_Init_Settings.php:139 178 msgid "Message to show to the referrer" 179 msgstr "" 180 181 #: includes/Admin/Tabs/Ecre_Init_Settings.php:140 182 msgid "Customize the discount percentage or amount a referrer receives when someone purchases using his coupon." 183 msgstr "" 184 185 #: includes/Admin/Tabs/Ecre_Init_Settings.php:141 186 msgid "You need to have at least one order in your account before you can refer others" 187 msgstr "" 188 189 #: includes/Admin/Tabs/Ecre_Init_Settings.php:147 190 msgid "Coupon usage criteria" 191 msgstr "" 192 193 #: includes/Admin/Tabs/Ecre_Init_Settings.php:148 194 msgid "If this option is enabled then a referee customer will be able to apply referral coupons only once. This means if the referee customer receives multiple referral coupons and uses one of those coupons then the remaining coupons can't be used. Also a same referral coupon can't be used multiple times." 195 msgstr "" 196 197 #: includes/Admin/Tabs/Ecre_Init_Settings.php:149 198 msgid "A customer can use referral coupon only once." 199 msgstr "" 200 201 #: includes/Admin/Tabs/Ecre_Init_Settings.php:155 202 msgid "Social Share Options" 203 msgstr "" 204 205 #: includes/Admin/Tabs/Ecre_Init_Settings.php:156 206 msgid "Enable or disable social share options." 207 msgstr "" 208 209 #: includes/Admin/Tabs/Ecre_Init_Settings.php:157 210 msgid "Choose the social media platforms for referral sharing." 211 msgstr "" 212 213 #: includes/Admin/Tabs/Ecre_Init_Settings.php:163 214 msgid "EchoRewards tab on WooCommerce product page" 215 msgstr "" 216 217 #: includes/Admin/Tabs/Ecre_Init_Settings.php:164 218 msgid "Enabling this option will add a tab on product page where customers will be able to see their referral code which they can share with others." 219 msgstr "" 220 221 #: includes/Admin/Tabs/Ecre_Init_Settings.php:165 222 msgid "Show EchoRewards tab on WooCommerce product page" 223 msgstr "" 224 225 #: includes/Admin/Tabs/Ecre_Init_Settings.php:170 226 msgid "Referral program status" 227 msgstr "" 228 229 #: includes/Admin/Tabs/Ecre_Init_Settings.php:171 230 msgid "Enable referral program for your customers. Customers won't see the referral program option on their dashboard if you disable it." 231 msgstr "" 232 233 #: includes/Admin/Tabs/Ecre_Init_Settings.php:172 234 msgid "Enable referral program for the customers to share their referral code and get rewards" 235 msgstr "" 236 237 #: includes/Admin/Tabs/Ecre_Init_Settings.php:177 238 msgid "Referral status" 239 msgstr "" 240 241 #: includes/Admin/Tabs/Ecre_Init_Settings.php:178 242 msgid "If you enable this option, only those customers who has at-least an order in their account will be able to refer others using their coupon code." 243 msgstr "" 244 245 #: includes/Admin/Tabs/Ecre_Init_Settings.php:179 246 msgid "Referrer needs to have at-least one order before he can refer others" 247 msgstr "" 248 249 #: includes/Admin/Tabs/Ecre_Init_Settings.php:185 250 msgid "Floating referral widget" 251 msgstr "" 252 253 #: includes/Admin/Tabs/Ecre_Init_Settings.php:186 254 msgid "Enabling this option will show a floating widget on the Homepage, Shop page, Cart page, Checkout page and Single Product page on your website. Visitors and your customers will be able to know about your referral program when they click on the referral widget." 255 msgstr "" 256 257 #: includes/Admin/Tabs/Ecre_Init_Settings.php:187 258 msgid "Enable floating referral widget to be shown on your website" 259 msgstr "" 260 261 #: includes/Admin/Tabs/Ecre_Init_Settings.php:193 262 msgid "Social Sharing" 263 msgstr "" 264 265 #: includes/Admin/Tabs/Ecre_Init_Settings.php:194 266 msgid "Enable social sharing for your customers so that they can share their referral coupon on their preferred social media." 267 msgstr "" 268 269 #: includes/Admin/Tabs/Ecre_Init_Settings.php:195 270 msgid "Enable social sharing for customers to share their referral coupons" 271 msgstr "" 272 273 #: includes/Admin/Tabs/Ecre_Init_Settings.php:200 274 msgid "Referral coupon prefix" 275 msgstr "" 276 277 #: includes/Admin/Tabs/Ecre_Init_Settings.php:201 278 msgid "You can add your own prefix here. The referral coupons will be started with the prefix. It can help you to promote your brand identity." 279 msgstr "" 280 281 #: includes/Admin/Tabs/Ecre_Init_Settings.php:208 282 #: includes/Admin/Tabs/Ecre_Init_Settings.php:349 283 msgid "Include products" 284 msgstr "" 285 286 #: includes/Admin/Tabs/Ecre_Init_Settings.php:209 287 #: includes/Admin/Tabs/Ecre_Init_Settings.php:350 288 msgid "Products that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 289 msgstr "" 290 291 #: includes/Admin/Tabs/Ecre_Init_Settings.php:211 292 #: includes/Admin/Tabs/Ecre_Init_Settings.php:218 293 #: includes/Admin/Tabs/Ecre_Init_Settings.php:352 294 #: includes/Admin/Tabs/Ecre_Init_Settings.php:359 295 msgid "Search for products…" 296 msgstr "" 297 298 #: includes/Admin/Tabs/Ecre_Init_Settings.php:216 299 #: includes/Admin/Tabs/Ecre_Init_Settings.php:357 300 msgid "Exclude products" 301 msgstr "" 302 303 #: includes/Admin/Tabs/Ecre_Init_Settings.php:217 304 #: includes/Admin/Tabs/Ecre_Init_Settings.php:358 305 msgid "Products that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 306 msgstr "" 307 308 #: includes/Admin/Tabs/Ecre_Init_Settings.php:224 309 msgid "Include product categories" 310 msgstr "" 311 312 #: includes/Admin/Tabs/Ecre_Init_Settings.php:225 313 msgid "Product categories that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 314 msgstr "" 315 316 #: includes/Admin/Tabs/Ecre_Init_Settings.php:226 317 #: includes/Admin/Tabs/Ecre_Init_Settings.php:234 318 #: includes/Admin/Tabs/Ecre_Init_Settings.php:367 319 #: includes/Admin/Tabs/Ecre_Init_Settings.php:375 320 msgid "Search for categories…" 321 msgstr "" 322 323 #: includes/Admin/Tabs/Ecre_Init_Settings.php:232 324 #: includes/Admin/Tabs/Ecre_Init_Settings.php:365 325 #: includes/Admin/Tabs/Ecre_Init_Settings.php:373 326 msgid "Exclude categories" 327 msgstr "" 328 329 #: includes/Admin/Tabs/Ecre_Init_Settings.php:233 330 #: includes/Admin/Tabs/Ecre_Init_Settings.php:366 331 #: includes/Admin/Tabs/Ecre_Init_Settings.php:374 332 msgid "Product categories that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 333 msgstr "" 334 335 #: includes/Admin/Tabs/Ecre_Init_Settings.php:240 336 #: includes/Admin/Tabs/Ecre_Init_Settings.php:280 337 msgid "Enable email notification" 338 msgstr "" 339 340 #: includes/Admin/Tabs/Ecre_Init_Settings.php:241 341 msgid "When this option is enabled, customers will see the option to refer others via email." 342 msgstr "" 343 344 #: includes/Admin/Tabs/Ecre_Init_Settings.php:242 345 msgid "Allow users to send their referral code to others via email" 346 msgstr "" 347 348 #: includes/Admin/Tabs/Ecre_Init_Settings.php:247 349 #: includes/Admin/Tabs/Ecre_Init_Settings.php:287 350 msgid "Email subject" 351 msgstr "" 352 353 #: includes/Admin/Tabs/Ecre_Init_Settings.php:248 354 #: includes/Admin/Tabs/Ecre_Init_Settings.php:288 355 msgid "Change the subject of the invitation email." 356 msgstr "" 357 358 #: includes/Admin/Tabs/Ecre_Init_Settings.php:249 359 msgid "You got a discount coupon! 🎁" 360 msgstr "" 361 362 #: includes/Admin/Tabs/Ecre_Init_Settings.php:254 363 #: includes/Admin/Tabs/Ecre_Init_Settings.php:294 364 msgid "Email heading" 365 msgstr "" 366 367 #: includes/Admin/Tabs/Ecre_Init_Settings.php:255 368 #: includes/Admin/Tabs/Ecre_Init_Settings.php:295 369 msgid "Change the heading/title of the email content." 370 msgstr "" 371 372 #: includes/Admin/Tabs/Ecre_Init_Settings.php:257 373 msgid "Congratulations on your reward." 374 msgstr "" 375 376 #: includes/Admin/Tabs/Ecre_Init_Settings.php:262 377 #: includes/Admin/Tabs/Ecre_Init_Settings.php:270 115 378 #: includes/Admin/Tabs/Ecre_Init_Settings.php:275 116 msgid "Choose the type of discount you want to offer (in percentage or a fixed amount)." 117 msgstr "" 118 119 #: includes/Admin/Tabs/Ecre_Init_Settings.php:81 120 msgid "Select widget position" 121 msgstr "" 122 123 #: includes/Admin/Tabs/Ecre_Init_Settings.php:89 124 msgid "Discount amount" 125 msgstr "" 126 127 #: includes/Admin/Tabs/Ecre_Init_Settings.php:90 128 msgid "The discount amount when someone purchases using the referral coupon of any customer." 129 msgstr "" 130 131 #: includes/Admin/Tabs/Ecre_Init_Settings.php:95 132 msgid "Discount capping" 133 msgstr "" 134 135 #: includes/Admin/Tabs/Ecre_Init_Settings.php:96 136 #: includes/Admin/Tabs/Ecre_Init_Settings.php:296 137 msgid "The maximum discount will be limited to the amount you set here." 138 msgstr "" 139 140 #: includes/Admin/Tabs/Ecre_Init_Settings.php:102 141 msgid "Minimum purchase amount to apply referral coupon" 142 msgstr "" 143 144 #: includes/Admin/Tabs/Ecre_Init_Settings.php:103 145 msgid "Set the minimum amount that a customer must purchase so that he can apply referral coupon." 146 msgstr "" 147 148 #: includes/Admin/Tabs/Ecre_Init_Settings.php:109 149 msgid "Message to show to the referrer" 150 msgstr "" 151 152 #: includes/Admin/Tabs/Ecre_Init_Settings.php:110 153 msgid "Customize the discount percentage or amount a referrer receives when someone purchases using his coupon." 154 msgstr "" 155 156 #: includes/Admin/Tabs/Ecre_Init_Settings.php:111 157 msgid "You need to have at least one order in your account before you can refer others" 158 msgstr "" 159 160 #: includes/Admin/Tabs/Ecre_Init_Settings.php:117 161 msgid "Coupon usage criteria" 162 msgstr "" 163 164 #: includes/Admin/Tabs/Ecre_Init_Settings.php:118 165 msgid "If this option is enabled then a referee customer will be able to apply referral coupons only once. This means if the referee customer receives multiple referral coupons and uses one of those coupons then the remaining coupons can't be used. Also a same referral coupon can't be used multiple times." 166 msgstr "" 167 168 #: includes/Admin/Tabs/Ecre_Init_Settings.php:119 169 msgid "A customer can use referral coupon only once." 170 msgstr "" 171 172 #: includes/Admin/Tabs/Ecre_Init_Settings.php:125 173 msgid "Social Share Options" 174 msgstr "" 175 176 #: includes/Admin/Tabs/Ecre_Init_Settings.php:126 177 msgid "Enable or disable social share options." 178 msgstr "" 179 180 #: includes/Admin/Tabs/Ecre_Init_Settings.php:127 181 msgid "Choose the social media platforms for referral sharing." 182 msgstr "" 183 184 #: includes/Admin/Tabs/Ecre_Init_Settings.php:133 185 msgid "EchoRewards tab on WooCommerce product page" 186 msgstr "" 187 188 #: includes/Admin/Tabs/Ecre_Init_Settings.php:134 189 msgid "Enabling this option will add a tab on product page where customers will be able to see their referral code which they can share with others." 190 msgstr "" 191 192 #: includes/Admin/Tabs/Ecre_Init_Settings.php:135 193 msgid "Show EchoRewards tab on WooCommerce product page" 194 msgstr "" 195 196 #: includes/Admin/Tabs/Ecre_Init_Settings.php:140 197 msgid "Referral program status" 198 msgstr "" 199 200 #: includes/Admin/Tabs/Ecre_Init_Settings.php:141 201 msgid "Enable referral program for your customers. Customers won't see the referral program option on their dashboard if you disable it." 202 msgstr "" 203 204 #: includes/Admin/Tabs/Ecre_Init_Settings.php:142 205 msgid "Enable referral program for the customers to share their referral code and get rewards" 206 msgstr "" 207 208 #: includes/Admin/Tabs/Ecre_Init_Settings.php:147 209 msgid "Referral status" 210 msgstr "" 211 212 #: includes/Admin/Tabs/Ecre_Init_Settings.php:148 213 msgid "If you enable this option, only those customers who has at-least an order in their account will be able to refer others using their coupon code." 214 msgstr "" 215 216 #: includes/Admin/Tabs/Ecre_Init_Settings.php:149 217 msgid "Referrer needs to have at-least one order before he can refer others" 218 msgstr "" 219 220 #: includes/Admin/Tabs/Ecre_Init_Settings.php:155 221 msgid "Floating referral widget" 222 msgstr "" 223 224 #: includes/Admin/Tabs/Ecre_Init_Settings.php:156 225 msgid "Enabling this option will show a floating widget on the Homepage, Shop page, Cart page, Checkout page and Single Product page on your website. Visitors and your customers will be able to know about your referral program when they click on the referral widget." 226 msgstr "" 227 228 #: includes/Admin/Tabs/Ecre_Init_Settings.php:157 229 msgid "Enable floating referral widget to be shown on your website" 230 msgstr "" 231 232 #: includes/Admin/Tabs/Ecre_Init_Settings.php:163 233 msgid "Social Sharing" 234 msgstr "" 235 236 #: includes/Admin/Tabs/Ecre_Init_Settings.php:164 237 msgid "Enable social sharing for your customers so that they can share their referral coupon on their preferred social media." 238 msgstr "" 239 240 #: includes/Admin/Tabs/Ecre_Init_Settings.php:165 241 msgid "Enable social sharing for customers to share their referral coupons" 242 msgstr "" 243 244 #: includes/Admin/Tabs/Ecre_Init_Settings.php:170 245 msgid "Referral coupon prefix" 246 msgstr "" 247 248 #: includes/Admin/Tabs/Ecre_Init_Settings.php:171 249 msgid "You can add your own prefix here. The referral coupons will be started with the prefix. It can help you to promote your brand identity." 250 msgstr "" 251 252 #: includes/Admin/Tabs/Ecre_Init_Settings.php:178 253 #: includes/Admin/Tabs/Ecre_Init_Settings.php:309 254 msgid "Include products" 255 msgstr "" 256 257 #: includes/Admin/Tabs/Ecre_Init_Settings.php:179 258 #: includes/Admin/Tabs/Ecre_Init_Settings.php:310 259 msgid "Products that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 260 msgstr "" 261 262 #: includes/Admin/Tabs/Ecre_Init_Settings.php:181 263 #: includes/Admin/Tabs/Ecre_Init_Settings.php:188 264 #: includes/Admin/Tabs/Ecre_Init_Settings.php:312 265 #: includes/Admin/Tabs/Ecre_Init_Settings.php:319 266 msgid "Search for products…" 267 msgstr "" 268 269 #: includes/Admin/Tabs/Ecre_Init_Settings.php:186 270 #: includes/Admin/Tabs/Ecre_Init_Settings.php:317 271 msgid "Exclude products" 272 msgstr "" 273 274 #: includes/Admin/Tabs/Ecre_Init_Settings.php:187 275 #: includes/Admin/Tabs/Ecre_Init_Settings.php:318 276 msgid "Products that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 277 msgstr "" 278 279 #: includes/Admin/Tabs/Ecre_Init_Settings.php:194 280 msgid "Include product categories" 281 msgstr "" 282 283 #: includes/Admin/Tabs/Ecre_Init_Settings.php:195 284 msgid "Product categories that the coupon will be applied to, or that need to be in the cart in order for the 'Fixed cart discount' to be applied." 285 msgstr "" 286 287 #: includes/Admin/Tabs/Ecre_Init_Settings.php:196 288 #: includes/Admin/Tabs/Ecre_Init_Settings.php:204 289 #: includes/Admin/Tabs/Ecre_Init_Settings.php:327 290 #: includes/Admin/Tabs/Ecre_Init_Settings.php:335 291 msgid "Search for categories…" 292 msgstr "" 293 294 #: includes/Admin/Tabs/Ecre_Init_Settings.php:202 295 #: includes/Admin/Tabs/Ecre_Init_Settings.php:325 296 #: includes/Admin/Tabs/Ecre_Init_Settings.php:333 297 msgid "Exclude categories" 298 msgstr "" 299 300 #: includes/Admin/Tabs/Ecre_Init_Settings.php:203 301 #: includes/Admin/Tabs/Ecre_Init_Settings.php:326 302 #: includes/Admin/Tabs/Ecre_Init_Settings.php:334 303 msgid "Product categories that the coupon will not be applied to, or that cannot be in the cart in order for the 'Fixed cart discount' to be applied." 304 msgstr "" 305 306 #: includes/Admin/Tabs/Ecre_Init_Settings.php:210 307 #: includes/Admin/Tabs/Ecre_Init_Settings.php:240 308 msgid "Enable email notification" 309 msgstr "" 310 311 #: includes/Admin/Tabs/Ecre_Init_Settings.php:211 312 msgid "When this option is enabled, customers will see the option to refer others via email." 313 msgstr "" 314 315 #: includes/Admin/Tabs/Ecre_Init_Settings.php:212 316 msgid "Allow users to send their referral code to others via email" 317 msgstr "" 318 319 #: includes/Admin/Tabs/Ecre_Init_Settings.php:217 320 #: includes/Admin/Tabs/Ecre_Init_Settings.php:247 321 msgid "Email subject" 322 msgstr "" 323 324 #: includes/Admin/Tabs/Ecre_Init_Settings.php:218 325 #: includes/Admin/Tabs/Ecre_Init_Settings.php:248 326 msgid "Change the subject of the invitation email." 327 msgstr "" 328 329 #: includes/Admin/Tabs/Ecre_Init_Settings.php:219 330 msgid "You got a discount coupon! 🎁" 331 msgstr "" 332 333 #: includes/Admin/Tabs/Ecre_Init_Settings.php:224 334 #: includes/Admin/Tabs/Ecre_Init_Settings.php:254 335 msgid "Email heading" 336 msgstr "" 337 338 #: includes/Admin/Tabs/Ecre_Init_Settings.php:225 339 #: includes/Admin/Tabs/Ecre_Init_Settings.php:255 340 msgid "Change the heading/title of the email content." 341 msgstr "" 342 343 #: includes/Admin/Tabs/Ecre_Init_Settings.php:227 344 msgid "Congratulations on your reward." 345 msgstr "" 346 347 #: includes/Admin/Tabs/Ecre_Init_Settings.php:232 348 #: includes/Admin/Tabs/Ecre_Init_Settings.php:261 379 #: includes/Admin/Tabs/Ecre_Init_Settings.php:301 349 380 msgid "Email description text" 350 381 msgstr "" 351 382 352 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 33353 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 262383 #: includes/Admin/Tabs/Ecre_Init_Settings.php:263 384 #: includes/Admin/Tabs/Ecre_Init_Settings.php:302 354 385 msgid "Change the description text of the email content." 355 386 msgstr "" 356 387 357 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 35388 #: includes/Admin/Tabs/Ecre_Init_Settings.php:265 358 389 #, php-format 359 390 msgid "%s has some awesome products. Check them out with an awesome discount for your first purchase." 360 391 msgstr "" 361 392 362 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 41393 #: includes/Admin/Tabs/Ecre_Init_Settings.php:281 363 394 msgid "When this option is enabled, customers will receive a email notification as soon as they receive a reward coupon." 364 395 msgstr "" 365 396 366 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 42397 #: includes/Admin/Tabs/Ecre_Init_Settings.php:282 367 398 msgid "Send email to the referrer after they receive a reward by sharing their coupon" 368 399 msgstr "" 369 400 370 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 49401 #: includes/Admin/Tabs/Ecre_Init_Settings.php:289 371 402 msgid "Here's your reward for a successful referral! 🎁" 372 403 msgstr "" 373 404 374 #: includes/Admin/Tabs/Ecre_Init_Settings.php:2 56405 #: includes/Admin/Tabs/Ecre_Init_Settings.php:296 375 406 msgid "Congratulations!" 376 407 msgstr "" 377 408 378 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 263409 #: includes/Admin/Tabs/Ecre_Init_Settings.php:303 379 410 msgid "You've received a reward coupon. Enjoy an exciting discount on your next purchase." 380 411 msgstr "" 381 412 382 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 268413 #: includes/Admin/Tabs/Ecre_Init_Settings.php:308 383 414 msgid "Expiration Date" 384 415 msgstr "" 385 416 386 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 269417 #: includes/Admin/Tabs/Ecre_Init_Settings.php:309 387 418 msgid "Set the date on which the discount codes or rewards will expire. After this date, the discounts won't be applicable." 388 419 msgstr "" 389 420 390 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 274421 #: includes/Admin/Tabs/Ecre_Init_Settings.php:314 391 422 msgid "Reward coupon type" 392 423 msgstr "" 393 424 394 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 281425 #: includes/Admin/Tabs/Ecre_Init_Settings.php:321 395 426 msgid "Reward discount amount" 396 427 msgstr "" 397 428 398 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 282429 #: includes/Admin/Tabs/Ecre_Init_Settings.php:322 399 430 msgid "The discount amount of the reward coupon when someone purchases using the referral code of the customer." 400 431 msgstr "" 401 432 402 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 285433 #: includes/Admin/Tabs/Ecre_Init_Settings.php:325 403 434 msgid "This change will only apply to the new reward coupons." 404 435 msgstr "" 405 436 406 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 288437 #: includes/Admin/Tabs/Ecre_Init_Settings.php:328 407 438 msgid "Minimum purchase amount to apply reward coupon" 408 439 msgstr "" 409 440 410 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 289441 #: includes/Admin/Tabs/Ecre_Init_Settings.php:329 411 442 msgid "Set the amount a customer needs to have in the cart so that he can apply the reward coupon." 412 443 msgstr "" 413 444 414 #: includes/Admin/Tabs/Ecre_Init_Settings.php: 295445 #: includes/Admin/Tabs/Ecre_Init_Settings.php:335 415 446 msgid "Reward discount capping" 416 447 msgstr "" 417 448 418 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 02449 #: includes/Admin/Tabs/Ecre_Init_Settings.php:342 419 450 msgid "Reward coupon validity" 420 451 msgstr "" 421 452 422 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 03453 #: includes/Admin/Tabs/Ecre_Init_Settings.php:343 423 454 msgid "Set the number of days the reward coupon will be valid after it has been issued." 424 455 msgstr "" 425 456 426 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 41457 #: includes/Admin/Tabs/Ecre_Init_Settings.php:381 427 458 msgid "Reward coupon usage limit" 428 459 msgstr "" 429 460 430 #: includes/Admin/Tabs/Ecre_Init_Settings.php:3 42461 #: includes/Admin/Tabs/Ecre_Init_Settings.php:382 431 462 msgid "Set the number of how many times a reward coupon can be used." 432 463 msgstr "" … … 448 479 msgstr "" 449 480 450 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:1 17451 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:35 4481 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:120 482 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:357 452 483 msgid "Pro" 453 484 msgstr "" 454 485 455 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:59 1486 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:594 456 487 msgid "YES" 457 488 msgstr "" 458 489 459 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:59 5490 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:598 460 491 msgid "NO" 492 msgstr "" 493 494 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:744 495 #: includes/Templates/Ecre_Email_Template.php:169 496 msgid "Hi" 497 msgstr "" 498 499 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:748 500 msgid "Enjoy " 501 msgstr "" 502 503 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:748 504 #: includes/Templates/Ecre_Email_Template.php:171 505 msgid "discount" 506 msgstr "" 507 508 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:748 509 #: includes/Templates/Ecre_Email_Template.php:172 510 msgid "with this coupon code" 511 msgstr "" 512 513 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:779 514 msgid "Reset" 515 msgstr "" 516 517 #: includes/Admin/Tabs/Ecre_Manage_Callback.php:785 518 msgid "Supported formats: png, jpg" 461 519 msgstr "" 462 520 … … 647 705 msgstr "" 648 706 649 #: includes/Templates/Ecre_Email_Template.php:169650 msgid "Hi"651 msgstr ""652 653 707 #: includes/Templates/Ecre_Email_Template.php:170 654 708 msgid "Enjoy" 655 msgstr ""656 657 #: includes/Templates/Ecre_Email_Template.php:171658 msgid "discount"659 msgstr ""660 661 #: includes/Templates/Ecre_Email_Template.php:172662 msgid "with this coupon code"663 709 msgstr "" 664 710 -
echo-rewards/trunk/readme.txt
r3079342 r3079797 5 5 Tested up to: 6.5 6 6 Requires PHP: 5.4 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 80 80 **📊 Advanced Reporting & Analytics:** Monitor referral statistics including the most active referrer, new customer acquisition, and total generated revenue from the referral program. Take proactive decisions based on your program’s performance and enhance your future marketing efforts. 81 81 82 **🎨 Customize Referral Program Name:** You can customize the name and use a custom icon on the Referral Program menu customers get on their My Account page, giving your referral program a unique touch.83 84 **🔒 Set Referral Limit:** Control your referral program and maintain integrity by setting a monthly cap on how many times a customer can refer friends.85 86 82 [✨ Try Live Demo](https://go.wppool.dev/ChuU) | [⚡ Get the Premium Version](https://go.wppool.dev/mhyt/) 87 83 … … 122 118 == Changelog == 123 119 120 = 1.2.1 – 01 May 2024 = 121 * **Fix:** Fixed an issue on add product page & order page 122 124 123 = 1.2.0 – 30 Apr 2024 = 125 124 * **New:** The menu name and icon shown on the My Account page can now be customized from plugin settings
Note: See TracChangeset
for help on using the changeset viewer.