Skip to content

Commit

Permalink
Update 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
webmandesign committed May 13, 2015
1 parent b912bb9 commit b47e3f1
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 7 deletions.
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Modern Changelog

## 1.4.4

* **Fix**: Search field text color on error 404 and nothing found page
* **Fix**: `wmhook_entry_image_link` is not applied correctly on page content

#### Files changed:

style.css
content-page.php


## 1.4.3

* **Update**: Using new prefixed image sizes
Expand Down
16 changes: 12 additions & 4 deletions content-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright 2015 WebMan - Oliver Juhas
*
* @since 1.0
* @version 1.3
* @version 1.4.4
*/


Expand Down Expand Up @@ -36,11 +36,19 @@

<figure class="post-thumbnail"<?php echo wm_schema_org( 'image' ); ?>>

<a href="<?php echo esc_url( $image_link[0] ); ?>" title="<?php the_title_attribute(); ?>">
<?php

<?php the_post_thumbnail( apply_filters( 'wmhook_entry_featured_image_size', 'thumbnail' ) ); ?>
if ( ! empty( $image_link ) ) {
echo '<a href="' . esc_url( $image_link[0] ) . '" title="' . the_title_attribute( 'echo=0' ) . '">';
}

</a>
the_post_thumbnail( apply_filters( 'wmhook_entry_featured_image_size', 'thumbnail' ) );

if ( ! empty( $image_link ) ) {
echo '</a>';
}

?>

</figure>

Expand Down
2 changes: 1 addition & 1 deletion inc/lib/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright 2015 WebMan - Oliver Juhas
*
* @since 1.0
* @version 1.2
* @version 1.4.2
*
* CONTENT:
* - 10) Actions and filters
Expand Down
2 changes: 1 addition & 1 deletion inc/lib/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright 2015 WebMan - Oliver Juhas
*
* @since 1.0
* @version 1.4
* @version 1.4.2
*
* CONTENT:
* - 1) Required files
Expand Down
11 changes: 10 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Author: WebMan
* Author URI: http://www.webmandesign.eu/
* Description: <strong>Modern</strong> is responsive, retina-ready blog and portfolio WordPress theme. It's perfect for personal and small business portfolios. Supports Jetpack plugin, Schema.org markup, Theme Hook Alliance action hooks, translation-ready code, header slideshow and other cool features. The theme is compatible with Chrome, Safari, Opera, Firefox, Internet Explorer 9+ browsers. Thank you for using one of WebMan's themes (more cool WordPress themes can be found at www.webmandesign.eu). Theme demo at http://themedemos.webmandesign.eu/modern-wordpress-theme/
* Version: 1.4.3
* Version: 1.4.4
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wm_domain
Expand Down Expand Up @@ -327,6 +327,15 @@



/**
* Search form color
*/

.error-404 .form-search,
.not-found .form-search { color: #1a1c1e; }



/**
* Comments form
*/
Expand Down

0 comments on commit b47e3f1

Please sign in to comment.