Tagged: media gallery
Hello,
Is it possible to set media gallery columns by default to 9 columns ?
Yes in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php replace:
array(
"name" => __("Gallery Columns", 'avia_framework' ),
"desc" => __("Choose the column count of your Gallery", 'avia_framework' ),
"id" => "columns",
"type" => "select",
"std" => "5",
"subtype" => AviaHtmlHelper::number_array(1,12,1)
),
with
array(
"name" => __("Gallery Columns", 'avia_framework' ),
"desc" => __("Choose the column count of your Gallery", 'avia_framework' ),
"id" => "columns",
"type" => "select",
"std" => "9",
"subtype" => AviaHtmlHelper::number_array(1,12,1)
),