Plugin Directory

Changeset 3126689


Ignore:
Timestamp:
07/28/2024 06:06:17 AM (20 months ago)
Author:
dynamicweblab
Message:

versin 1.0.4

Location:
dynamic-post-grid-elementor-addon/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • dynamic-post-grid-elementor-addon/trunk/assets/css/main.css

    r3115562 r3126689  
    11101110
    11111111/*====================================================
     1112Grid layout 9
     1113==================================================*/
     1114.depg-grid-layout-9 .post-grid-inner-style-9 .post-grid-title-meta-wraper{
     1115  transition: 2s;
     1116}
     1117.depg-grid-layout-9 .post-grid-inner-style-9{
     1118  width: 100%;
     1119  height: auto;
     1120
     1121}
     1122.depg-grid-layout-9 article .post-grid-inner-style-9 .post-grid-thumbnail a img{
     1123  width: 100%;
     1124  height:400px;
     1125  transition:2s;
     1126}
     1127.depg-grid-layout-9 article:hover .post-grid-inner-style-9{
     1128  position: relative;
     1129}
     1130
     1131.depg-grid-layout-9 article:hover .post-grid-title-meta-wraper {
     1132  position: absolute;
     1133  height: 100%;
     1134  /* height: auto; */
     1135  width: 100%;
     1136  bottom: 0px;
     1137  left: 0px;
     1138  padding: 10px;
     1139  background: #0c0909d4;
     1140}
     1141
     1142.depg-grid-layout-9 article:hover .post-grid-title-meta-wraper .post-grid-meta span,
     1143.depg-grid-layout-9 article:hover .post-grid-title-meta-wraper .dwl-post-title a{
     1144  color: #FFFFFF;
     1145  height: 100%;
     1146}
     1147
     1148.depg-grid-layout-9 article:hover .post-grid-inner-style-9 .post-grid-thumbnail {
     1149  margin-bottom: 0;
     1150}
     1151.depg-grid-layout-9 article:hover .post-grid-inner-style-9 .post-grid-thumbnail a{
     1152
     1153  display: block;
     1154}
     1155
     1156.depg-grid-layout-9 article:hover .post-grid-inner-style-9 .post-grid-thumbnail a img {
     1157  height: 190px;
     1158}
     1159
     1160.depg-grid-layout-9 .post-grid-text-wrap{
     1161  display: none;
     1162}
     1163.depg-grid-layout-9 article:hover .post-grid-text-wrap{
     1164  padding-top: 20px;
     1165  font-weight: 300;
     1166  display: block;
     1167}
     1168.depg-grid-layout-9 .post-grid-inner-style-9 .dwl-post-title{
     1169  margin-top: 22px;
     1170  margin-bottom: 22px;
     1171}
     1172.depg-grid-layout-9 .post-grid-inner-style-9 .post-grid-meta span{
     1173  font-weight: 300;
     1174}
     1175.depg-grid-layout-9 .post-grid-inner-style-9 .dwl-post-title a {
     1176  /* font-size: 20px; */
     1177  font-weight: 600;
     1178  /* line-height: 25px; */
     1179}
     1180
     1181
     1182
     1183
     1184/*====================================================
    11121185list layout 4
    11131186==================================================*/
  • dynamic-post-grid-elementor-addon/trunk/dynamic-post-grid.php

    r3115562 r3126689  
    44 * Requires Plugins: elementor
    55 * Description: Elementor page builder addon to display posts in a grid. Useful for generating post grid from your blog posts with multiple options.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Author: DynamicWebLab
    88 * Author URI: https://dynamicweblab.com/
     
    1414if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    1515
    16 define( 'DPGEA_VERSION', '1.0.3' );
     16define( 'DPGEA_VERSION', '1.0.4' );
    1717define( 'DPGEA_SLUG', 'dynamic-post-grid' );
    1818define( 'DPGEA_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
  • dynamic-post-grid-elementor-addon/trunk/readme.txt

    r3115562 r3126689  
    44Requires at least: 5.0
    55Tested up to: 6.5.3
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.4
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    7676== Changelog ==
    7777
     78= 1.0.4 =
     79* [Feature] Added 2 new layout
     80* Design fix
     81
    7882= 1.0.3 =
    7983* [Feature] Added 2 new grid layout
  • dynamic-post-grid-elementor-addon/trunk/widgets/post-grid.php

    r3115562 r3126689  
    183183                        'title' => esc_html__('Layout 8', 'dynamic-post-grid'),
    184184                        'url' => DPGEA_URL .'/assets/icons/grid-8.svg',
     185                    ],
     186                    '9' => [
     187                        'title' => esc_html__('Layout 9', 'dynamic-post-grid'),
     188                        'url' => DPGEA_URL .'/assets/icons/grid-9.svg',
    185189                    ],
    186190                ],
     
    18441848            data-tablet-column = "<?php echo esc_attr($columns_tablet); ?>"
    18451849            data-mobile-column = "<?php echo esc_attr($columns_mobile); ?>"
    1846             <?php
    1847            
    1848             if('slider' == $layout_type): ?>
     1850            <?php if('slider' == $layout_type): ?>
    18491851                data-arrows = "<?php echo esc_attr($slider_arrows); ?>"
    18501852                data-dots = "<?php echo esc_attr($slider_dots); ?>" 
    18511853                data-autoplay = "<?php echo esc_attr($slider_autoplay); ?>"
    18521854                data-speed = "<?php echo esc_attr($slider_speed); ?>"
    1853             <?php
    1854            
    1855             endif;
     1855            <?php endif; ?>
     1856            >
     1857                <?php
    18561858
    18571859                $post_type = ( ! empty( $settings['post_type'] ) ?  $settings['post_type'] : 'post' );
     
    19631965
    19641966                if ( $depg_get_all_posts->have_posts() ) :
     1967                    // $layout_file = __DIR__ . "/layouts/{$layout_type}/{$layout_type}-layout-{$grid_style}.php";
    19651968               
     1969                    // if( file_exists( $layout_file ) ){
     1970                    //  include_once( $layout_file );
     1971                    // }
    19661972                   
     1973                   
     1974
    19671975                    if( 'grid'  == $layout_type ){
    1968                         include_once( __DIR__ . "/layouts/grid/grid-layout-{$grid_style}.php");
     1976                        include_once( __DIR__ . "/layouts/grid/grid-layout-{$grid_style}.php" );
    19691977                    }elseif( 'list' ==  $layout_type ){
    19701978                        include_once( __DIR__ . "/layouts/list/list-layout-{$list_style}.php" );
     
    19741982                        include_once( __DIR__ . "/layouts/filter/filter-layout-{$settings['filter_style']}.php" );
    19751983                    }
    1976 
     1984                   
    19771985                endif;
    19781986               
    19791987                ?>
    1980                 </div>
     1988            </div>
    19811989            <?php
    19821990                if ( isset( $settings['pagination_type']) && 'none' !== $settings['pagination_type'] && 'slider' != $settings['layout_type'] ) {
     
    19841992                }
    19851993            ?>
    1986         </div><!-- .depg-main -->
     1994        </div>
    19871995        <?php
    19881996
Note: See TracChangeset for help on using the changeset viewer.