Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
57a7f03
Fix: Remove SCSS deprecated warning during development (#2366)
RabbiIslamRony May 27, 2025
8b91ffc
format php code use phpcbf (#2376)
mdalaminbey May 28, 2025
4ac6c9a
fixed security issue
Armanul46 May 28, 2025
fa9eaf5
fixed security issue
Armanul46 May 28, 2025
a58bbd9
Merge pull request #2379 from Armanul46/fix/security-issues
mdalaminbey May 28, 2025
778bf87
update phpcs configuration
mdalaminbey May 28, 2025
6c99f2d
update phpcs.yml
mdalaminbey May 28, 2025
cc268c8
Auto format js and php code on commit (#2332)
mdalaminbey May 28, 2025
cebaa4a
Add: filter to manipulate the directory types in the templates (#2372)
MahfuzulAlam May 29, 2025
ebadfb7
added `PSR2.Methods.FunctionClosingBrace` rule in phpcs.xml
mdalaminbey May 29, 2025
95ca34a
removed background image settings from search result
Jun 1, 2025
991759c
fix: similar listings thumb issue
HeyMehedi Jun 10, 2025
fbea179
fix: featured listings thumb issue
HeyMehedi Jun 10, 2025
13439c0
fix: popular listings thumb issue
HeyMehedi Jun 10, 2025
9827866
Merge branch 'development' into fix-sidebar-widgets
HeyMehedi Jun 10, 2025
0b7224a
removed escaping from deactivate plugin
Armanul46 Jun 15, 2025
a8aa28f
removed escaping from deactivate plugin
Armanul46 Jun 15, 2025
da9e855
Merge pull request #2387 from Armanul46/fixed/deactivate-issue
Armanul46 Jun 15, 2025
0ed9778
improve settings
Armanul46 Jun 15, 2025
cf47784
removed extra space
Armanul46 Jun 15, 2025
a9489bd
Merge branch 'development' into fix-sidebar-widgets
RabbiIslamRony Jun 15, 2025
be5fcbe
review consent label editorID - updated
iamibrahimriaz Jun 15, 2025
073f9af
Merge pull request #7 from iamibrahimriaz/improve/consent-editorid
Armanul46 Jun 15, 2025
ab86fe7
improved review builder settings
Armanul46 Jun 15, 2025
c2133e8
Merge pull request #2388 from Armanul46/improve-review-settings
Armanul46 Jun 16, 2025
3b770a2
Merge pull request #2382 from Armanul46/removed/search-background-set…
Armanul46 Jun 16, 2025
8da35b3
removed saitize
Armanul46 Jun 16, 2025
62d0e56
removed saitize
Armanul46 Jun 16, 2025
b7a8e22
Merge pull request #2390 from Armanul46/removed/sanitize
Armanul46 Jun 16, 2025
3b3d639
add: esc html
HeyMehedi Jun 16, 2025
9a9d516
Merge branch 'development' into fix-sidebar-widgets
HeyMehedi Jun 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 5 additions & 3 deletions .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.base.ref }}
# checkout the PR branch, not the base
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 # ensures full history

# Step 2: Set up PHP 7.4 with necessary configurations. Also, install the "cs2pr" tool for converting PHPCS output into annotations.
- name: Setup PHP
Expand All @@ -37,6 +39,6 @@ jobs:
- name: Install Composer dependencies
run: composer install

# Step 4: Run the PHPCS check using the "composer report" command to detect coding standard violations.
# Step 4: Run the PHPCS check using the "composer phpcs" command to detect coding standard violations.
- name: Run PHPCS checks
run: composer report
run: composer phpcs
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx --no-install lint-staged
37,898 changes: 37,891 additions & 7 deletions assets/css/admin-main.css

Large diffs are not rendered by default.

37,896 changes: 37,889 additions & 7 deletions assets/css/admin-main.rtl.css

Large diffs are not rendered by default.

28,081 changes: 28,079 additions & 2 deletions assets/css/all-listings.css

Large diffs are not rendered by default.

28,078 changes: 28,076 additions & 2 deletions assets/css/all-listings.rtl.css

Large diffs are not rendered by default.

28,081 changes: 28,079 additions & 2 deletions assets/css/public-main.css

Large diffs are not rendered by default.

28,078 changes: 28,076 additions & 2 deletions assets/css/public-main.rtl.css

Large diffs are not rendered by default.

Loading