Skip to content

Commit

Permalink
tagging v2.7.3 - related posts section fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davy440 committed Oct 24, 2024
1 parent 64f35c1 commit adf3ce0
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 17 deletions.
2 changes: 1 addition & 1 deletion assets/js/min/custom.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/customize_controls.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/customizer.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/navigation.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/plugins-install.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/property-map.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/property.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/min/typography.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions assets/theme-styles/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/theme-styles/css/main.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions assets/theme-styles/scss/sections/_single.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ body.single {
width: auto;
}
}

.itre-col-content {
height: 100%;
margin: 0.5rem 1rem 1rem;
}
}
#author_box {
border: solid 1px #eeeeee;
Expand Down
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

if ( ! defined( 'ITRE_VERSION' ) ) {
// Replace the version number of the theme on each release.
define( 'ITRE_VERSION', '2.7.2' );
define( 'ITRE_VERSION', '2.7.3' );
}

if ( ! defined( 'ITRE_URL' ) ) {
Expand Down Expand Up @@ -246,4 +246,4 @@ function itre_content_width() {
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require ITRE_PATH . 'inc/jetpack.php';
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "indithemes",
"version": "2.4.6",
"version": "2.7.2",
"description": "Create a Real Estate website and showcase your business magnificently with our free WordPress Real Estate Theme IT Residence. This theme offers a many features to showcase your properties in style. Customers can filter properties as per your requirement. Also, you can categorise your properties as per locations and types. Our theme offers seamless Google Maps integration so that you can mark your property on the map and present it effectively. IT residence is also a powerful blog theme with multiple blog layouts. IT Residence is one of the best Real Estate WordPress Themes and you are sure to love it! You can check out the theme in action at demo.indithemes.com/it-residence",
"license": "GPL-2.0-or-later",
"keywords": [
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-com
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 5.6
Stable tag: 2.7.2
Stable tag: 2.7.3
License: GNU General Public License v2 or later
License URI: https://spdx.org/licenses/GPL-2.0-or-later.html

Expand Down Expand Up @@ -210,9 +210,12 @@ Optimized CSS
= 2.7.1 October 18, 2024 =
* Optimized code

= 2/7/2 October 18, 2024 =
= 2.7.2 October 18, 2024 =
* Error fix

= 2.7.3 October 24, 2024 =
* Related Posts section fix

== Credits ==

Image for theme screenshot, Credit pxHere
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://indithemes.com/product/it-residence
Author: IndiThemes
Author URI: https://indithemes.com
Description: Create a Real Estate website and showcase your business magnificently with our free WordPress Real Estate Theme IT Residence. This theme offers a many features to showcase your properties in style. Customers can filter properties as per your requirement. Also, you can categorise your properties as per locations and types. Our theme offers seamless Google Maps integration so that you can mark your property on the map and present it effectively. IT residence is also a powerful blog theme with multiple blog layouts. IT Residence is one of the best Real Estate WordPress Themes and you are sure to love it! You can check out the theme in action at demo.indithemes.com/it-residence
Version: 2.7.2
Version: 2.7.3
Tested up to: 6.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
Expand Down
4 changes: 2 additions & 2 deletions template-parts/layouts/content-related.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<div class="itre-col-thumb">
<?php
if ( has_post_thumbnail()) {
printf('<a href="%s">%s</a>', get_the_permalink(), get_the_post_thumbnail(get_the_ID(), 'itre_prop_thumb'));
printf('<a href="%s"><figure>%s</figure></a>', get_the_permalink(), get_the_post_thumbnail(get_the_ID(), 'itre_prop_thumb'));
} else {
printf('<a href="%s"><img src="%s" alt="%s" /></a>', get_the_permalink(), esc_url(ITRE_URL . 'assets/images/ph_thumb.png'), esc_attr( the_title_attribute(['echo' => false]) ) );
printf('<a href="%s"><figure><img src="%s" alt="%s" /></figure></a>', get_the_permalink(), esc_url(ITRE_URL . 'assets/images/ph_thumb.png'), esc_attr( the_title_attribute(['echo' => false]) ) );
}
?>
</div>
Expand Down

0 comments on commit adf3ce0

Please sign in to comment.