Commit fca4abc9 authored by Simonas's avatar Simonas

Merge branch 'release-1.11.0'

parents 90a864d1 b744b2ee
......@@ -20,9 +20,9 @@
## Production
- build CSS & JS assets - `C:\web\dev.biuro\ npm run build`
- build new image `docker build -t biuro/web:1.10.0 .` (update version number)
- build new image `docker build -t biuro/web:1.11.0 .` (update version number)
- login to biuro docker account `docker login --username=biuro --password=9Ndtjd2vKsLvGuFOeFq1KdJs`
- push image to docker repository - `docker push biuro/web:1.10.0`
- push image to docker repository - `docker push biuro/web:1.11.0`
## Production
- update biuro/web image version in .env file (staging or www)
......
{
"name": "biuro",
"version": "1.10.0",
"version": "1.11.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
......
{
"name": "biuro",
"version": "1.10.0",
"version": "1.11.0",
"description": "Biuro WP theme",
"scripts": {
"dev": "gulp --require @babel/register --gulpfile tasks",
......
......@@ -181,14 +181,16 @@ class PLL_Admin extends PLL_Admin_Base {
*
* @since 2.6
*
* @param bool $is_block_editor Whether to use the block editor or not
* @param bool $is_block_editor Whether to use the block editor or not.
* @return bool
*/
public function _maybe_load_sync_post( $is_block_editor ) {
if ( class_exists( 'PLL_Sync_Post_REST' ) && pll_use_block_editor_plugin() && $is_block_editor ) {
$this->sync_post = new PLL_Sync_Post_REST( $this );
} elseif ( class_exists( 'PLL_Sync_Post' ) ) {
$this->sync_post = new PLL_Sync_Post( $this );
if ( ! isset( $this->sync_post ) ) { // Make sure to instantiate the class only once, as the function may be called from a filter.
if ( class_exists( 'PLL_Sync_Post_REST' ) && pll_use_block_editor_plugin() && $is_block_editor ) {
$this->sync_post = new PLL_Sync_Post_REST( $this );
} elseif ( class_exists( 'PLL_Sync_Post' ) ) {
$this->sync_post = new PLL_Sync_Post( $this );
}
}
return $is_block_editor;
......
......@@ -145,6 +145,15 @@ function pll_get_requested_url() {
return set_url_scheme( esc_url_raw( wp_unslash( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) );
}
/*
* In WP CLI context, few developers define superglobals in wp-config.php
* as proposed in https://make.wordpress.org/cli/handbook/common-issues/#php-notice-undefined-index-on-_server-superglobal
* So let's return the unfiltered home url to avoid a bunch of notices.
*/
if ( defined( 'WP_CLI' ) && WP_CLI ) {
return get_option( 'home' );
}
if ( WP_DEBUG ) {
// phpcs:ignore WordPress.PHP.DevelopmentFunctions
trigger_error( '$_SERVER[\'HTTP_HOST\'] or $_SERVER[\'REQUEST_URI\'] are required but not set.' );
......
......@@ -133,8 +133,7 @@ class PLL_Plugins_Compat {
*/
public function after_setup_theme() {
// Advanced Custom Fields Pro
// The function acf_get_value() is not defined in ACF 4
if ( class_exists( 'acf' ) && function_exists( 'acf_get_value' ) && class_exists( 'PLL_ACF' ) ) {
if ( defined( 'ACF_VERSION' ) && version_compare( ACF_VERSION, '5.7.11', '>=' ) && class_exists( 'PLL_ACF' ) ) {
add_action( 'init', array( $this->acf = new PLL_ACF(), 'init' ) );
}
}
......
......@@ -3,7 +3,7 @@
/**
Plugin Name: Polylang
Plugin URI: https://polylang.pro
Version: 2.6.4
Version: 2.6.5
Author: WP SYNTEX
Author uri: https://polylang.pro
Description: Adds multilingual capability to WordPress
......@@ -51,7 +51,7 @@ if ( defined( 'POLYLANG_BASENAME' ) ) {
}
} else {
// Go on loading the plugin
define( 'POLYLANG_VERSION', '2.6.4' );
define( 'POLYLANG_VERSION', '2.6.5' );
define( 'PLL_MIN_WP_VERSION', '4.7' );
define( 'POLYLANG_FILE', __FILE__ ); // this file
......
......@@ -4,7 +4,7 @@ Donate link: https://polylang.pro
Tags: multilingual, bilingual, translate, translation, language, multilanguage, international, localization
Requires at least: 4.7
Tested up to: 5.2
Stable tag: 2.6.4
Stable tag: 2.6.5
License: GPLv3 or later
Making WordPress multilingual
......@@ -76,6 +76,14 @@ Don't hesitate to [give your feedback](http://wordpress.org/support/view/plugin-
== Changelog ==
= 2.6.5 (2019-10-09) =
* Pro: Require ACF 5.7.11+ to activate the compatibility to avoid fatal errors with older versions
* Pro: Avoid translating empty front slug (could cause a wrong redirect to /wp-admin)
* Pro: Fix filter wp_unique_term_slug not always correctly applied.
* Pro: Fix a conflict with Divi causing post synchronization buttons to be displayed multiple times
* Avoid notice in WP CLI context
= 2.6.4 (2019-08-27) =
* Pro: Fix a conflict preventing meta synchronization when ACF is active
......
......@@ -36,12 +36,12 @@
.l-aside--search {
@media (--max--medium) {
display: none; position: fixed; top: 0; right: 0; width: 310px; padding-left: 40px; height: 100%; overflow: auto; z-index: 20;
&:before { content: ''; position: fixed; top: 0; width: 270px; right: 0; bottom: 0; background: #fff; }
display: none; position: fixed; top: 0; /* right: 0; */ width: 310px; /* padding-left: 40px; */ height: 100%; overflow: auto; z-index: 20;
&:before { content: ''; position: fixed; top: 0; width: 270px; /* right: 0; */ bottom: 0; background: #fff; }
}
}
.l-aside--close { position: fixed; top: 0; right: 265px; padding: 14px 17px; cursor: pointer;
.l-aside--close { position: fixed; top: 0; /* right: 265px; */ padding: 14px 17px; cursor: pointer;
@media (--min--medium) {
display: none;
}
......
......@@ -32,11 +32,15 @@
}
.l-content--heading { display: block; padding-top: 20px; padding-bottom: 15px;
.l-content--heading { display: block; padding-top: 10px; padding-bottom: 15px;
@media (--min--medium) {
padding-left: 320px; padding-top: 40px; padding-bottom: 25px;
}
h1 { margin: 0; padding: 0; color: #2A3644; font-size: 25px; font-weight: 500; line-height: 29px; }
h1 { margin: 0; padding: 0; color: #2A3644; font-weight: 500; font-size: 18px; line-height: 26px;text-align: center;
@media (--min--medium) {
font-size: 25px; line-height: 29px; text-align: right;
}
}
}
.l-content--main { width: 100%; flex: 1 1 auto; max-width: 1070px; padding: 35px 20px 90px; margin: 0 auto;
......
......@@ -52,6 +52,10 @@
&:hover { border-color: var(--color--green-darker); background-color: var(--color--green-darker); color: #fff; }
}
.c-btn--filter { color: #2A3644; font-size: 15px; line-height: 26px; text-align: center; background: #fff; border-radius: 3px; padding: 6px 15px 6px 12px; }
.c-btn--filter { color: #2A3644; font-size: 15px; line-height: 26px; text-align: center; background: #fff; border-radius: 3px; padding: 6px 10px 6px 7px;
@media (--min--xx-small) {
padding: 6px 15px 6px 12px;
}
}
/* critical:end */
......@@ -37,7 +37,7 @@
.c-contact-landing-3--aside { padding: 10px 20px; margin: 0 -10px 0 -25px; background: linear-gradient(90deg, #C5F3EC 0%, #E4FAF7 100%);
@media (--min--medium) {
margin: 0; padding: 10px;
width: 549px; margin: 40px 0 0 40px; padding: 10px; border-radius: 33px; overflow: hidden;
}
svg { float: left; margin-right: 25px;
@media (--max--medium) {
......@@ -49,7 +49,4 @@
max-width: 300px; padding: 5px 0 0; text-align: left;
}
}
@media (--min--medium) {
width: 549px; margin-left: 40px; border-radius: 33px; overflow: hidden;
}
}
......@@ -37,7 +37,7 @@
.c-contact-landing-4--aside { padding: 10px 20px; margin: 0 -10px 0 -25px; background: linear-gradient(90deg, #C5F3EC 0%, #E4FAF7 100%);
@media (--min--medium) {
margin: 0; padding: 10px;
width: 549px; margin: 40px 0 0 40px; padding: 10px; border-radius: 33px; overflow: hidden;
}
svg { float: left; margin-right: 25px;
@media (--max--medium) {
......@@ -49,7 +49,4 @@
max-width: 300px; padding: 5px 0 0; text-align: left;
}
}
@media (--min--medium) {
width: 549px; margin-left: 40px; border-radius: 33px; overflow: hidden;
}
}
......@@ -17,7 +17,23 @@
.c-ico--address { float: left; margin: 3px 12px 0 3px; }
.c-ico--filter { float: left; margin: 3px 15px 0 3px; }
.c-ico--filter { float: left; margin: 3px 8px 0 3px;
@media (--min--xx-small) {
margin: 3px 15px 0 3px;
}
}
.c-ico--city { float: left; margin: 3px 8px 0 3px;
@media (--min--xx-small) {
margin: 3px 15px 0 3px;
}
}
.c-ico--city--job-section { float: left; margin: 0 13px 0 0; }
.c-ico--field--job-section { float: left; margin: 0 11px 0 0; width: 18px; height: 17px; }
.c-ico--type--job-section { float: left; margin: 0 13px 0 0; }
.c-ico--time { float: left; margin: 2px 16px 0 0; }
......@@ -38,6 +54,9 @@
.c-ico--transport { float: left; margin: 2px 20px 0 0; }
.c-ico--attachment { margin: -2px 4px -1px 0; opacity: 0.5; }
.c-ico--medical { float: left; margin: 1px 21px 0 0; }
/* critical:end */
......@@ -31,8 +31,9 @@
.c-jobs-section--item { /* line-height: 33px; */ }
.c-jobs-section--item-active {
.c-jobs-section--anchor { color: #1FB299; }
.c-jobs-section--item-active { position: relative;
&:after { content: '\2713'; position: absolute; top: 6px; right: 0; color: #1FB299; }
.c-jobs-section--anchor { color: #1FB299; padding-right: 14px; }
}
.c-jobs-section--anchor { display: block; color: #939393; font-size: 14px; text-decoration: none; padding: 7px 0; line-height: 19px;
......
......@@ -18,8 +18,8 @@
.c-search--col-keyword { flex: 1 1 auto; border-radius: 3px 0 0 3px; }
.c-search--btn-text { display: none; }
.c-btn--search-small { min-width: 35px; margin: 5px; padding: 9px 7px 8px 8px; }
.c-search--input { height: 45px; padding: 0 0 0 15px; }
.c-search--col ul { top: 45px; }
.c-search--input { height: 49px; padding: 0 0 0 15px; }
.c-search--col ul { top: 45px; border-top: 3px solid #fff; }
.c-ico--area { display: none; }
}
}
......@@ -59,7 +59,11 @@
.c-search--location { }
.c-search--keyword { }
.c-search--filters { padding: 10px 10px; text-align: right;
.c-search--filters { padding: 10px; display: flex; justify-content: space-between;
@media (--min--xx-small) {
padding: 10px 20px;
}
@media (--min--medium) {
display: none;
}
......
......@@ -14,5 +14,28 @@ is-, has-: Signify that the piece of UI in question is currently styled a certai
&:after { content: ''; position: fixed; opacity: 0.97; background-color: #2A3644; top: 0; left: 0; width: 100%; height: 100%; }
.c-jobs-section--content { max-height: 2000em; }
.c-jobs-section--expand { display: none; }
}
}
}
.is-aside--open-additional {
.l-aside--close { right: 265px; }
.l-aside--search { right: 0; padding-left: 40px;
&:before { right: 0; }
}
.c-jobs-section--city { display: none; }
}
.is-aside--open-city {
.l-aside--close { left: 265px; }
.l-aside--search { left: 0; padding-right: 40px;
&:before { left: 0; }
}
.c-jobs-section--additional { display: none; }
}
}
/*
.l-aside--search {
@media (--max--medium) {
display: none; position: fixed; top: 0; right: 0; width: 310px; padding-left: 40px; height: 100%; overflow: auto; z-index: 20;
&:before { content: ''; position: fixed; top: 0; width: 270px; right: 0; bottom: 0; background: #fff; }
}
}*/
This diff is collapsed.
This diff is collapsed.
......@@ -154,7 +154,7 @@
<?php
endif;
?>
<script src="/wp-content/themes/biuro/js/main-f063af59.min.js" async></script>
<script src="/wp-content/themes/biuro/js/main-4d30a78f.min.js" async></script>
<script src="/wp-content/themes/biuro/js/vendor/modernizr-custom.js" async></script>
<?php
......
......@@ -749,6 +749,7 @@ add_action( 'template_redirect', 'livas_job_id_redirect' );
// Add LIVAS ID column
function jobs_columns_head($defaults) {
$defaults['job_id'] = 'Job ID';
$defaults['livas_id'] = 'LIVAS ID';
$defaults['valid'] = 'Valid';
return $defaults;
......@@ -756,7 +757,9 @@ function jobs_columns_head($defaults) {
// Show LIVAS ID
function jobs_columns_content($column_name, $post_ID) {
if ($column_name == 'livas_id'):
if ($column_name == 'job_id'):
echo $post_ID;
elseif ($column_name == 'livas_id'):
$pod = pods( 'job', $post_ID );
if ($pod->field( 'livas-id' )):
......
......@@ -31,7 +31,7 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" crossorigin="anonymous" >
<style><?php include 'css/core-a4a3d74724.min.css'; ?></style>
<style><?php include 'css/core-f2263db4eb.min.css'; ?></style>
<script>
document.documentElement.classList.replace('no-js', 'js');
......@@ -40,13 +40,13 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2" crossorigin="anonymous" >
<link rel="preload" href="/wp-content/themes/biuro/css/main-dce8190141.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preconnect" href="https://www.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-dce8190141.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css">
</noscript>
<?php wp_head(); ?>
......
......@@ -31,7 +31,7 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" crossorigin="anonymous" >
<style><?php include 'css/core-a4a3d74724.min.css'; ?></style>
<style><?php include 'css/core-f2263db4eb.min.css'; ?></style>
<script>
document.documentElement.classList.replace('no-js', 'js');
......@@ -40,13 +40,13 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2" crossorigin="anonymous" >
<link rel="preload" href="/wp-content/themes/biuro/css/main-dce8190141.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preconnect" href="https://www.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-dce8190141.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css">
</noscript>
<?php wp_head(); ?>
......
......@@ -435,9 +435,29 @@ if (module.hot) {
});
document.querySelectorAll('.js-toggle--aside').forEach((node) => {
node.addEventListener('click', (e) => {
e.preventDefault();
document.body.classList.remove('is-aside--open');
document.body.classList.remove('is-aside--open-additional');
document.body.classList.remove('is-aside--open-city');
});
});
document.querySelectorAll('.js-toggle--aside-city').forEach((node) => {
node.addEventListener('click', (e) => {
e.preventDefault();
document.body.classList.add('is-aside--open');
document.body.classList.remove('is-aside--open-additional');
document.body.classList.add('is-aside--open-city');
});
});
document.querySelectorAll('.js-toggle--aside--additional').forEach((node) => {
node.addEventListener('click', (e) => {
e.preventDefault();
document.body.classList.toggle('is-aside--open');
document.body.classList.remove('is-aside--open-city');
document.body.classList.add('is-aside--open-additional');
});
});
......
......@@ -33,9 +33,14 @@ get_header(); ?>
</div>
<div class="c-search--filters">
<button class="js-toggle--aside o-btn c-btn--filter">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="17" height="17" class="c-ico--filter">
<path d="M907.8,100.2l-346,380v419.7l-124.5-98.3v-322l-345-379.4H907.8 M907.8,17.9H92.2c-32.6,0-62,19.2-75.2,49c-13.2,29.8-7.5,64.5,14.4,88.6L355,511.3v290.2c0,25.2,11.5,49,31.3,64.6l124.5,98.3c14.8,11.7,32.8,17.7,51,17.7c12.2,0,24.5-2.7,35.9-8.2c28.4-13.7,46.4-42.5,46.4-74V512l324.6-356.5c21.9-24.1,27.6-58.8,14.4-88.6C969.8,37.1,940.3,17.9,907.8,17.9L907.8,17.9z"/>
<button class="js-toggle--aside-city o-btn c-btn--filter">
<svg width="16px" height="19px" class="c-ico--city">
<use xlink:href="#ico--city"></use>
</svg> <?php _e('City', 'biuro'); ?>
</button>
<button class="js-toggle--aside--additional o-btn c-btn--filter">
<svg width="17px" height="17px" class="c-ico--filter">
<use xlink:href="#ico--filter"></use>
</svg> <?php _e('Other filters', 'biuro'); ?>
</button>
</div>
......
......@@ -26,9 +26,14 @@ get_header(); ?>
</div>
<div class="c-search--filters">
<button class="js-toggle--aside o-btn c-btn--filter">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="17" height="17" class="c-ico--filter">
<path d="M907.8,100.2l-346,380v419.7l-124.5-98.3v-322l-345-379.4H907.8 M907.8,17.9H92.2c-32.6,0-62,19.2-75.2,49c-13.2,29.8-7.5,64.5,14.4,88.6L355,511.3v290.2c0,25.2,11.5,49,31.3,64.6l124.5,98.3c14.8,11.7,32.8,17.7,51,17.7c12.2,0,24.5-2.7,35.9-8.2c28.4-13.7,46.4-42.5,46.4-74V512l324.6-356.5c21.9-24.1,27.6-58.8,14.4-88.6C969.8,37.1,940.3,17.9,907.8,17.9L907.8,17.9z"/>
<button class="js-toggle--aside-city o-btn c-btn--filter">
<svg width="16px" height="19px" class="c-ico--city">
<use xlink:href="#ico--city"></use>
</svg> <?php _e('City', 'biuro'); ?>
</button>
<button class="js-toggle--aside--additional o-btn c-btn--filter">
<svg width="17px" height="17px" class="c-ico--filter">
<use xlink:href="#ico--filter"></use>
</svg> <?php _e('Other filters', 'biuro'); ?>
</button>
</div>
......@@ -38,7 +43,11 @@ get_header(); ?>
<div class="l-content l-content--heading">
<?php
if ( !is_search() ):
if ( is_search() ):
?>
<h1><?php _e('Job offers', 'biuro'); ?>:</h1>
<?php
else:
while ( have_posts() ) :
the_post();
the_content();
......
......@@ -3,6 +3,6 @@ Theme Name: Biuro
Author: Biuro
Author URI: https://www.biuro.lt/
Description: Biuro multiregion theme
Version: 1.10.0
Version: 1.11.0
Text Domain: biuro
*/
......@@ -47,8 +47,16 @@ function getSiteTree($type, $section, $searchQuery, $term) {
$classCSS .= ' c-jobs-section--is-closed';
endif;
$classCSS .= ($type == 'city') ? ' c-jobs-section--city' : ' c-jobs-section--additional';
echo '<div class="' . $classCSS . '">';
echo '<h3 class="c-jobs-section--heading">' . $section . '</h3>';
echo '<h3 class="c-jobs-section--heading">';
echo '<svg width="16px" height="19px" class="c-ico--' . $type . '--job-section">';
echo '<use href="#ico--' . $type . '"></use>';
echo '</svg>';
echo $section;
echo '</h3>';
echo '<div class="c-jobs-section--content">';
echo '<ul class="c-jobs-section--list">';
......
......@@ -92,4 +92,19 @@
<symbol id="ico--transport" viewBox="0 0 20 21">
<path class="u-fill--inherit" d="M5 15.5A1.25 1.25 0 105 13a1.25 1.25 0 000 2.5zm10 0a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5zm4.062-10h-.312V3.625c0-1.712-3.708-3.065-8.434-3.123L10 .5C5.125.5 1.25 1.875 1.25 3.625V5.5H.937A.937.937 0 000 6.438v3.125c0 .517.42.937.937.937h.313v6.25c0 .69.56 1.25 1.25 1.25v1.25c0 .69.56 1.25 1.25 1.25h1.875c.69 0 1.25-.56 1.25-1.25V18h6.25v1.25c0 .69.56 1.25 1.25 1.25h1.875c.69 0 1.25-.56 1.25-1.25V18c.69 0 1.25-.56 1.25-1.25V10.5h.312c.518 0 .938-.42.938-.937V6.438a.937.937 0 00-.938-.938zM5.625 19.25H3.75V18h1.875v1.25zm10.625 0h-1.875V18h1.875v1.25zm1.25-2.5h-15v-5h15v5zm0-6.25h-15v-5H17.5v5zm.001-6.25H2.5v-.613C2.629 3.117 5.133 1.75 10 1.75c4.867 0 7.37 1.367 7.501 1.887v.613z" fill-rule="nonzero"/>
</symbol>
<symbol id="ico--filter" viewBox="0 0 1000 1000">
<path class="u-fill--inherit" d="M907.8,100.2l-346,380v419.7l-124.5-98.3v-322l-345-379.4H907.8 M907.8,17.9H92.2c-32.6,0-62,19.2-75.2,49c-13.2,29.8-7.5,64.5,14.4,88.6L355,511.3v290.2c0,25.2,11.5,49,31.3,64.6l124.5,98.3c14.8,11.7,32.8,17.7,51,17.7c12.2,0,24.5-2.7,35.9-8.2c28.4-13.7,46.4-42.5,46.4-74V512l324.6-356.5c21.9-24.1,27.6-58.8,14.4-88.6C969.8,37.1,940.3,17.9,907.8,17.9L907.8,17.9z"/>
</symbol>
<symbol id="ico--city">
<path class="u-fill--inherit" d="M4.5 5.453V4.047c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299zm6.328.422H9.422a.407.407 0 01-.299-.123A.407.407 0 019 5.453V4.047c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm-4.5 3.375H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299V7.422c0-.117.041-.217.123-.299A.407.407 0 014.922 7h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm4.5 0H9.422a.407.407 0 01-.299-.123A.407.407 0 019 8.828V7.422c0-.117.041-.217.123-.299A.407.407 0 019.422 7h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zM6.75 10.797v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299v-1.406c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299zm4.078 1.828H9.422a.407.407 0 01-.299-.123.407.407 0 01-.123-.299v-1.406c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm4.922 4.36v1.265H0v-1.266c0-.117.041-.216.123-.298a.407.407 0 01.299-.124h.703V1.094a.686.686 0 01.229-.598.873.873 0 01.615-.246h11.847c.211 0 .405.082.58.246a.686.686 0 01.229.598v15.468h.703c.117 0 .217.042.299.124a.407.407 0 01.123.298zm-12.938-.458H6.75v-2.355c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v2.355h3.973V1.973l-10.16-.035v14.59z" fill-rule="nonzero" />
</symbol>
<symbol id="ico--type">
<path class="u-fill--inherit" d="M5.203 10.375H3.797a.423.423 0 01-.422-.422V8.547c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406c0 .232-.19.422-.422.422zM9 9.953c0 .232-.19.422-.422.422H7.172a.423.423 0 01-.422-.422V8.547c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm3.375 0c0 .232-.19.422-.422.422h-1.406a.423.423 0 01-.422-.422V8.547c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zM9 13.328c0 .232-.19.422-.422.422H7.172a.423.423 0 01-.422-.422v-1.406c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm-3.375 0c0 .232-.19.422-.422.422H3.797a.423.423 0 01-.422-.422v-1.406c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm6.75 0c0 .232-.19.422-.422.422h-1.406a.423.423 0 01-.422-.422v-1.406c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm3.375-9.14v12.374c0 .932-.756 1.688-1.688 1.688H1.687A1.688 1.688 0 010 16.562V4.188C0 3.256.756 2.5 1.687 2.5h1.688V.672c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422V2.5h4.5V.672c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422V2.5h1.687c.932 0 1.688.756 1.688 1.688zm-1.688 12.164V5.875H1.687v10.477c0 .116.095.21.211.21h11.954c.116 0 .21-.094.21-.21z" fill-rule="nonzero"/>
</symbol>
<symbol id="ico--field">
<path class="u-fill--inherit" d="M16.312 3.75c.932 0 1.688.756 1.688 1.688v9c0 .931-.756 1.687-1.688 1.687H1.687A1.687 1.687 0 010 14.438v-9C0 4.506.756 3.75 1.687 3.75H4.5V2.063c0-.932.756-1.688 1.687-1.688h5.625c.932 0 1.688.756 1.688 1.688V3.75h2.812zM6.187 2.063V3.75h5.625V2.063H6.187zM1.898 5.438a.211.211 0 00-.21.21V8.25h14.624V5.648a.211.211 0 00-.21-.21H1.898zm14.204 9c.116 0 .21-.095.21-.211v-4.29H11.25v.844a.844.844 0 01-.844.844H7.594a.844.844 0 01-.844-.844v-.843H1.687v4.289c0 .116.095.21.211.21h14.204z" fill-rule="nonzero"/>
</symbol>
<symbol id="ico--medical" viewBox="0 0 448 512">
<path class="u-fill--inherit" d="M433.9 98L350 14.1C341 5.1 328.8 0 316.1 0h-204c-26.5.1-48 21.6-48 48.1V288H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h126.1l34.7 69.5c2.9 5.9 11.4 5.9 14.3 0L240 275.8l22.1 44.2H352c8.8 0 16-7.2 16-16s-7.2-16-16-16h-70.1l-34.7-69.5c-2.9-5.9-11.4-5.9-14.3 0L176 332.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H96V48.1c0-8.8 7.3-16.1 16.1-16.1h176v104.1c0 13.3 10.7 23.9 24 23.9h104v304c0 8.8-7.2 16-16 16h-288c-8.8 0-16.1-7.2-16.1-16V352H64.1v112c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V132c0-12.7-5.1-25-14.1-34zM320 128.1V32.6c2.8.7 5.3 2.1 7.4 4.2l83.9 83.9c2.1 2.1 3.5 4.6 4.2 7.4H320z"/>
</symbol>
</svg>
......@@ -16,8 +16,8 @@ wp plugin install loco-translate --version=2.3.0 --activate-network;
wp plugin install pods --version=2.7.15 --activate-network;
# wp plugin update pods --version=2.7.15;
wp plugin install polylang --version=2.6.4 --activate-network;
# wp plugin update polylang --version=2.6.4;
wp plugin install polylang --version=2.6.5 --activate-network;
# wp plugin update polylang --version=2.6.5;
wp plugin install wordpress-seo --version=12.2 --activate-network;
# wp plugin update wordpress-seo --version=12.2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment