Plugin Directory

Changeset 1769756


Ignore:
Timestamp:
11/17/2017 08:46:45 PM (8 years ago)
Author:
Tsjuder
Message:

Support for Wordpress 4.9 & Fix bugs in bootstrap templates

Location:
tea-page-content/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • tea-page-content/trunk/config.php

    r1643034 r1769756  
    158158        ),
    159159        'versions' => array(
    160             'plugin' => '1.3.0',
     160            'plugin' => '1.3.1',
    161161            'scripts' => '1.2.3',
    162162            'styles' => '1.2.3',
  • tea-page-content/trunk/readme.ru_RU.txt

    r1643034 r1769756  
    33Tags: plugin, widget, shortcode, posts, post, pages, page, content, template, templates
    44Requires at least: 4.0, PHP 5.6
    5 Tested up to: 4.7
    6 Stable tag: 1.3.0
     5Tested up to: 4.9
     6Stable tag: 1.3.1
    77Author URI: https://github.com/Tsjuder
    88Plugin URI: http://tsjuder.github.io/tea-page-content/
  • tea-page-content/trunk/readme.txt

    r1643034 r1769756  
    33Tags: plugin, widget, shortcode, posts, post, pages, page, content, template, templates
    44Requires at least: WP 4.0, PHP 5.6
    5 Tested up to: 4.7
    6 Stable tag: 1.3.0
     5Tested up to: 4.9
     6Stable tag: 1.3.1
    77Author URI: https://github.com/Tsjuder
    88Plugin URI: http://tsjuder.github.io/tea-page-content/
  • tea-page-content/trunk/tea-page-content.php

    r1643034 r1769756  
    44Plugin URI: http://tsjuder.github.io/tea-page-content
    55Description: This plugin allows create blocks with content of any post, and customize look of blocks via templates. Widget, shortcode, all post types is supported.
    6 Version: 1.3.0
     6Version: 1.3.1
    77Text Domain: tea-page-content
    88Domain Path: /languages/
  • tea-page-content/trunk/templates/client/layouts/bootstrap-3.php

    r1643034 r1769756  
    2727);
    2828
    29 $itemsPerRowBase = $template_variables['items-per-row-based-on'];
     29$itemsPerRowBase = isset($template_variables['items-per-row-based-on']) ? $template_variables['items-per-row-based-on'] : 'column-count-large';
    3030$itemsPerRow = $template_variables[$itemsPerRowBase];
    3131$itemsCount = count($entries);
  • tea-page-content/trunk/templates/client/layouts/bootstrap-4.php

    r1643034 r1769756  
    2929);
    3030
    31 $itemsPerRowBase = $template_variables['items-per-row-based-on'];
     31$itemsPerRowBase = isset($template_variables['items-per-row-based-on']) ? $template_variables['items-per-row-based-on'] : 'column-count-large';
    3232$itemsPerRow = $template_variables[$itemsPerRowBase];
    3333$itemsCount = count($entries);
Note: See TracChangeset for help on using the changeset viewer.