From 7f867074b1e007520ed023062b658c59b8964d69 Mon Sep 17 00:00:00 2001 From: Nikita Sinelnikov Date: Fri, 15 Jul 2022 13:02:39 +0300 Subject: [PATCH 1/3] - changed branches for checking the code-quality; --- .github/workflows/code-quality.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 5265fed1..087ee59e 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -1,6 +1,9 @@ name: JobBoardWP GitHub Actions -on: push +on: + push: + branches: + - development/3.0 jobs: build: From 8651c3af437c611453e726ae7164783ad5d8651b Mon Sep 17 00:00:00 2001 From: "WordPress .pot File Generator" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Jul 2022 10:03:25 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=94=84=20Generated=20POT=20File?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- languages/ultimate-member.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/ultimate-member.pot b/languages/ultimate-member.pot index 5deb7116..e68d7915 100644 --- a/languages/ultimate-member.pot +++ b/languages/ultimate-member.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-07-14T15:29:05+00:00\n" +"POT-Creation-Date: 2022-07-15T10:03:21+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: ultimate-member\n" From 1568f0189c6ddf85f8f1c88740b0fc965524450d Mon Sep 17 00:00:00 2001 From: ashubawork Date: Mon, 25 Jul 2022 22:09:39 +0300 Subject: [PATCH 3/3] - change label in filter for select --- includes/core/class-member-directory.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/includes/core/class-member-directory.php b/includes/core/class-member-directory.php index 752018f5..664f9d15 100644 --- a/includes/core/class-member-directory.php +++ b/includes/core/class-member-directory.php @@ -684,7 +684,13 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { $attrs['options'] = apply_filters( 'um_member_directory_filter_select_options_sorted', $attrs['options'], $attrs ); - $label = isset( $attrs['label'] ) ? $attrs['label'] : ''; ?> + $label = ''; + if ( isset( $attrs['label'] ) ) { + $label = $attrs['label']; + } elseif ( ! isset( $attrs['label'] ) && isset( $attrs['title'] ) ) { + $label = $attrs['title']; + } + ?>