Claudio, tem como eu consultar o nome do titular do cartão?
No ramo em que atuamos, esta é uma informação importante.
Use this on your theme CSS code:
/*Not show in mobile*/
@media (max-width: 1000px) {
.cm-popup-modal{ display:none!important; }
}
Works great for me! Thanks!!!
So, in the end, thats the code:
$menu_item_array = explode(‘#’, $menu_item->url);
$menu_item_url = ”;
if(!empty($menu_item_array[1])){
$menu_item_url = ‘#’.$menu_item_array[1].’#’;
}
God bless you guys!