Change the Number of Columns in Favorites & Feed

For anyone hoping to change the number/amount of columns on the Favorites page (which looks like the image above), use this code:

add_filter(
    'hivepress/v1/templates/listings_favorite_page',
    function ($template) {
        return hivepress()->helper->merge_trees(
            $template,
            [
                'blocks' => [
                    'page_content' => [
                        'blocks' => [
                            'listings' => [
                                'type'    => 'listings',
                                'columns' => 3,
                                '_order'  => 10,
                            ],
                        ],
                    ],
                ],
            ]
        );
    }
);

Where to change the code:
** change ‘columns’ to the amount of columns you would like.
** for users with the foo-followers extension, replace listings_favorite_page with listings_feed_page.

Hi,

Thank you for your solution, it will be helpful in our community.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.