Changeset 3397120
- Timestamp:
- 11/17/2025 10:59:20 AM (4 weeks ago)
- Location:
- easyjobs
- Files:
-
- 8 edited
- 1 copied
-
tags/2.6.5 (copied) (copied from easyjobs/trunk)
-
tags/2.6.5/README.txt (modified) (2 diffs)
-
tags/2.6.5/admin/class-easyjobs-admin.php (modified) (2 diffs)
-
tags/2.6.5/changelog.txt (modified) (1 diff)
-
tags/2.6.5/easyjobs.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-easyjobs-admin.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/easyjobs.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easyjobs/tags/2.6.5/README.txt
r3381072 r3397120 5 5 Requires PHP: 5.6 6 6 Tested up to: 6.8 7 Stable tag: 2.6. 47 Stable tag: 2.6.5 8 8 License: GPLv3 or later 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 139 139 == Changelog == 140 140 141 = 2.6.5 - 17/11/2025 = 142 * Few minor bug fixes & improvements. 143 141 144 = 2.6.4 - 20/10/2025 = 142 145 * Improved: Candidate filter functionality and UI. -
easyjobs/tags/2.6.5/admin/class-easyjobs-admin.php
r3365228 r3397120 306 306 * Black Friday Notice 307 307 */ 308 // $upgrade_cta_link_bf = 'https://easy.jobs/bfcm24-pricing';309 // $black_friday_notice_message = "<p>🔔 This Black Friday manage your candidate pool more smartly with easy.jobs PRO & <strong>Save Up to 80%</strong>.</p><a style='display: inline-flex;column-gap:5px;' class='button button-primary' href='{$upgrade_cta_link_bf}' target='_blank'><img style='width:15px;' src='{$crown_icon}'/>Upgrade to PRO</a>";310 311 // $_black_friday_notice = [ 312 // 'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg',313 // 'html' => $black_friday_notice_message,314 // ];315 // $notices->add(316 // 'black_friday_notice',317 // $_black_friday_notice,318 // [319 // 'classes' => 'updated put-dismiss-notice',320 // 'start' => $notices->time(),321 // // 'start' => $notices->strtotime( '+2 days' ),322 // "expire" => strtotime( '11:59:59pm 5th December, 2024' ),323 //'dismissible' => true,324 //'refresh' => EASYJOBS_VERSION,325 //'screens' => [ 'dashboard' ],326 //'display_if' => !empty($company_info) ? !$company_info->is_pro : true,327 //]328 //);308 $company_info = Easyjobs_Helper::get_company_info( true ); 309 $upgrade_cta_link_bf = 'https://easy.jobs/bfcm2025-admin-notice'; 310 $black_friday_notice_message = "<p><strong>Black Friday Mega Sale:</strong> Hire Faster With Smarter Recruitment Features – Now <strong>Up to 75% OFF! 🎁</strong> </p><div class='wpsp-notice-action-button' style='display: inline-flex;column-gap:5px;'><a class='button button-primary' href={$upgrade_cta_link_bf} target='_blank'>Upgrade To PRO</a> <button class='wpsp-notice-action-dismiss dismiss-btn' data-dismiss='true' target='_blank'>I’ll Grab It Later</button></div>"; 311 312 $_black_friday_notice = [ 313 'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg', 314 'html' => $black_friday_notice_message, 315 ]; 316 $notices->add( 317 'black_friday_notice', 318 $_black_friday_notice, 319 [ 320 'classes' => 'updated put-dismiss-notice', 321 'start' => strtotime( '12:00:00am 16th November, 2025' ), 322 "expire" => strtotime( '11:59:59pm 4th December, 2025' ), 323 'dismissible' => true, 324 'refresh' => EASYJOBS_VERSION, 325 'screens' => [ 'dashboard' ], 326 'display_if' => !empty($company_info) ? !$company_info->is_pro : true, 327 ] 328 ); 329 329 330 330 /** … … 380 380 381 381 /* 382 * Halloween, black friday, holiday notice css382 * Black Friday Notice css 2025 383 383 */ 384 #wpnotice-easyjobs-notice-halloween_notice,385 384 #wpnotice-easyjobs-notice-black_friday_notice { 386 border-left-color: #593dbd; 387 } 388 .notice-easyjobs-notice-halloween_notice .wpnotice-content-wrapper, 389 .notice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper { 385 border-left-color: #597DFC; 386 padding: 10px 40px 14px 20px; 387 } 388 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary, 389 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:focus, 390 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:hover { 391 background-color: #3B4045; 392 color: #fff; 393 box-shadow: 0px 1px 0px 0px #000000; 394 border: none; 395 border-radius: 6px; 396 padding: 2px 16px; 397 } 398 399 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button .wpsp-notice-action-dismiss { 400 background: none; 401 border: none; 402 color: #424242; 403 font-size: 14px; 404 font-weight: 400; 405 line-height: 1.5; 406 text-decoration: underline; 407 cursor: pointer; 408 padding: 0; 409 margin: 0; 410 display: inline-block; 411 margin-left: 5px; 412 } 413 414 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper { 390 415 display: flex; 391 align-items: center;416 align-items: start; 392 417 justify-content: space-between; 393 418 width: 100%; 394 } 395 a.holiday-notice.dismiss-btn { 396 display: inline-block; 397 padding: 8px; 398 color: #5626E7; 399 } 400 div.updated.easyjobs-notice .wpnotice-content-wrapper p, 401 div.updated.easyjobs-notice .wpnotice-content-wrapper a { 419 flex-direction: column; 420 } 421 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper p{ 402 422 font-size: 15px; 403 } 404 div.updated.easyjobs-notice.notice-easyjobs-notice-holiday_notice .wpnotice-content-wrapper p { 405 font-size: 18px; 406 } 407 .easyjobs-notice .wpnotice-content-wrapper > a.button-primary, 408 .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:focus, 409 .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:hover { 410 background-color: #593dbd; 411 border-color: #593dbd; 423 margin-top: 0; 424 padding-top: 0; 425 margin-bottom: 3px; 426 } 427 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper { 428 padding: 0; 412 429 } 413 430 @media only screen and (max-width: 767px) { 414 #wpnotice-easyjobs-notice-halloween_notice, 415 #wpnotice-easyjobs-notice-black_friday_notice, 416 #wpnotice-easyjobs-notice-holiday_notice { 431 #wpnotice-easyjobs-notice-black_friday_notice { 417 432 display: none !important; 418 433 } -
easyjobs/tags/2.6.5/changelog.txt
r3381072 r3397120 1 = 2.6.5 - 17/11/2025 = 2 * Few minor bug fixes & improvements. 3 1 4 = 2.6.4 - 20/10/2025 = 2 5 * Improved: Candidate filter functionality and UI. -
easyjobs/tags/2.6.5/easyjobs.php
r3381072 r3397120 11 11 * Plugin URI: https://easy.jobs 12 12 * Description: Easy solution for the job recruitment to attract, manage & hire right talent faster. 13 * Version: 2.6. 413 * Version: 2.6.5 14 14 * Author: easy.jobs 15 15 * Author URI: https://easy.jobs … … 28 28 * Defines CONSTANTS for Whole plugins. 29 29 */ 30 define( 'EASYJOBS_VERSION', '2.6. 4' );30 define( 'EASYJOBS_VERSION', '2.6.5' ); 31 31 define( 'EASYJOBS_PLUGIN_URL', 'https://easy.jobs' ); 32 32 define( 'EASYJOBS_URL', plugins_url( '/', __FILE__ ) ); -
easyjobs/trunk/README.txt
r3381072 r3397120 5 5 Requires PHP: 5.6 6 6 Tested up to: 6.8 7 Stable tag: 2.6. 47 Stable tag: 2.6.5 8 8 License: GPLv3 or later 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 139 139 == Changelog == 140 140 141 = 2.6.5 - 17/11/2025 = 142 * Few minor bug fixes & improvements. 143 141 144 = 2.6.4 - 20/10/2025 = 142 145 * Improved: Candidate filter functionality and UI. -
easyjobs/trunk/admin/class-easyjobs-admin.php
r3365228 r3397120 306 306 * Black Friday Notice 307 307 */ 308 // $upgrade_cta_link_bf = 'https://easy.jobs/bfcm24-pricing';309 // $black_friday_notice_message = "<p>🔔 This Black Friday manage your candidate pool more smartly with easy.jobs PRO & <strong>Save Up to 80%</strong>.</p><a style='display: inline-flex;column-gap:5px;' class='button button-primary' href='{$upgrade_cta_link_bf}' target='_blank'><img style='width:15px;' src='{$crown_icon}'/>Upgrade to PRO</a>";310 311 // $_black_friday_notice = [ 312 // 'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg',313 // 'html' => $black_friday_notice_message,314 // ];315 // $notices->add(316 // 'black_friday_notice',317 // $_black_friday_notice,318 // [319 // 'classes' => 'updated put-dismiss-notice',320 // 'start' => $notices->time(),321 // // 'start' => $notices->strtotime( '+2 days' ),322 // "expire" => strtotime( '11:59:59pm 5th December, 2024' ),323 //'dismissible' => true,324 //'refresh' => EASYJOBS_VERSION,325 //'screens' => [ 'dashboard' ],326 //'display_if' => !empty($company_info) ? !$company_info->is_pro : true,327 //]328 //);308 $company_info = Easyjobs_Helper::get_company_info( true ); 309 $upgrade_cta_link_bf = 'https://easy.jobs/bfcm2025-admin-notice'; 310 $black_friday_notice_message = "<p><strong>Black Friday Mega Sale:</strong> Hire Faster With Smarter Recruitment Features – Now <strong>Up to 75% OFF! 🎁</strong> </p><div class='wpsp-notice-action-button' style='display: inline-flex;column-gap:5px;'><a class='button button-primary' href={$upgrade_cta_link_bf} target='_blank'>Upgrade To PRO</a> <button class='wpsp-notice-action-dismiss dismiss-btn' data-dismiss='true' target='_blank'>I’ll Grab It Later</button></div>"; 311 312 $_black_friday_notice = [ 313 'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg', 314 'html' => $black_friday_notice_message, 315 ]; 316 $notices->add( 317 'black_friday_notice', 318 $_black_friday_notice, 319 [ 320 'classes' => 'updated put-dismiss-notice', 321 'start' => strtotime( '12:00:00am 16th November, 2025' ), 322 "expire" => strtotime( '11:59:59pm 4th December, 2025' ), 323 'dismissible' => true, 324 'refresh' => EASYJOBS_VERSION, 325 'screens' => [ 'dashboard' ], 326 'display_if' => !empty($company_info) ? !$company_info->is_pro : true, 327 ] 328 ); 329 329 330 330 /** … … 380 380 381 381 /* 382 * Halloween, black friday, holiday notice css382 * Black Friday Notice css 2025 383 383 */ 384 #wpnotice-easyjobs-notice-halloween_notice,385 384 #wpnotice-easyjobs-notice-black_friday_notice { 386 border-left-color: #593dbd; 387 } 388 .notice-easyjobs-notice-halloween_notice .wpnotice-content-wrapper, 389 .notice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper { 385 border-left-color: #597DFC; 386 padding: 10px 40px 14px 20px; 387 } 388 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary, 389 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:focus, 390 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:hover { 391 background-color: #3B4045; 392 color: #fff; 393 box-shadow: 0px 1px 0px 0px #000000; 394 border: none; 395 border-radius: 6px; 396 padding: 2px 16px; 397 } 398 399 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button .wpsp-notice-action-dismiss { 400 background: none; 401 border: none; 402 color: #424242; 403 font-size: 14px; 404 font-weight: 400; 405 line-height: 1.5; 406 text-decoration: underline; 407 cursor: pointer; 408 padding: 0; 409 margin: 0; 410 display: inline-block; 411 margin-left: 5px; 412 } 413 414 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper { 390 415 display: flex; 391 align-items: center;416 align-items: start; 392 417 justify-content: space-between; 393 418 width: 100%; 394 } 395 a.holiday-notice.dismiss-btn { 396 display: inline-block; 397 padding: 8px; 398 color: #5626E7; 399 } 400 div.updated.easyjobs-notice .wpnotice-content-wrapper p, 401 div.updated.easyjobs-notice .wpnotice-content-wrapper a { 419 flex-direction: column; 420 } 421 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper p{ 402 422 font-size: 15px; 403 } 404 div.updated.easyjobs-notice.notice-easyjobs-notice-holiday_notice .wpnotice-content-wrapper p { 405 font-size: 18px; 406 } 407 .easyjobs-notice .wpnotice-content-wrapper > a.button-primary, 408 .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:focus, 409 .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:hover { 410 background-color: #593dbd; 411 border-color: #593dbd; 423 margin-top: 0; 424 padding-top: 0; 425 margin-bottom: 3px; 426 } 427 #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper { 428 padding: 0; 412 429 } 413 430 @media only screen and (max-width: 767px) { 414 #wpnotice-easyjobs-notice-halloween_notice, 415 #wpnotice-easyjobs-notice-black_friday_notice, 416 #wpnotice-easyjobs-notice-holiday_notice { 431 #wpnotice-easyjobs-notice-black_friday_notice { 417 432 display: none !important; 418 433 } -
easyjobs/trunk/changelog.txt
r3381072 r3397120 1 = 2.6.5 - 17/11/2025 = 2 * Few minor bug fixes & improvements. 3 1 4 = 2.6.4 - 20/10/2025 = 2 5 * Improved: Candidate filter functionality and UI. -
easyjobs/trunk/easyjobs.php
r3381072 r3397120 11 11 * Plugin URI: https://easy.jobs 12 12 * Description: Easy solution for the job recruitment to attract, manage & hire right talent faster. 13 * Version: 2.6. 413 * Version: 2.6.5 14 14 * Author: easy.jobs 15 15 * Author URI: https://easy.jobs … … 28 28 * Defines CONSTANTS for Whole plugins. 29 29 */ 30 define( 'EASYJOBS_VERSION', '2.6. 4' );30 define( 'EASYJOBS_VERSION', '2.6.5' ); 31 31 define( 'EASYJOBS_PLUGIN_URL', 'https://easy.jobs' ); 32 32 define( 'EASYJOBS_URL', plugins_url( '/', __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.