Changeset 1920506
- Timestamp:
- 08/06/2018 04:50:21 PM (8 years ago)
- Location:
- trendmd/trunk
- Files:
-
- 5 edited
-
admin/partials/trendmd-admin-setting.php (modified) (3 diffs)
-
includes/class-trendmd.php (modified) (1 diff)
-
public/class-trendmd-public.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
trendmd.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trendmd/trunk/admin/partials/trendmd-admin-setting.php
r1900412 r1920506 35 35 36 36 $journal_id_label = ''; 37 if( !Trendmd_Admin::is_remote_fopen() && !Trendmd_Admin::is_set_journal_id()) {37 if(isset($_GET['page']) && $_GET['page'] == 'trendmd' && (!Trendmd_Admin::is_set_journal_id() && !Trendmd_Admin::is_remote_fopen())) { 38 38 $journal_id_label = 'TrendMD website ID (digits only):'; 39 39 } … … 47 47 48 48 // add your setting's fields 49 if( !Trendmd_Admin::is_remote_fopen() && Trendmd_Admin::is_set_journal_id()) {49 if(isset($_GET['page']) && $_GET['page'] == 'trendmd' && (Trendmd_Admin::is_set_journal_id() && !Trendmd_Admin::is_remote_fopen())) { 50 50 add_settings_field( 51 51 'trendmd-journal_show_id', … … 70 70 ) 71 71 ); 72 if( Trendmd_Admin::is_set_journal_id() || Trendmd_Admin::is_remote_fopen()) {72 if(isset($_GET['page']) && $_GET['page'] == 'trendmd' && (Trendmd_Admin::is_set_journal_id() || Trendmd_Admin::is_remote_fopen())) { 73 73 add_settings_field( 74 74 'trendmd-custom_widget_location', -
trendmd/trunk/includes/class-trendmd.php
r1900412 r1920506 73 73 74 74 $this->plugin_name = 'trendmd'; 75 $this->version = '2.4. 5';75 $this->version = '2.4.6'; 76 76 77 77 $this->load_dependencies(); -
trendmd/trunk/public/class-trendmd-public.php
r1900412 r1920506 65 65 66 66 public static function trendmd_add_html($content) { 67 $content .= '<!--TrendMD v2.4. 5-->';67 $content .= '<!--TrendMD v2.4.6-->'; 68 68 if (Trendmd_Admin::show_widget() && !Trendmd_Admin::custom_widget_location()) { 69 69 $content .= "<div id='trendmd-suggestions'></div>"; -
trendmd/trunk/readme.txt
r1900412 r1920506 3 3 Tags: TrendMD 4 4 Tested up to: 4.9.6 5 Stable tag: 2.4. 55 Stable tag: 2.4.6 6 6 Requires at least: 3.0 7 7 License: GPLv2 or later … … 142 142 143 143 == Changelog == 144 = 2.4.6 = 145 * Improved performance by eliminating redundant HTTP API calls 146 144 147 = 2.4.5 = 145 148 … … 162 165 = 2.4 = 163 166 164 * W didget will load only on posts167 * Widget will load only on posts 165 168 166 169 = 2.3 = -
trendmd/trunk/trendmd.php
r1900412 r1920506 11 11 * Plugin URI: http://www.trendmd.com 12 12 * Description: This plugin will add the TrendMD recommendations widget to your WordPress website. The TrendMD recommendations widget is used by scholarly publishers to increase their readership and revenue. 13 * Version: 2.4. 513 * Version: 2.4.6 14 14 * Author: TrendMD Team 15 15 * Author URI: http://www.trendmd.com
Note: See TracChangeset
for help on using the changeset viewer.