Created
April 1, 2024 22:41
-
-
Save andreiglingeanu/795d1ac5c129471e86b5fad4f70fee9a to your computer and use it in GitHub Desktop.
This file contains 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( | |
'blocksy:woocommerce:product-card:thumbnail:ratio', | |
function ($ratio) { | |
// Please change this | |
$my_page_id = 123; | |
if (is_page($my_page_id)) { | |
// Your custom ratio | |
return '1/1'; | |
} | |
return $ratio; | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment