Home › Support › Image Store › Is it possible to remove the window size selection and quantity? › Reply To: Is it possible to remove the window size selection and quantity?
March 10, 2014 at 12:50 pm
#57064
jcharris
Participant
When I use the code in your docs example:
// Apply filter
function add_ims_before_order_form( $output, $ImStore ) {
return $output . “<p>my message</p>”;
}
add_filter(‘ims_before_order_form’, ‘add_ims_before_order_form’);
I’m not sure this is correctly documented.
I can append text to the form, but it doesn’t -replace- the html. IOW: regardless of what the filter returns it doesn’t overwrite the order_form, which is what I want to do.
Can you help?