The shortcode [jobmate_job_search_filter] is used to display job search filters on any post or page. This shortcode allows customization of the filter layout and appearance through different parameters. Below are the key parameters:
form_layout
- Defines the layout of the search filter form. The plugin offers the following layout options:
- vertical: Displays the search filter fields stacked vertically, one below the other.
- horizontal: Displays the search filter fields arranged horizontally, side by side.
background_color
- This parameter allows you to set a custom background color for the search filter form. The color is defined using a hex code.
- Example:
background_color="#377e8a"sets the background color of the filter form to a teal-like color.
label_color
- Allows you to customize the color of the labels (text above or beside the input fields) in the search filter form.
- Example:
label_color="#fff"sets the label color to white.
Example Shortcodes:
[jobmate_job_search_filter form_layout="vertical"]
Displays the search filter in a vertical layout (fields stacked vertically).

[jobmate_job_search_filter form_layout="horizontal"]
Displays the search filter in a horizontal layout (fields arranged side by side).

[jobmate_job_search_filter form_layout="vertical" background_color="#377e8a" label_color="#fff"]
Displays the search filter in a vertical layout with a teal background color (#377e8a) and white labels (#fff).

[jobmate_job_search_filter form_layout="horizontal" background_color="#377e8a" label_color="#fff"]
Displays the search filter in a horizontal layout with a teal background color (#377e8a) and white labels (#fff).

These parameters allow you to style the job search filter form to fit the design and layout preferences of the page.
