Make WordPress Themes

Changeset 145388


Ignore:
Timestamp:
03/29/2021 04:18:13 PM (5 years ago)
Author:
themedropbox
Message:

New version of Fluida - 1.8.6.1

Location:
fluida/1.8.6.1
Files:
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fluida/1.8.6.1/functions.php

    r144713 r145388  
    1111// theme identification and options management - do NOT edit unless you know what you are doing
    1212define ( "_CRYOUT_THEME_NAME", "fluida" );
    13 define ( "_CRYOUT_THEME_VERSION", "1.8.6" );
     13define ( "_CRYOUT_THEME_VERSION", "1.8.6.1" );
    1414
    1515// prefixes for theme options and functions
  • fluida/1.8.6.1/includes/landing-page.php

    r144713 r145388  
    297297            'id'    => $what,
    298298        );
    299         $data['image'] = wp_get_attachment_image( get_post_thumbnail_id( $pageid ), 'full' );
     299        list( $data['image'], ) = wp_get_attachment_image_src( get_post_thumbnail_id( $pageid ), 'full' ); // fluida uses image as bg
    300300        fluida_lptext_output( $data );
    301301    }
  • fluida/1.8.6.1/readme.txt

    r144713 r145388  
    44Requires at least: 4.5
    55Tested up to: 5.7
    6 Stable tag: 1.8.6
    7 Requires PHP: 5.4
     6Stable tag: 1.8.6.1
     7Requires PHP: 5.6
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    8686
    8787== Changelog ==
     88
     89= 1.8.6.1 =
     90*Release date - 30.03.2021*
     91
     92* Added workaround for incorrect alignment on centered block butons with WordPress 5.7
     93* Fixed Team Members images being invisible since 1.8.6
     94* Fixed landing page text areas missing background images since 1.8.6
    8895
    8996= 1.8.6 =
  • fluida/1.8.6.1/resources/js/frontend.js

    r144713 r145388  
    408408/* Remove all off-canvas states */
    409409function cryoutRemoveFocus() {
    410     jQuery( '#access a, #site-title a').on('mouseup mousedown', function() {
     410    jQuery( '#access a, #site-title a' ).on('mouseup mousedown', function() {
    411411        jQuery( this ).blur();
    412412    });
  • fluida/1.8.6.1/style.css

    r144713 r145388  
    55Author: Cryout Creations
    66Author URI: http://www.cryoutcreations.eu
    7 Version: 1.8.6
     7Version: 1.8.6.1
     8Requires at least: 4.5
    89Tested up to: 5.7
    9 Requires PHP: 5.4
     10Requires PHP: 5.6
    1011License: GNU General Public License v3.0
    1112License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    623624}
    624625
     626/* workaround for buttons misalign in 5.7 */
     627.wp-block-button.aligncenter,
     628.wp-block-buttons.aligncenter,
     629.wp-block-calendar {
     630    text-align: center;
     631}
     632
    625633/*--------------------------------------------------------------
    626634    # LAYOUT
     
    58415849    border-radius: 20px !important;
    58425850    padding-bottom: 0;
     5851    height: 120px;
     5852    width: 120px;
    58435853}
    58445854
Note: See TracChangeset for help on using the changeset viewer.