i want to show the prive in / month format as attribute is showing in screenshot
the same format like label : price /month in primary as well as tier format also
please can you simple code for that or help me how can i do that please its
You can try this code snippet Change the price display format for bookable listings #hivepress #listings #bookings · GitHub
P.S. If you purchased a theme or extension, please enter the license key in the forum profile settings, this will enable the Premium Support badge and ensure a 24-hour turnaround time.
i tried but its not showing the format label Rent like showing in attribute it showing value /mon only
its not showing label rent
Hi,
If I understand you correctly, please use this PHP snippet:
add_filter(
'hivepress/v1/models/listing/fields',
function( $fields, $model ) {
if ( isset( $fields['price'] ) ) {
$fields['price']['display_template'] = '%label%: %value% / day';
}
return $fields;
},
1000,
2
);
sorry The ventor in not able change the day from month
i want the ventor who is listing can change as they need from /day to / month
that is not happening in this php code
please help me
as the ventor who is listing can change between day and month as they need and they want to list
Hi,
Sorry, there’s no simple code snippet for this, it would require a custom implementation. If customizations beyond the available features are required for your site, please consider hiring someone for custom work https://fvrr.co/32e7LvY
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.