Sort order in Woocommerce by Time taken in META
-
Hi there, great plugin, really like it thanks.
Is there a way to order the image ‘products’ in order by the images date taken meta data (EXIF)?
We are uploading a big event with thousands of images, and as they are being batch uploaded, we cannot keep the order in any kind of meaningful to the users.
This would be a great implementation.
Thanks!
-
Hey solosails – it would be possible if the EXIF data taken information was retrieved by Symbiostock, which it is currently not, as it is not used anywhere.
However, if it were added, you would refer to this documentation:
https://codex.www.ads-software.com/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
To order your results by this custom post meta field. I can’t tell you the name because it hasn’t been implemented yet. You could try to enable this yourself by editing the Symbiostock code – the metadata should be read in tools-ftp.php, but you will have to know the exact name of the field, how exiftool retrieves it, and alter a few functions to get it working.
As we are getting a lot of custom requests like the one you mentioned, we are in the process of creating a paid support system whereby for small tasks like these, we would charge a one time $10-$20 fee for priority work. It just takes too much time to do custom work given how small our open-source team currently is.
Let me know if you have additional questions – thanks.
Hi,
Thanks for the speedy reply and the great starters!
I had a bit of a search around for the topic and found some useful, but no conclusive threads. It seems that <?php wp_get_attachment_metadata( $attachment_id, $unfiltered ); ?> Might be a starting point for adding a woocomerce ‘order by’ hack, but I’m not a good enough coder to get to the bottom of implementing this without a few days spare time.
Your fee for a implementation sounds very reasonable to say the least, please let me know when this service is running.
I do think it would be a useful addition for future versions anyway though!
Cheers and thanks again for the great plugin.
Hey Solosails,
That’s some good research! Unfortunately, it would not work for you in this case as the WordPress, watermarked images have timestamps that won’t match the timestamps of your original files.
We will try to get the paid support system going soon.
Thanks.
Hi again, thanks for getting back to me.
That’s a pity!
Is there any way you can make symbiostock utilise the exit time data by standard? I think it makes sense in general for a stock photo system to have exif search capability.
I hope you have time to implement this!
Thanks again for your advice, and thanks for the great plugin!
Cheers.
This is an update on the progress of this thread which I’m pleased to say through the excellent support of the Symbiostock team, we now have fully functioning!
The following might help others wishing to also add the ability to sort by EXIF time/date taken in the woocommrece front end.
The first step is to assign the required EXIF data in Symbiostock settings (a new feature) …
go to – symbiostock/settings/Read Extra Metadata
Add >> “DateTimeOriginal” [without Quotes]
This will add the “ss_exif_DateTimeOriginal” meta and corresponding EXIF date/time value as a custom meta entry for every new image product uploaded.
(If you need to apply this to all of your previous image products, check the box “Force Reading of Extra Metadata” which will add the new meta data automatically to 1000 images per day in your back catalogue. (remember to de-select this once all images have been updated))
Next you need to add the following code to your active theme’s functions.php …
* Adds WooCommerce catalog sorting options using postmeta, such as custom fields **/ function symbiostock_add_postmeta_ordering_args( $sort_args ) { $orderby_value = isset( $_GET['orderby'] ) ? wc_clean( $_GET['orderby'] ) : apply_filters( 'woocommerce_default_catalog_orderby', get_option( 'woocommerce_default_catalog_orderby' ) ); switch( $orderby_value ) { // Name your sortby key whatever you'd like; must correspond to the $sortby in the next function case 'File-Time-Asc': $sort_args['orderby'] = 'meta_value'; // Sort by meta_value because we're using alphabetic sorting $sort_args['order'] = 'asc'; $sort_args['meta_key'] = 'ss_exif_DateTimeOriginal'; // use the meta key you've set for your custom field, i.e., something like "ss_exif_DateTimeOriginal" break; case 'File-Time-Desc': $sort_args['orderby'] = 'meta_value'; // We use meta_value_num here because points are a number and we want to sort in numerical order $sort_args['order'] = 'desc'; $sort_args['meta_key'] = 'ss_exif_DateTimeOriginal'; break; } return $sort_args; } add_filter( 'woocommerce_get_catalog_ordering_args', 'symbiostock_add_postmeta_ordering_args' ); // Add these new sorting arguments to the sortby options on the frontend function symbiostock_add_new_postmeta_orderby( $sortby ) { // Adjust the text as desired $sortby['File-Time-Asc'] = __( 'Sort by: Time Taken Asc', 'woocommerce' ); $sortby['File-Time-Desc'] = __( 'Sort by: Time Taken Desc', 'woocommerce' ); return $sortby; } add_filter( 'woocommerce_default_catalog_orderby_options', 'symbiostock_add_new_postmeta_orderby' ); add_filter( 'woocommerce_catalog_orderby', 'symbiostock_add_new_postmeta_orderby' );
That’s it! You should now have two new options in the woocommerce’s ‘sort by’ drop down box allowing you to sort images by EXIF time taken in ascending and descending order.
You can modify these setting as you like to order by any of the EXIF values that your camera may output (and hasn’t been stripped by any editing software).
Of course we immediately found out subsequently that one of our photographers had his camera’s date set to a previous year, which totally screws up the whole principle! so that is a lesson learned – make sure your camera’s setting are up to date!
Hope this helps other users – Thanks again to the Symbiostock team for their awesome support and speedy implementation of this function.
If you would like to show the time data in the shop category and tag etc pages under each image, as well as in the single product image, you can add the following to your functions.php …
// Add custom field to shop loop add_action( 'woocommerce_after_shop_loop_item_title', 'ins_woocommerce_product_excerpt', 1, 2); if (!function_exists('ins_woocommerce_product_excerpt')) { function ins_woocommerce_product_excerpt() { global $post; if ( is_home() || is_shop() || is_product_category() || is_product_tag() ) { echo '<span class="excerpt">'; echo "Taken : ", get_post_meta( $post->ID, 'ss_exif_DateTimeOriginal', true ); echo '</span>'; } } } // Add Time taken to single product page add_action( 'woocommerce_single_product_summary', 'add_custom_field', 5, 2 ); function add_custom_field() { global $post; echo "Taken : ", get_post_meta( $post->ID, 'ss_exif_DateTimeOriginal', true ); return true; }
- The topic ‘Sort order in Woocommerce by Time taken in META’ is closed to new replies.