rem_agent_page_slider_style
This filter is responsible for the property listing style that displays in a slider, on the Agent Template.
Arguments
- Listing Style [integer]
Example
Suppose, you want to change this style to Style 6. You will use the following code inside your theme’s functions.php file.
add_filter( 'rem_agent_page_slider_style', 'rem_agent_page_slider_style', 10, 1 ); function rem_agent_page_slider_style($style){ return 6; }