Plugin Directory

Changeset 3469135


Ignore:
Timestamp:
02/25/2026 07:49:45 AM (5 weeks ago)
Author:
softaculous
Message:

New version 1.3.6

Location:
siteseo/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • siteseo/trunk/assets/css/siteseo.css

    r3427194 r3469135  
    21992199}
    22002200}
     2201
     2202.siteseo-pro-tag{
     2203position:relative;
     2204display:inline-block;
     2205margin-left: 10px;
     2206padding: 3px;
     2207border-radius: 3px;
     2208background-color: gold;
     2209font-weight: 500;
     2210color: #212529de;
     2211font-size: 1.0rem;
     2212line-height: 1.1rem;
     2213}
     2214
     2215.siteseo-pro-tag::before{
     2216content: '';
     2217display: inline-block;
     2218position: absolute;
     2219background: rgba(255, 255, 255, 0.5);
     2220width: 10px;
     2221height: 100%;
     2222top: 0;
     2223left:0;
     2224filter:blur(3px);
     2225transform: skewX(-15deg);
     2226animation: siteseo-shine 2s ease-in-out infinite;
     2227}
     2228
     2229@keyframes siteseo-shine{
     2230    0% {
     2231        opacity: 0.5;
     2232        left: 60px;
     2233        transition-property: opacity, left;
     2234    },
     2235    100% {
     2236        opacity: 0.6;
     2237        left: 50px;
     2238        transition-property: opacity, left;
     2239    }
     2240}
  • siteseo/trunk/main/settings/titles.php

    r3387094 r3469135  
    328328        $option_404_title = !empty($options['titles_archives_404_title']) ? $options['titles_archives_404_title'] : '';
    329329        $option_404_desc = !empty($options['titles_archives_404_desc']) ? $options['titles_archives_404_desc'] : '';
    330    
     330        $author_base_url = !empty($options['author_base_url']) ? $options['author_base_url'] : 'author';
     331
    331332        $archives_fields = [
    332333            'author-archives' => 'Author archives',
     
    396397                            </label>
    397398                        </div>
    398                         <span class="line"><span>
     399
     400                        <div class="siteseo_wrap_label"><p style="font-weight: 500;">'.esc_html__('Author base', 'siteseo');
     401                        if(!defined('SITESEO_PRO_VERSION')){
     402                            echo'<span class="siteseo-pro-tag">Pro</span>';
     403                        }
     404
     405                        echo'</p></div>
     406                        <input type="text" name="siteseo_options[author_base]" value="' . esc_attr($author_base_url) . '" ' .(!defined('SITESEO_PRO_VERSION') ? 'disabled="disabled" style="cursor:not-allowed;"' : '').'>
     407                        <div class="siteseo_wrap_label"><p>'.esc_html__('Change the /author/ slug used in author archive URLs.', 'siteseo').'</p>
     408
    399409                    </div>
    400410   
     
    860870        }
    861871
     872        $options = apply_filters('siteseo_titles_save_settings', $options);
     873
    862874        update_option('siteseo_titles_option_name', $options);
    863875    }
  • siteseo/trunk/readme.txt

    r3427194 r3469135  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 1.3.5
     7Stable tag: 1.3.6
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    123123== Changelog ==
    124124
     125= 1.3.6 (February  25, 2026) =
     126
     127* [Pro-Feature] Introduced the SEO Alert feature.
     128* [Pro-Feature] Added support for custom Author base.
     129* [Pro-Feature] Introduced Podcast feature.
     130* [Bug Fix] Fixed an issue in the Local Business schema.
     131
    125132= 1.3.5 (December 25, 2025) =
    126133* [Pro-Feature] Added a Schema importer, user can now import schema from URL, HTML, or JSON.
  • siteseo/trunk/siteseo.php

    r3427194 r3469135  
    55Description: SiteSEO is an easy, fast and powerful SEO plugin for WordPress. Unlock your Website's potential and Maximize your online visibility with our SiteSEO!
    66Author: Softaculous
    7 Version: 1.3.5
     7Version: 1.3.6
    88Requires at least: 5.0
    99Author URI: https://siteseo.io/
     
    2525}
    2626
    27 define('SITESEO_VERSION', '1.3.5');
     27define('SITESEO_VERSION', '1.3.6');
    2828define('SITESEO_FILE', __FILE__);
    2929define('SITESEO_DOCS', 'https://siteseo.io/docs/');
Note: See TracChangeset for help on using the changeset viewer.