From b6a5c108347f16848d2cf431379640ff0567f407 Mon Sep 17 00:00:00 2001 From: "Georgios K." <387447+kalligator@users.noreply.github.com> Date: Tue, 24 Jun 2025 14:46:25 +0300 Subject: [PATCH] fixed columns mixup Column numbers 3 & 4 were mixed up --- inc/customize-configs/section-features.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/customize-configs/section-features.php b/inc/customize-configs/section-features.php index fb7f9002..40837f52 100644 --- a/inc/customize-configs/section-features.php +++ b/inc/customize-configs/section-features.php @@ -113,8 +113,8 @@ 'description' => '', 'type' => 'select', 'choices' => array( - '3' => esc_html__( '4 Columns', 'onepress' ), - '4' => esc_html__( '3 Columns', 'onepress' ), + '3' => esc_html__( '3 Columns', 'onepress' ), + '4' => esc_html__( '4 Columns', 'onepress' ), '6' => esc_html__( '2 Columns', 'onepress' ), ), )