Archives can be customized with the addition of new Avada Taxonomy Options. Sliders can now be assigned to archive pages as well as header background color, header transparency, page content padding and page title bar options. Please continue reading below for more info.
Avada Taxonomy OptionsOn your archives pages such as Post Categories, Portfolio Categories, etc. (please see list below for the the other taxonomies these options are available for), you can find Avada Taxonomy Options section. See this Avada Freelance Demo example using the Avada Taxonomy Options which was set up via Portfolio > Portfolio Categories > Avada Taxonomy Options.
Slider Type – Illustrated as A. Controls the type of slider to be displayed. Choose between No Slider, LayerSlider, Avada Slider, Slider Revolution, or Elastic Slider.
Select *Slider – Illustrated as B. Controls the unique name of the slider. This option will not show up if you choose No Slider for the 『Slider Type』 option. *This varies depending on the selected slider type.
Slider Position – Illustrated as C. Controls if the slider shows below or above the header. Only works for top header position. Choose between Default, Below, or Above. Default value comes from Theme Options > Header > Header Content > Slider Position.
Page Content Top Padding – Illustrated as D. Controls the top padding of the page content in pixels. Default value comes from Theme Options > Layout > Page Content Padding.
Page Content Bottom Padding – Illustrated as E. Controls the bottom padding of the page content in pixels. Default value comes from Theme Options > Layout > Page Content Padding.
Header Background Color – Illustrated as F. Controls the background color for the header using hex code or rgba value.
Page Title Bar Background – Illustrated as G. Controls an image to use for the page title bar background. This can be set globally from Theme Options > Page Title Bar > Page Title Bar > Page Title Bar Background Image.
Page Title Bar Height – Illustrated as H. Controls the height of the page title bar in pixels. Default value comes from Theme Options > Page Title Bar > Page Title Bar > Page Title Bar Height.
Page Title Bar Mobile Height – Illustrated as I. Controls the height of the page title bar on mobile in pixels. Default value comes from Theme Options > Page Title Bar > Page Title Bar > Page Title Bar Mobile Height.
List of Taxonomies these options are available for:Post CategoryPortfolio CategoryPortfolio TagsPortfolio SkillsEvent CategoryEvent TagsFAQs CategoryProduct CategoryProduct TagTopic TagHow To Hook Avada Taxonomy Options Into Your Own Custom Post TypesIn order to have our taxonomy options added to certain or all taxonomies for a CPT, the fusion_tax_meta_allowed_screens filter can be used. The filter can be hooked on through the functions.php of a child theme or within a plugin.
Usage example:
Copy to Clipboardadd_filter( 'fusion_tax_meta_allowed_screens', 'add_taxonomy_options_to_cpt_taxonomies' );
function add_taxonomy_options_to_cpt_taxonomies( $taxonomies ) {
$taxonomies[] = 'slug_of_my_cpt_taxonomy_1';
$taxonomies[] = 'slug_of_my_cpt_taxonomy_2';
return $taxonomies;
}x 1add_filter( 'fusion_tax_meta_allowed_screens', 'add_taxonomy_options_to_cpt_taxonomies' );23function add_taxonomy_options_to_cpt_taxonomies( $taxonomies ) {4 $taxonomies[] = 'slug_of_my_cpt_taxonomy_1';5 $taxonomies[] = 'slug_of_my_cpt_taxonomy_2';67 return $taxonomies;8}