Plugin Directory

Changeset 3317526


Ignore:
Timestamp:
06/25/2025 09:46:04 AM (9 months ago)
Author:
blueglassinteractive
Message:

v 2.7.13

Location:
job-postings
Files:
553 added
114 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • job-postings/trunk/admin/settings.php

    r3007197 r3317526  
    12251225
    12261226                                    <div class="row clearfix">
    1227                                         <label><?php echo _x('Default email', 'job-settings', 'job-postings') ?></label>
     1227                                        <label><?php echo _x('Default recipient email', 'job-settings', 'job-postings') ?></label>
    12281228                                        <div class="jobs-settings-input">
    12291229                                        <?php
     
    12341234                                            $name = $option_name;
    12351235                                            echo '<input type="text" name="'.$option_name.'" value="'.$value.'">';
     1236                                            echo '<p class="description jfw_hint">'.__("Default email where new job applications will be sent to. Default is the site's admin email.", 'job-postings').'</p>';
     1237
    12361238                                        ?>
    12371239                                        </div>
     
    12551257
    12561258                                            echo '<p class="description jfw_hint">'.__("If your site uses Yoast SEO, the structured SEO Schema will follow Yoast's recommendations. Choose 'Default' if you are not sure.", 'job-postings').'</p>';
     1259                                        ?>
     1260                                        </div>
     1261                                    </div>
     1262
     1263
     1264                                    <div class="row clearfix">
     1265                                        <label><?php echo _x('"From" email', 'job-settings', 'job-postings') ?></label>
     1266                                        <div class="jobs-settings-input">
     1267                                        <?php
     1268                                            $option_name = 'jobs_from_email';
     1269                                            $value = get_option( $option_name );
     1270                                            $value = sanitize_text_field($value);
     1271                                            if(empty($value)) $value = get_option('admin_email'); // default
     1272                                            $name = $option_name;
     1273                                            echo '<input type="text" name="'.$option_name.'" value="'.$value.'">';
     1274                                            echo '<p class="description jfw_hint">'.__("Email address that will be used as the sender of the email. Default is the site's admin email.", 'job-postings').'</p>';
     1275
    12571276                                        ?>
    12581277                                        </div>
  • job-postings/trunk/job-postings.php

    r3257145 r3317526  
    55Description: WordPress plugin that make it easy to add job postings to your company’s website in a structured way.
    66Author: BlueGlass
    7 Version: 2.7.12
     7Version: 2.7.13
    88Author URI: http://blueglass.ch/
    99Text Domain: job-postings
     
    1717if( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    1818
    19 define('JOBPOSTINGSVERSION', '2.7.12');
     19define('JOBPOSTINGSVERSION', '2.7.13');
    2020define('JOBPOSTINGSPATH', plugin_dir_path( __FILE__ ));
    2121define('JOBPOSTINGSURL', plugin_dir_url(__FILE__));
  • job-postings/trunk/readme.txt

    r3257145 r3317526  
    33Tags: jobs, recruiter, employment, career, vacancy
    44Requires at least: 5.0
    5 Tested up to: 6.7.2
    6 Stable tag: 2.7.12
     5Tested up to: 6.8
     6Stable tag: 2.7.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43= 2.7.13 =
     44* Fixed issue with email attachments
     45* Added "From" email setting to plugin settings
     46* Added "From" name setting to plugin settings
     47
    4348= 2.7.12 =
    4449* Fix for Authenticated (Subscriber+) Arbitrary File Read
Note: See TracChangeset for help on using the changeset viewer.