Plugin Directory

Changeset 3465205


Ignore:
Timestamp:
02/19/2026 03:55:59 PM (5 weeks ago)
Author:
conveythis
Message:

269.5 Instructions for Exclusion pages added

Location:
conveythis-translate/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • conveythis-translate/trunk/app/class/ConveyThis.php

    r3460968 r3465205  
    412412                if ($field === 'style_change_language' || $field === 'style_change_flag') {
    413413                    if (is_array($value)) {
    414                         $value = array_values($value);
     414                        $value = array_values(array_filter($value, function ($v) {
     415                            return $v !== '' && $v !== null;
     416                        }));
    415417                    }
    416418                }
  • conveythis-translate/trunk/app/views/page/block-pages.php

    r3460968 r3465205  
    22
    33    <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
    415    <div class="form-group paid-function">
    516        <label>Add rule that you want to exclude from translations.</label>
  • conveythis-translate/trunk/app/views/page/widget-style.php

    r3460968 r3465205  
    7171                    <div class="col-md-6">
    7272                        <div class="ui fluid search selection dropdown change_language">
     73                            <input type="hidden" name="style_change_language[]" value="">
    7374                            <i class="dropdown icon"></i>
    7475                            <div class="default text"><?php echo  esc_html(__( 'Select language', 'conveythis-translate' )); ?></div>
     
    8889                    <div class="col-md-6">
    8990                        <div class="ui fluid search selection dropdown change_flag">
     91                            <input type="hidden" name="style_change_flag[]" value="">
    9092                            <i class="dropdown icon"></i>
    9193                            <div class="default text"><?php echo  esc_html(__( 'Select Flag', 'conveythis-translate' )); ?></div>
  • conveythis-translate/trunk/changelog.txt

    r3460968 r3465205  
    11== Changelog ==
     2= 269.5 =
     3* Instructions for Exclusion pages added
     4
    25= 269.4 =
    36* Updated Glossary, Import/Export, Aggregation and Pagination features.
  • conveythis-translate/trunk/config.php

    r3460978 r3465205  
    6161
    6262define('CONVEYTHIS_LOADER', true);
    63 define('CONVEYTHIS_PLUGIN_VERSION', '269.4');
     63define('CONVEYTHIS_PLUGIN_VERSION', '269.5');
    6464define('CONVEY_PLUGIN_ROOT_PATH', plugin_dir_path( __FILE__ ));
    6565define('CONVEY_PLUGIN_PATH', plugin_dir_url(__FILE__));
  • conveythis-translate/trunk/index.php

    r3460968 r3465205  
    44Plugin URI: https://www.conveythis.com/?utm_source=widget&utm_medium=wordpress
    55Description: 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.4
     6Version: 269.5
    77
    88Author: ConveyThis Translate Team
  • conveythis-translate/trunk/readme.txt

    r3460968 r3465205  
    66Tested up to: 6.9.1
    77
    8 Stable tag: 269.4
     8Stable tag: 269.5
    99
    1010License: GPLv2
     
    218218
    219219== Changelog ==
     220= 269.5 =
     221* Instructions for Exclusion pages added
     222
    220223= 269.4 =
    221224* Updated Glossary, Import/Export and Aggregation, Pagination features.
Note: See TracChangeset for help on using the changeset viewer.