Created
October 1, 2025 12:21
-
-
Save plugin-republic/0d1713beed830904d1116146c92de37e to your computer and use it in GitHub Desktop.
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 | |
| /** | |
| * Hook: plugin_republic_product_thumbnails_columns. | |
| * Filter the number of columns in the thumbnail gallery. | |
| */ | |
| function plugin_republic_product_thumbnails_columns( $cols ) { | |
| $cols = 3; | |
| return $cols; | |
| } | |
| add_filter( 'woocommerce_product_thumbnails_columns', 'plugin_republic_product_thumbnails_columns' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment