Changeset 3465205
- Timestamp:
- 02/19/2026 03:55:59 PM (5 weeks ago)
- Location:
- conveythis-translate/trunk
- Files:
-
- 7 edited
-
app/class/ConveyThis.php (modified) (1 diff)
-
app/views/page/block-pages.php (modified) (1 diff)
-
app/views/page/widget-style.php (modified) (2 diffs)
-
changelog.txt (modified) (1 diff)
-
config.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
conveythis-translate/trunk/app/class/ConveyThis.php
r3460968 r3465205 412 412 if ($field === 'style_change_language' || $field === 'style_change_flag') { 413 413 if (is_array($value)) { 414 $value = array_values($value); 414 $value = array_values(array_filter($value, function ($v) { 415 return $v !== '' && $v !== null; 416 })); 415 417 } 416 418 } -
conveythis-translate/trunk/app/views/page/block-pages.php
r3460968 r3465205 2 2 3 3 <div class="title">Excluded pages</div> 4 5 <div class="glossary-description"> 6 <p>Here you can exclude pages from being translated. Please use the following rules:</p> 7 <p><strong>Start</strong> - Excludes any page whose URL begins with the value you enter. For example, entering <i>/blog</i> would exclude <i>/blog/hello-world</i>, <i>/blog/about</i>, and any other page under <i>/blog</i>.</p> 8 <p><strong>End</strong> - Excludes any page whose URL ends with the value you enter. For example, entering <i>world</i> would exclude <i>/blog/hello-world</i>.</p> 9 <p><strong>Contain</strong> - Excludes any page whose URL contains the value you enter anywhere in it. For example, entering <i>hello</i> would exclude <i>/blog/hello-world</i>.</p> 10 <p><strong>Equal</strong> - Excludes only the one exact page that matches the value you enter. For example, entering <i>/blog/hello-world</i> would exclude that page only.</p> 11 <p><strong>Important:</strong> Always enter a relative URL, meaning leave out the domain. Instead of <i>https://example.com/blog</i>, just enter <i>/blog</i>.</p> 12 </div> 13 14 4 15 <div class="form-group paid-function"> 5 16 <label>Add rule that you want to exclude from translations.</label> -
conveythis-translate/trunk/app/views/page/widget-style.php
r3460968 r3465205 71 71 <div class="col-md-6"> 72 72 <div class="ui fluid search selection dropdown change_language"> 73 <input type="hidden" name="style_change_language[]" value=""> 73 74 <i class="dropdown icon"></i> 74 75 <div class="default text"><?php echo esc_html(__( 'Select language', 'conveythis-translate' )); ?></div> … … 88 89 <div class="col-md-6"> 89 90 <div class="ui fluid search selection dropdown change_flag"> 91 <input type="hidden" name="style_change_flag[]" value=""> 90 92 <i class="dropdown icon"></i> 91 93 <div class="default text"><?php echo esc_html(__( 'Select Flag', 'conveythis-translate' )); ?></div> -
conveythis-translate/trunk/changelog.txt
r3460968 r3465205 1 1 == Changelog == 2 = 269.5 = 3 * Instructions for Exclusion pages added 4 2 5 = 269.4 = 3 6 * Updated Glossary, Import/Export, Aggregation and Pagination features. -
conveythis-translate/trunk/config.php
r3460978 r3465205 61 61 62 62 define('CONVEYTHIS_LOADER', true); 63 define('CONVEYTHIS_PLUGIN_VERSION', '269. 4');63 define('CONVEYTHIS_PLUGIN_VERSION', '269.5'); 64 64 define('CONVEY_PLUGIN_ROOT_PATH', plugin_dir_path( __FILE__ )); 65 65 define('CONVEY_PLUGIN_PATH', plugin_dir_url(__FILE__)); -
conveythis-translate/trunk/index.php
r3460968 r3465205 4 4 Plugin URI: https://www.conveythis.com/?utm_source=widget&utm_medium=wordpress 5 5 Description: Translate your WordPress site into over 100 languages using professional and instant machine translation technology. ConveyThis will help provide you with an SEO-friendy, multilingual website in minutes with no coding required. 6 Version: 269. 46 Version: 269.5 7 7 8 8 Author: ConveyThis Translate Team -
conveythis-translate/trunk/readme.txt
r3460968 r3465205 6 6 Tested up to: 6.9.1 7 7 8 Stable tag: 269. 48 Stable tag: 269.5 9 9 10 10 License: GPLv2 … … 218 218 219 219 == Changelog == 220 = 269.5 = 221 * Instructions for Exclusion pages added 222 220 223 = 269.4 = 221 224 * Updated Glossary, Import/Export and Aggregation, Pagination features.
Note: See TracChangeset
for help on using the changeset viewer.