Jump to content

avatco

Member
  • Posts

    9
  • Joined

  • Last visited

About avatco

avatco's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. thanks for your great answer brian ! exactly i need to convert date format to jalili in Template .tpl file , emails Template and sms module i just add |sdate to convert date format to jalali , i fix all files but i can not find any way to edit HomePage Panels i read your answer and links you send , i think it's better to keep them untouched and use USA date format instead of jalali brian thanks for your time to write , and great answer and sorry for my english i wish u good life
  2. hi how can i edit client area panels ( widgets ) and edit date format on this panels ? i want to add my SMARTY to edit date format on home panels like recent tickets , recent news check this picture : http://www.docs.modulesgarden.com/images/d/d5/Z2_21.png i want to edit date code below the items on recent news and recent tickets where are the php or tpl file of widgets panels ? sorry for my english !
  3. thanks for your help brian ..... i do it perfectly
  4. thanks for you help ! i use this code for all menus : <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimaryNavbar', 1, function(MenuItem $primaryNavbar) { if (!is_null($primaryNavbar->getChild('Home'))) { $primaryNavbar->getChild('Home') ->setIcon('fa-home'); } if (!is_null($primaryNavbar->getChild('Services'))) { $primaryNavbar->getChild('Services') ->setIcon('fa-bars'); } if (!is_null($primaryNavbar->getChild('Domains'))) { $primaryNavbar->getChild('Domains') ->setIcon('fa-globe'); } if (!is_null($primaryNavbar->getChild('Billing'))) { $primaryNavbar->getChild('Billing') ->setIcon('fa-credit-card'); } if (!is_null($primaryNavbar->getChild('Support'))) { $primaryNavbar->getChild('Support') ->setIcon('fa-support'); } if (!is_null($primaryNavbar->getChild('Open Ticket'))) { $primaryNavbar->getChild('Open Ticket') ->setIcon('fa-ticket'); } if (!is_null($primaryNavbar->getChild('Announcements'))) { $primaryNavbar->getChild('Announcements') ->setIcon('fa-newspaper-o'); } if (!is_null($primaryNavbar->getChild('Contact Us'))) { $primaryNavbar->getChild('Contact Us') ->setIcon('fa-phone'); } if (!is_null($primaryNavbar->getChild('Network Status'))) { $primaryNavbar->getChild('Network Status') ->setIcon('fa-plug'); } if (!is_null($primaryNavbar->getChild('Knowledgebase'))) { $primaryNavbar->getChild('Knowledgebase') ->setIcon('fa-mortar-board'); } }); and just one more question ? how can i set icon for sub menus like invoces , cart , downloads and more ?
  5. hi how can i add icons ( fontawesome icons ) to menu items add icon next to main menu item like home, announcement, contact us, support and ... can u please send me a example hook code for ? i can not find anything usefull in WHMCS documents
  6. Hi I'm using WHMCS version 6.3 What does "Invoicing Loop Service" mean in whmcs Crons output ? Starting Generating Invoices Invoicing Loop Service ID 7 - 1 of 4 Invoicing Loop Service ID 2 - 2 of 4 Invoicing Loop Service ID 6 - 3 of 4 Invoicing Loop Service ID 3 - 4 of 4 Invoicing Loop Domain ID 2 - 1 of 1 - 0 Invoices Created can you please explain about it ?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated