Hi,
You can do it by overriding the "hikashop_popup_render" function.
www.hikashop.com/support/documentation/6...tation.html#override
Like the other function override, this "hikashop_popup_render" return the code for the notice popup.
By default his code is:
function hikashop_popup_render() {
return '<div style="display:none;">'.
'<a rel="{handler: \'iframe\',size: {x: 480, y: 140}}" id="hikashop_notice_box_trigger_link" href="'.hikashop_completeLink('checkout&task=notice'.$url_itemid,true).'"></a>'.
'<a rel="{handler: \'iframe\',size: {x: 480, y: 140}}" id="hikashop_notice_wishlist_box_trigger_link" href="'.hikashop_completeLink('checkout&task=notice&cart_type=wishlist'.$url_itemid,true).'"></a>'.
'</div>';
}
In this code you will find the size of this popup.
It is a system that we want to improve in the future but for the moment, you have to use the same technique than the other overrides explained in the developer documentation.
Regards,