Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #22554

    Hello,

    Is it possible to set media gallery columns by default to 9 columns ?

    #116170

    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)
    ),

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘media gallery columns’ is closed to new replies.