Plugin Directory

Changeset 3069310


Ignore:
Timestamp:
04/12/2024 01:51:27 AM (23 months ago)
Author:
solwininfotech
Message:

Portfolio designer lite plugin version 1.2 update

Location:
portfolio-designer-lite/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • portfolio-designer-lite/trunk/css/style.css

    r3030614 r3069310  
    18711871}
    18721872.social-component a.twitter-share:hover {
    1873     background: none repeat scroll 0 0 #5EA9DD;
    1874     border-color: #5EA9DD;
     1873    background: none repeat scroll 0 0 #000;
     1874    border-color: #000;
    18751875    color: #fff;
    18761876}
  • portfolio-designer-lite/trunk/includes/css/admin_style.css

    r3001302 r3069310  
    19371937}
    19381938
     1939.pro-feature > div {
     1940    pointer-events: none;
     1941}
     1942
    19391943.toplevel_page_pdl_settings .ui-widget-overlay {
    19401944    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  • portfolio-designer-lite/trunk/includes/functions.php

    r3030614 r3069310  
    193193            }
    194194            if ( empty( $thumbnail ) ) {
    195                 $thumbnail = '<img src="' . PORT_LITE_PLUGIN_URL . 'images/no_image.jpg" alt="' . get_the_title() . '" />';
     195                $thumbnail = '<img src="' . PORT_LITE_PLUGIN_URL . 'images/no_image.jpg" alt="' . esc_attr( get_the_title() ) . '" />';
    196196            }
    197197        } else {
    198             $thumbnail = '<img src="' . PORT_LITE_PLUGIN_URL . 'images/no_image.jpg" alt="' . get_the_title() . '" />';
     198            $thumbnail = '<img src="' . PORT_LITE_PLUGIN_URL . 'images/no_image.jpg" alt="' . esc_attr( get_the_title() ) . '" />';
    199199        }
    200200        return $thumbnail;
  • portfolio-designer-lite/trunk/includes/portfolio_settings.php

    r3001302 r3069310  
    838838                                    <?php $portfolio_pagination_type = ( isset( $portfolio_setting['pagination_type'] ) && '' != $portfolio_setting['pagination_type'] ) ? $portfolio_setting['pagination_type'] : 'pagination'; ?>
    839839                                    <div class="select-cover">
    840                                         <select id="portfolio_pagination_type" name="">
     840                                        <select disable id="portfolio_pagination_type" name="">
    841841                                            <option value="pagination" selected="selected"><?php esc_html_e( 'Pagination', 'portfolio-designer-lite' ); ?></option>
    842842                                        </select>
  • portfolio-designer-lite/trunk/includes/shortcode.php

    r3009968 r3069310  
    251251                                            <div class="mask-inner">
    252252                                                <?php if ( 'overlay_image' == $content_position ) { ?>
    253                                                     <a href="<?php echo esc_url( get_the_permalink() ); ?>">
     253                                                    <?php if ( "" != get_the_title() ){ ?>
     254                                                        <a href="<?php echo esc_url( get_the_permalink() ); ?>">
    254255                                                        <h4><?php esc_html( the_title() ); ?></h4>
    255256                                                    </a>
    256                                                     <?php
     257                                                    <?php }
    257258                                                    $excerpt_lenth = isset( $data_setting['summary'] ) ? $data_setting['summary'] : 0;
    258259                                                    if ( ! in_array( $data_setting['image_effect'], $excerpt_null_array ) && $excerpt_lenth > 0 ) {
  • portfolio-designer-lite/trunk/languages/portfolio-designer-lite.pot

    r3030614 r3069310  
    33msgstr ""
    44"Project-Id-Version: Portfolio Designer Lite\n"
    5 "POT-Creation-Date: 2024-02-01 15:33+0530\n"
     5"POT-Creation-Date: 2024-04-04 09:58+0530\n"
    66"PO-Revision-Date: 2017-06-30 11:13+0530\n"
    77"Last-Translator: \n"
     
    856856msgstr ""
    857857
    858 #: includes/shortcode.php:348
     858#: includes/shortcode.php:349
    859859msgid "No post found."
    860860msgstr ""
  • portfolio-designer-lite/trunk/portfolio-designer-lite.php

    r3030614 r3069310  
    44 * Plugin URI: https://wordpress.org/plugins/portfolio-designer-lite/
    55 * Description: It allows you to create, manage and design your portfolio and showcase with few clicks.
    6  * Version: 1.1.9
     6 * Version: 1.2
    77 * Author: Solwin Infotech
    88 * Author URI: https://www.solwininfotech.com/
    99 * Requires at least: 5.4
    10  * Tested up to: 6.4.3
     10 * Tested up to: 6.5.2
    1111 *
    1212 * Text Domain: portfolio-designer-lite
     
    3333     * @var string $plugin_version Plugin Version.
    3434     */
    35     protected static $plugin_version = '1.1.9';
     35    protected static $plugin_version = '1.2';
    3636
    3737    /**
  • portfolio-designer-lite/trunk/readme.txt

    r3030614 r3069310  
    44Tags: portfolio, portfolio designer, portfolio template, responsive portfolio layout, wordpress portfolio plugin, portfolio gallery, portfolio plugin, masonry portfolio, portfolio slider
    55Requires at least: 5.4
    6 Tested up to: 6.4.3
     6Tested up to: 6.5.2
    77Requires PHP: 7.0
    8 Stable tag: 1.1.9
     8Stable tag: 1.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    142142== Changelog ==
    143143
     144= 1.2 =
     145Release date: April 11th, 2024
     146
     147* Updated: Make compatible with WordPress 6.5.2
     148* Updated: Make compatible with PHP version 8.3
     149* Fixed: Minor bug fix
     150
    144151= 1.1.9 =
    145152Release date: February 01st, 2024
Note: See TracChangeset for help on using the changeset viewer.