Developer hooks

Hook name: propertyhive_qr_code_width

Hook type: Filter

Description: Customise the QR code image width.

Default: 200

Example usage:

add_filter( 'propertyhive_qr_code_width', 'custom_qr_width' );
function custom_qr_width( $width ) 
{
    return 400;
}

Hook name: propertyhive_qr_code_height

Hook type: Filter

Description: Customise the QR code image height.

Default: 200

Example usage:

add_filter( 'propertyhive_qr_code_height', 'custom_qr_height' );
function custom_qr_height( $width ) 
{
    return 400;
}