Skip to content

Commit

Permalink
1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
webmandesign committed May 15, 2019
1 parent eca2d32 commit c4245c2
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 21 deletions.
4 changes: 2 additions & 2 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @copyright WebMan Design, Oliver Juhas
*
* @since 1.7.0
* @version 1.8.0
* @version 1.8.2
*
* CONTENT:
*
Expand Down Expand Up @@ -35,7 +35,7 @@
* 0. CSS variables
*/

html {
:root {

--color-accent: #e53739;
--color-accent-text: #ffffff;
Expand Down
8 changes: 8 additions & 0 deletions assets/images/svg/social-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Receptar Changelog

## 1.8.2

* **Add**: Adding WhatsApp and Google social icon
* **Update**: Implementing WordPress 5.2 code updates
* **Fix**: CSS variables issue in non-compatible web browsers

### Files changed:

changelog.md
header.php
readme.txt
style.css
assets/css/main.css
assets/images/svg/social-icons.svg
inc/setup.php


## 1.8.1

* **Fix**: Homepage slideshow stopped working after 1.8.0 update
Expand Down
8 changes: 7 additions & 1 deletion header.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.0
* @version 1.8.0
* @version 1.8.2
*/


Expand Down Expand Up @@ -37,6 +37,12 @@

<?php

if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
} else {
do_action( 'wp_body_open' );
}

wmhook_body_top();

if ( ! apply_filters( 'wmhook_receptar_disable_header', false ) ) {
Expand Down
16 changes: 6 additions & 10 deletions inc/setup.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.0
* @version 1.8.0
* @version 1.8.2
*
* CONTENT:
* - 10) Actions and filters
Expand Down Expand Up @@ -755,7 +755,7 @@ function receptar_customizer_preview_enqueue_assets() {
* HTML Body classes
*
* @since 1.0
* @version 1.5.0
* @version 1.8.2
*
* @param array $classes
*/
Expand All @@ -779,12 +779,6 @@ function receptar_body_classes( $classes ) {
$body_classes['is-not-singular'] = ++$i;
}

// Privacy Policy page

if ( (int) get_option( 'wp_page_for_privacy_policy' ) === get_the_ID() ) {
$body_classes['page-privacy-policy'] = ++$i;
}

//Has featured image?
if ( is_singular() && has_post_thumbnail() ) {
$body_classes['has-post-thumbnail'] = ++$i;
Expand Down Expand Up @@ -1105,7 +1099,7 @@ function receptar_menu_social() {
* Social links supported icons
*
* @since 1.6.0
* @version 1.6.1
* @version 1.8.2
*/
function receptar_social_links_icons() {

Expand All @@ -1123,7 +1117,8 @@ function receptar_social_links_icons() {
'facebook.com' => 'facebook',
'flickr.com' => 'flickr',
'foursquare.com' => 'foursquare',
'plus.google.com' => 'google-plus',
'plus.google.' => 'google-plus',
'google.' => 'google',
'github.com' => 'github',
'instagram.com' => 'instagram',
'linkedin.com' => 'linkedin',
Expand Down Expand Up @@ -1153,6 +1148,7 @@ function receptar_social_links_icons() {
'vimeo.com' => 'vimeo',
'vine.co' => 'vine',
'vk.com' => 'vk',
'wa.me' => 'whatsapp',
'wordpress.org' => 'wordpress',
'wordpress.com' => 'wordpress',
'xing.com' => 'xing',
Expand Down
11 changes: 4 additions & 7 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: webmandesign
Tags: two-columns, four-columns, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, grid-layout, blog, food-and-drink, photography
Requires at least: 4.7.0
Tested up to: 5.1.1
Stable tag: 1.8.1
Tested up to: 5.2
Stable tag: 1.8.2
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -37,11 +37,8 @@ Please see `changelog.md` file.

== Upgrade Notice ==

= 1.8.1 =
Fixing homepage slideshow issue introduced in previous 1.8.0 theme update.

= 1.8.0 =
Adding welcome notice, updating typography info, updating excerpts and continue reading link display, improving CSS variables, updating scripts and localization.
= 1.8.2 =
Implementing WordPress 5.2 code updates, adding WhatsApp and Google social icon, fixing CSS variables issue in non-compatible web browsers.


== Resources ==
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Theme Name: Receptar
Theme URI: https://www.webmandesign.eu/portfolio/receptar-wordpress-theme/
Author: WebMan Design
Author URI: https://www.webmandesign.eu/
Version: 1.8.1
Version: 1.8.2
Text Domain: receptar
Domain Path: /languages
License: GNU General Public License v3
Expand Down

0 comments on commit c4245c2

Please sign in to comment.