Summarize with:

On This Page

    [vc_row][vc_column][vc_column_text]Common Questions and Answer are for quick solution.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_toggle title=”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)

    [/vc_toggle][vc_toggle title=”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
    ];
    }
    
    

    [/vc_toggle][/vc_column][/vc_row]