• Resolved unaimendieta

    (@unaimendieta)


    Hi,
    Is there a way to dynamically change number using code?
    I have a wordpress page in which different vendors sell products and what I want to achieve is that the contact number of the corresponding vendor appears on each product page.
    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author bhvreddy

    (@bhvreddy)

    Hi,

    We can change the number at page level.
    https://holithemes.com/plugins/click-to-chat/change-values-at-page-level/

    Exact vendor specfic option is not there direclty.

    An e.g. to change the number.
    please add your vendor specific logic to change the number.

    Before updating the code in product sites. please test in development enviroment

    add_filter( 'ht_ctc_fh_chat', function($ht_ctc_chat) {
    
        // to change the number - please add the number here with vendor specific logic
        $ht_ctc_chat['number'] = '';
    
        return $ht_ctc_chat;
    } );

    Have a nice day,
    Thank you

Viewing 1 replies (of 1 total)

The topic ‘Change number dynamically’ is closed to new replies.