__( 'General Settings', 'spyropress' ),
'type' => 'heading',
'slug' => 'generalsettings',
'icon' => 'module-icon-general'
),
array(
'label' => __( 'Custom Logo', 'spyropress' ),
'desc' => __( 'Upload a logo for your site or specify an image URL directly.', 'spyropress' ),
'id' => 'logo',
'type' => 'upload'
),
array(
'label' => __( 'Apple Touch Icon (small)', 'spyropress' ),
'desc' => __( 'Upload apple favicon.
Accepted formats: png
Dimension: 57px x 57px.', 'spyropress' ),
'id' => 'apple_small',
'type' => 'upload'
),
array(
'label' => __( 'Apple Touch Icon (medium)', 'spyropress' ),
'desc' => __( 'Upload apple favicon.
Accepted formats: png
Dimension: 72px x 72px.', 'spyropress' ),
'id' => 'apple_medium',
'type' => 'upload'
),
array(
'label' => __( 'Apple Touch Icon (large)', 'spyropress' ),
'desc' => __( 'Upload apple favicon.
Accepted formats: png
Dimension: 114px x 114px.', 'spyropress' ),
'id' => 'apple_large',
'type' => 'upload'
),
); // End General Settings
$spyropress_theme_settings['layout'] = array(
array(
'label' => __( 'Customization', 'spyropress' ),
'type' => 'heading',
'slug' => 'customization',
'icon' => 'module-icon-layout'
),
array(
'label' => __( 'Layout Options', 'spyropress' ),
'type' => 'sub_heading'
),
array(
'label' => __( 'Theme Layout', 'spyropress' ),
'id' => 'theme_layout',
'type' => 'radio_img',
'desc' => __( 'Select which layout you want for theme.', 'spyropress' ),
'options' => array(
'full' => array(
'title' => __( 'Full Layout', 'spyropress' ),
'img' => get_panel_img_path( 'layouts/full.png' )
),
'boxed' => array(
'title' => __( 'Boxed Layout', 'spyropress' ),
'img' => get_panel_img_path( 'layouts/full.png' )
)
),
'std' => 'full'
),
array(
'label' => __( 'Theme Color', 'spyropress' ),
'desc' => __( 'Select which color you want for theme.', 'spyropress' ),
'id' => 'theme-skin',
'type' => 'select',
'options' => array(
'blue.css' => __( 'Blue', 'spyropress' ),
'grass-green.css' => __( 'Grass Green ', 'spyropress' ),
'green.css' => __( 'Green', 'spyropress' ),
'klein-blue.css' => __( 'Klein Blue', 'spyropress' ),
'orange.css' => __( 'Orange', 'spyropress' ),
'pink.css' => __( 'Pink', 'spyropress' ),
'purple.css' => __( 'Purple', 'spyropress' ),
'red.css' => __( 'Red', 'spyropress' ),
'turquoise.css' => __( 'Turquoise', 'spyropress' ),
),
'std' => 'turquoise.css'
),
array(
'label' => __( 'Box Layout Background (Custom)', 'spyropress' ),
'desc' => __( 'Upload background image for theme.', 'spyropress' ),
'id' => 'box_bg_custom',
'type' => 'upload'
),
array(
'label' => __( 'Box Layout Background', 'spyropress' ),
'id' => 'box_bg',
'class' => 'section-pattern',
'type' => 'radio_img',
'options' => array(
'bg-climpek' => array( 'img' => assets_img() . 'bg/climpek.png' ),
'bg-crissXcross' => array( 'img' => assets_img() . 'bg/crissXcross.png' ),
'bg-denim' => array( 'img' => assets_img() . 'bg/denim.png' ),
'bg-diamond_upholstery' => array( 'img' => assets_img() . 'bg/diamond_upholstery.png' ),
'bg-gplaypattern' => array( 'img' => assets_img() . 'bg/gplaypattern.png' ),
'bg-irongrip' => array( 'img' => assets_img() . 'bg/irongrip.png' ),
'bg-random_grey_variations' => array( 'img' => assets_img() . 'bg/random_grey_variations.png' ),
'bg-shattered' => array( 'img' => assets_img() . 'bg/shattered.png' ),
'bg-vichy' => array( 'img' => assets_img() . 'bg/vichy.png' ),
'bg-wood_pattern' => array( 'img' => assets_img() . 'bg/wood_pattern.png' ),
),
)
); // End Layout Options
$spyropress_theme_settings['header'] = array(
array(
'label' => __( 'Header Customization', 'spyropress' ),
'type' => 'heading',
'slug' => 'header',
'icon' => 'module-icon-layout'
),
array(
'label' => __( 'Header Styles', 'spyropress' ),
'id' => 'header_style',
'type' => 'radio_img',
'class' => 'full-width enable_changer',
'options' => array(
'v1' => array( 'img' => assets_img() . 'framework_assets/header-v1.png' ),
'v2' => array( 'img' => assets_img() . 'framework_assets/header-v2.png' ),
),
'std' => 'v1'
),
array(
'label' => 'Top Bar Settings',
'type' => 'sub_heading'
),
array(
'id' => 'top_disable',
'type' => 'checkbox',
'desc' => __( 'Disable Site Top bar.', 'spyropress' ),
'options' => array(
'1' => __( 'Disable Top Bar', 'spyropress' ),
)
),
array(
'id' => 'search_disable',
'type' => 'checkbox',
'desc' => __( 'Disable Search Box on topbar.', 'spyropress' ),
'options' => array(
'1' => __( 'Disable search box', 'spyropress' ),
)
),
array(
'label' => 'Search Placerholder',
'type' => 'text',
'desc' => __( 'Placeholder for search box on topbar.', 'spyropress' ),
'id' => 'search_placeholder',
'std' => 'Search...'
),
array(
'label' => 'Teaser',
'type' => 'textarea',
'id' => 'topbar_teaser',
'desc' => __( 'Topbar teaser content.', 'spyropress' ),
'std' => 'Get in touch!',
'rows' => 5
),
array(
'label' => 'Phone Title',
'type' => 'text',
'desc' => __( 'Tile for phone number field.', 'spyropress' ),
'id' => 'topbar_ph_label',
'std' => 'Call Us:'
),
array(
'label' => 'Phone Number',
'type' => 'text',
'desc' => __( 'Topbar phone number.', 'spyropress' ),
'id' => 'topbar_ph',
'std' => '1.244.145.3232'
),
array(
'label' => 'Social Networks',
'type' => 'sub_heading'
),
array(
'id' => 'header_social',
'type' => 'repeater',
'item_title' => 'network',
'fields' => array(
array(
'label' => 'URL',
'id' => 'url',
'type' => 'text'
),
array(
'label' => 'Network',
'id' => 'network',
'type' => 'select',
'options' => spyropress_get_options_social()
)
)
),
); // End Header
$spyropress_theme_settings['footer'] = array(
array(
'label' => __( 'Footer Customization', 'spyropress' ),
'type' => 'heading',
'slug' => 'footer',
'icon' => 'module-icon-footer'
),
array(
'label' => __( 'Footer Copyright', 'spyropress' ),
'type' => 'sub_heading'
),
array(
'id' => 'copyright_disable',
'type' => 'checkbox',
'desc' => __( 'Disable Copy right bar on footer.', 'spyropress' ),
'options' => array(
'1' => __( 'Disable copy right bar', 'spyropress' ),
)
),
array(
'label' => __( 'Copyrigth Text', 'spyropress' ),
'id' => 'footer_copyright',
'type' => 'editor'
),
array(
'label' => __( 'Footer Social Icons', 'spyropress' ),
'type' => 'sub_heading'
),
array(
'id' => 'footer_social',
'type' => 'repeater',
'item_title' => 'network',
'fields' => array(
array(
'label' => 'URL',
'id' => 'ft_url',
'type' => 'text'
),
array(
'label' => 'Network',
'id' => 'network',
'type' => 'select',
'options' => spyropress_get_options_social()
)
)
),
array(
'label' => __( 'Footer Widget', 'spyropress' ),
'type' => 'sub_heading'
),
array(
'id' => 'ft_widget',
'type' => 'checkbox',
'desc' => __( 'Disable Footer Widget Area.', 'spyropress' ),
'options' => array(
'1' => __( 'Disable widget', 'spyropress' ),
)
),
); // END FOOTER
$spyropress_theme_settings['post'] = array(
array(
'label' => __( 'Post Options', 'spyropress' ),
'type' => 'heading',
'slug' => 'post',
'icon' => 'module-icon-post'
),
array(
'label' => __( 'Layout', 'spyropress' ),
'type' => 'sub_heading'
),
array(
'label' => __( 'Blog Layout', 'spyropress' ),
'id' => 'blog_layout',
'desc' => __( 'Select post veiw layout on blog page.', 'spyropress' ),
'type' => 'select',
'options' => array(
'large' => __( 'Large Image', 'spyropress' ),
'medium' => __( 'Medium Image', 'spyropress' ),
),
'std' => 'large'
),
array(
'label' => __( 'Sidebar Position', 'spyropress' ),
'id' => 'blog_sidebar_position',
'desc' => __( 'Select widget sidebar postion for blog page .', 'spyropress' ),
'type' => 'select',
'options' => array(
'left' => __( 'Left Side', 'spyropress' ),
'right' => __( 'Right Side', 'spyropress' )
),
'std' => 'left'
),
array(
'label' => __( 'Single Sidebar Position', 'spyropress' ),
'id' => 'blog_single_sidebar_position',
'desc' => __( 'Select widget sidebar postion for blog single page .', 'spyropress' ),
'type' => 'select',
'options' => array(
'left' => __( 'Left Side', 'spyropress' ),
'right' => __( 'Right Side', 'spyropress' )
),
'std' => 'left'
),
array(
'id' => 'blog_lightbx',
'type' => 'checkbox',
'options' => array(
1 => __( 'Disable Light Box.', 'spyropress' ),
)
),
array(
'id' => 'bread_disable',
'type' => 'checkbox',
'desc' => __( 'Disable Blog Breadcrumb.', 'spyropress' ),
'options' => array(
'1' => __( 'Disable Blog Breadcrumb', 'spyropress' ),
)
),
array(
'label' => __( 'Excerpt Settings', 'spyropress' ),
'type' => 'sub_heading'
),
array(
'label' => __( 'Length by', 'spyropress' ),
'id' => 'excerpt_by',
'type' => 'select',
'options' => array (
'' => '',
'words' => __( 'Words', 'spyropress' ),
'chars' => __( 'Character', 'spyropress' ),
),
'std' => 'words'
),
array(
'label' => __( 'Length', 'spyropress' ),
'desc' => __( 'Set the length of excerpt.', 'spyropress' ),
'id' => 'excerpt_length',
'type' => 'text',
'std' => 60
),
array(
'label' => __( 'Ellipsis', 'spyropress' ),
'desc' => __( 'This is the description field, again good for additional info.', 'spyropress' ),
'id' => 'excerpt_ellipsis',
'type' => 'text',
'std' => ' [...]'
),
array(
'label' => __( 'Before Text', 'spyropress' ),
'desc' => __( 'This is the description field, again good for additional info.', 'spyropress' ),
'id' => 'excerpt_before_text',
'type' => 'text',
'std' => '
' ), array( 'label' => __( 'After Text', 'spyropress' ), 'desc' => __( 'This is the description field, again good for additional info.', 'spyropress' ), 'id' => 'excerpt_after_text', 'type' => 'text', 'std' => '
' ), array( 'label' => __( 'Read More', 'spyropress' ), 'id' => 'excerpt_link_to_post', 'type' => 'checkbox', 'options' => array( 1 => __( 'Enable Read more link.', 'spyropress' ), ), 'std' => 1 ), array( 'label' => __( 'Link Text', 'spyropress' ), 'desc' => __( 'A text for Read More button.', 'spyropress' ), 'id' => 'excerpt_link_text', 'type' => 'text', 'std' => __( 'Read more...', 'spyropress' ) ), array( 'label' => __( 'Author Box', 'spyropress' ), 'type' => 'sub_heading' ), array( 'desc' => __( 'A box to display about author.', 'spyropress' ), 'id' => 'meta_authorbox', 'type' => 'checkbox', 'options' => array( 1 => __( 'Enable author box.', 'spyropress' ), ), 'std' => '1' ), array( 'label' => __( 'Author Title', 'spyropress' ), 'desc' => __( 'Write the title.', 'spyropress' ), 'id' => 'authorbox_title', 'type' => 'text', 'std' => __( 'About the Author', 'spyropress' ) ), array( 'label' => __( 'Related Post', 'spyropress' ), 'type' => 'sub_heading' ), array( 'id' => 'related_post_enable', 'type' => 'checkbox', 'options' => array( 1 => __( 'Enable related Post.', 'spyropress' ), ), 'std' => '1' ), array( 'label' => __( 'Related Title', 'spyropress' ), 'desc' => __( 'Write the title.', 'spyropress' ), 'id' => 'related_post_title', 'type' => 'text', 'std' => __( 'Related Posts', 'spyropress' ) ), array( 'label' => __( 'Number Of items', 'spyropress' ), 'desc' => __( 'Set the number of related post.', 'spyropress' ), 'id' => 'related_post_number', 'type' => 'range_slider', 'max' => '20', 'min' => '1', 'std' => 4 ), array( 'label' => __( 'Related Post By', 'spyropress' ), 'desc' => __( 'Choose the tag or category to show related post.', 'spyropress' ), 'id' => 'related_post_by', 'type' => 'select', 'options' => array( 'post_tag' => __( 'Tag', 'spyropress' ), 'post_category' => __( 'Category', 'spyropress' ) ), 'std' => 'post_category' ) ); // End Blog Settings $spyropress_theme_settings['translate'] = array( array( 'label' => __( 'Translate', 'spyropress' ), 'type' => 'heading', 'slug' => 'translate', 'icon' => 'module-icon-docs' ), array( 'label' => __( 'General', 'spyropress' ), 'type' => 'sub_heading' ), array( 'desc' => __( 'Turn it off if you want to use .mo .po files for more complex translation.', 'spyropress' ), 'id' => 'translate', 'type' => 'checkbox', 'options' => array( 1 => __( 'Enable Translate', 'spyropress' ), ), 'std' => '1' ), array( 'label' => __( 'Home', 'spyropress' ), 'desc' => __( 'Breadcrumb and Menu', 'spyropress' ), 'id' => 'translate-home', 'type' => 'text', 'std' => 'Home' ), array( 'label' => __( 'Blog', 'spyropress' ), 'desc' => __( 'Blog Page Breadcrumb and Menu', 'spyropress' ), 'id' => 'translate-blog', 'type' => 'text', 'std' => 'Blog' ), array( 'label' => __( 'News', 'spyropress' ), 'desc' => __( 'News Single Page Breadcrumb and Menu', 'spyropress' ), 'id' => 'translate-news', 'type' => 'text', 'std' => 'News Single' ), array( 'label' => __( 'Protfilio', 'spyropress' ), 'desc' => __( 'Protfilio Single Page Breadcrumb and Menu', 'spyropress' ), 'id' => 'translate-protfilio', 'type' => 'text', 'std' => 'Single Project:' ), array( 'label' => __( 'Search', 'spyropress' ), 'desc' => __( 'Search result page Breadcrumb and Menu', 'spyropress' ), 'id' => 'search-titles', 'type' => 'text', 'std' => 'Search Results for « %s »' ), array( 'label' => __( 'Blog & Archives', 'spyropress' ), 'type' => 'sub_heading' ), array( 'id' => 'translate-comment', 'type' => 'text', 'label' => __('Comment', 'spyropress'), 'desc' => __('Text to display when there is one comment', 'spyropress'), 'std' => 'Response' ), array( 'id' => 'translate-comments', 'type' => 'text', 'label' => __('Comments', 'spyropress'), 'desc' => __('Text to display when there are more than one comments', 'spyropress'), 'std' => 'Responses' ), array( 'id' => 'translate-form-title', 'type' => 'text', 'label' => __('Comments Form Title', 'spyropress'), 'desc' => __('Text to display On comments form', 'spyropress'), 'std' => 'Leave a reply' ), array( 'id' => 'translate-comments-form-button', 'type' => 'text', 'label' => __('Comments Form button', 'spyropress'), 'desc' => __('Text to display On comments form button', 'spyropress'), 'std' => 'Submit Comment' ), array( 'id' => 'translate-comment-reply', 'type' => 'text', 'label' => __('Comments Reply Title', 'spyropress'), 'desc' => __('Text to display On comments reply button', 'spyropress'), 'std' => 'Reply' ), array( 'id' => 'translate-comments-off', 'type' => 'text', 'label' => __('Comments closed', 'spyropress'), 'desc' => __('Text to display when comments are disabled', 'spyropress'), 'std' => 'Comments are closed.' ), array( 'label' => __( 'Blog', 'spyropress' ), 'desc' => __( 'Blog', 'spyropress' ), 'id' => 'blog-title', 'type' => 'text', 'std' => 'Our Blog' ), array( 'label' => __( 'Category', 'spyropress' ), 'desc' => __( 'Archive', 'spyropress' ), 'id' => 'cat-title', 'type' => 'text', 'std' => 'Category: %s' ), array( 'label' => __( 'Tag', 'spyropress' ), 'desc' => __( 'Archive', 'spyropress' ), 'id' => 'tag-title', 'type' => 'text', 'std' => 'Tag: %s' ), array( 'label' => __( 'Day', 'spyropress' ), 'desc' => __( 'Archive', 'spyropress' ), 'id' => 'day-title', 'type' => 'text', 'std' => 'Daily: %s' ), array( 'label' => __( 'Month', 'spyropress' ), 'desc' => __( 'Archive', 'spyropress' ), 'id' => 'month-title', 'type' => 'text', 'std' => 'Monthly: %s' ), array( 'label' => __( 'Year', 'spyropress' ), 'desc' => __( 'Archive', 'spyropress' ), 'id' => 'year-title', 'type' => 'text', 'std' => 'Yearly: %s' ), array( 'label' => __( 'Archive', 'spyropress' ), 'desc' => __( 'Archive', 'spyropress' ), 'id' => 'archive-title', 'type' => 'text', 'std' => 'Archives' ), array( 'label' => __( 'Portfolio', 'spyropress' ), 'type' => 'sub_heading' ), array( 'label' => __( 'Description Title', 'spyropress' ), 'id' => 'portfolio_desc_title', 'desc' => __( 'Description title On Portfolio single page ', 'spyropress' ), 'type' => 'text', 'std' => 'Project Description' ), array( 'label' => __( 'Preview Title', 'spyropress' ), 'id' => 'portfolio_preview_title', 'desc' => __( 'Project link text title On Portfolio single page ', 'spyropress' ), 'type' => 'text', 'std' => 'Live Preview' ), array( 'label' => __( 'Error 404', 'spyropress' ), 'type' => 'sub_heading' ), array( 'label' => __( 'Title', 'spyropress' ), 'desc' => __( '404 - Page Not Found', 'spyropress' ), 'id' => 'error-404-title', 'type' => 'text', 'std' => '404 - Page Not Found' ), array( 'label' => __( 'Subtitle', 'spyropress' ), 'desc' => __( '404', 'spyropress' ), 'id' => 'error-404-subtitle', 'type' => 'text', 'std' => '404' ), array( 'label' => __( 'Text', 'spyropress' ), 'desc' => __( 'Error 404! Sorry, the page you requested was not found.', 'spyropress' ), 'id' => 'error-404-text', 'type' => 'text', 'std' => 'Error 404! Sorry, the page you requested was not found.' ), array( 'label' => __( 'Button', 'spyropress' ), 'desc' => __( 'Go To Homepage button', 'spyropress' ), 'id' => 'error-404-btn', 'type' => 'text', 'std' => 'Back to Home' ), );// END Translation $spyropress_theme_settings['plugins'] = array( array( 'label' => __( 'Settings', 'spyropress' ), 'type' => 'heading', 'slug' => 'plugins', 'icon' => 'module-icon-general' ), array( 'label' => __( 'Email Settings', 'spyropress' ), 'type' => 'sub_heading' ), array( 'label' => __( 'Sender Name', 'spyropress' ), 'desc' => __( 'For example sender name is "WordPress".', 'spyropress' ), 'id' => 'mail_from_name', 'type' => 'text' ), array( 'label' => __( 'Sender Email Address', 'spyropress' ), 'desc' => __( 'For example sender email address is wordpress@yoursite.com.', 'spyropress' ), 'id' => 'mail_from_email', 'type' => 'text' ), array( 'label' => __( 'WP-Pagenavi', 'spyropress' ), 'type' => 'toggle' ), array( 'label' => __( 'Text For Current Page', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_current_text', 'desc' => '%PAGE_NUMBER% - '.__( 'The page number.', 'spyropress' ), 'std' => '%PAGE_NUMBER%' ), array( 'label' => __( 'Text For Page', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_page_text', 'desc' => '%PAGE_NUMBER% - ' .__( 'The page number.', 'spyropress' ), 'std' => '%PAGE_NUMBER%' ), array( 'label' => __( 'Text For First Page', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_first_text', 'desc' => '%TOTAL_PAGES% - ' .__( 'The total number of pages.', 'spyropress' ), 'std' => '« First' ), array( 'label' => __( 'Text For Last Page', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_last_text', 'desc' => '%TOTAL_PAGES% - ' .__( 'The total number of pages.', 'spyropress' ), 'std' => 'Last »' ), array( 'label' => __( 'Text For Previous Page', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_prev_text', 'std' => '«' ), array( 'label' => __( 'Text For Next Page', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_next_text', 'std' => '»' ), array( 'label' => __( 'Text For Previous …', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_dotleft_text', 'std' => '…' ), array( 'label' => __( 'Text For Next …', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_dotright_text', 'std' => '…' ), array( 'label' => __( 'Page Navigation Text', 'spyropress' ), 'type' => 'sub_heading', 'desc' => __( 'Leaving a field blank will hide that part of the navigation.', 'spyropress' ), ), array( 'label' => __( 'Always Show Page Navigation', 'spyropress' ), 'type' => 'checkbox', 'id' => 'pagination_always_show', 'options' => array( 1 => __( 'Show navigation even if there\'s only one page.', 'spyropress' ), ) ), array( 'label' => __( 'Number Of Pages To Show', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_num_pages', 'std' => 5 ), array( 'label' => __( 'Number Of Larger Page Numbers To Show', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_num_larger_page_numbers', 'desc' => __( 'Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts.', 'spyropress' ), 'std' => 3 ), array( 'label' => __( 'Show Larger Page Numbers In Multiples Of', 'spyropress' ), 'type' => 'text', 'id' => 'pagination_larger_page_numbers_multiple', 'desc' => __( 'For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25', 'spyropress' ), 'std' => 10 ), array( 'type' => 'toggle_end' ), ); // END PLUGINS ?>