Skip to content

Instantly share code, notes, and snippets.

@J-H-Mojumder
Created June 9, 2022 11:17
Show Gist options
  • Save J-H-Mojumder/26a43ca09e375fcab046a1d545fb24fe to your computer and use it in GitHub Desktop.
Save J-H-Mojumder/26a43ca09e375fcab046a1d545fb24fe to your computer and use it in GitHub Desktop.
Control number of products to be shown on the single store page's featured section
<?php
add_filter( 'dokan_featured_product_section_item_count' , 'control_featured_section_of_single_store' );
function control_featured_section_of_single_store ($columns){
$columns = 4; //enter your desired number of products
return $columns;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment