Common Questions and Answer are for quick solution.

Q 1. How to Enable Registration?

Step 1: First Enable Registration from WordPress Settings => General

Enable user registration from WordPress

Step 2: Enable account creation from “Classified Listing” plugin Settings => Account & Policy (tick Account Creation)

2) How to make Store opening hrs 24 hrs time?

You can do this by a hook write this code in your theme function.php

add_filter( 'rtcl_store_time_options', 'add_rtcl_store_time_options' );
function add_rtcl_store_time_options( $options ) {
return $options = [
'showMeridian' => false
];
}

Editorial Staff

administrator, bbp_keymaster, edd_subscriber