Changeset 145388
- Timestamp:
- 03/29/2021 04:18:13 PM (5 years ago)
- Location:
- fluida/1.8.6.1
- Files:
-
- 5 edited
- 1 copied
-
. (copied) (copied from fluida/1.8.6)
-
functions.php (modified) (1 diff)
-
includes/landing-page.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
resources/js/frontend.js (modified) (1 diff)
-
style.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluida/1.8.6.1/functions.php
r144713 r145388 11 11 // theme identification and options management - do NOT edit unless you know what you are doing 12 12 define ( "_CRYOUT_THEME_NAME", "fluida" ); 13 define ( "_CRYOUT_THEME_VERSION", "1.8.6 " );13 define ( "_CRYOUT_THEME_VERSION", "1.8.6.1" ); 14 14 15 15 // prefixes for theme options and functions -
fluida/1.8.6.1/includes/landing-page.php
r144713 r145388 297 297 'id' => $what, 298 298 ); 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 300 300 fluida_lptext_output( $data ); 301 301 } -
fluida/1.8.6.1/readme.txt
r144713 r145388 4 4 Requires at least: 4.5 5 5 Tested up to: 5.7 6 Stable tag: 1.8.6 7 Requires PHP: 5. 46 Stable tag: 1.8.6.1 7 Requires PHP: 5.6 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 86 86 87 87 == 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 88 95 89 96 = 1.8.6 = -
fluida/1.8.6.1/resources/js/frontend.js
r144713 r145388 408 408 /* Remove all off-canvas states */ 409 409 function cryoutRemoveFocus() { 410 jQuery( '#access a, #site-title a' ).on('mouseup mousedown', function() {410 jQuery( '#access a, #site-title a' ).on('mouseup mousedown', function() { 411 411 jQuery( this ).blur(); 412 412 }); -
fluida/1.8.6.1/style.css
r144713 r145388 5 5 Author: Cryout Creations 6 6 Author URI: http://www.cryoutcreations.eu 7 Version: 1.8.6 7 Version: 1.8.6.1 8 Requires at least: 4.5 8 9 Tested up to: 5.7 9 Requires PHP: 5. 410 Requires PHP: 5.6 10 11 License: GNU General Public License v3.0 11 12 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 623 624 } 624 625 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 625 633 /*-------------------------------------------------------------- 626 634 # LAYOUT … … 5841 5849 border-radius: 20px !important; 5842 5850 padding-bottom: 0; 5851 height: 120px; 5852 width: 120px; 5843 5853 } 5844 5854
Note: See TracChangeset
for help on using the changeset viewer.