Pagination question and possible problem
The pagination code constructs a form to post refined search fields back to the server on each page link (which isn't great practice as it doesn't degrade gracefully with javascript turned off).
Regardless, looking at the code, I see that classipress constructs the form including the field name and id, which conflicts with the refine search widget that uses the same ids for its form fields and then screws up any javascript that tries to reference the field by id (which should be unique).
My question is: is there any reason the pagination form includes the id, or can it be removed? It's on about line 689 of appthemes-functions.php.
Code:
<input type="hidden" name="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $value ); ?>" />
should be
Code:
<input type="hidden" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $value ); ?>" />
Thanks.