Created
April 26, 2022 17:45
-
-
Save hivepress/1e80cf720f502130783b66e86e464613 to your computer and use it in GitHub Desktop.
Change the number of columns on the listing categories page #hivepress #listing-categories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( | |
| 'hivepress/v1/templates/listing_categories_view_page', | |
| function( $template ) { | |
| return hivepress()->helper->merge_trees( | |
| $template, | |
| [ | |
| 'blocks' => [ | |
| 'listing_categories' => [ | |
| 'columns' => 3, | |
| ], | |
| ], | |
| ] | |
| ); | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment