I am attempting to disable the paging function of the main slider in Minimatica's gallery mode.
I have attempted using the below settings for the $paged variable
$paged = get_query_var('paged')
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$paged = 0;
$paged = 1;
Does anyone have any suggestions? This is my first PHP project and the first time I have worked with PHP.