Jump to content

mmifda

Member
  • Posts

    4
  • Joined

  • Last visited

About mmifda

mmifda's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Hi all, I am looking to make the user sign up email and password the credentials of the service they order. I am only allowing one service per client so this wouldn't create any issues. what would be the way to go about this? fetch the data from the database or is there a better way. thanks a lot
  2. How do I make a hook that limits the number of services per account, very usefull for free trials etc. thanks in advance
  3. Hi, I don't understand the purpose of email verification if the lack of verification doesn't prevent the customer from doing anything. I offer free trial service and I would like to limit order placement to only verified email addresses, my question is: how do I prevent orders from being placed for non verified emails. thanks
  4. I am able to remove menu items from primary navigation bar through hooks, but I can't edit anything to do with "account" menu or child items, it seems as it is not part of the primary navbar this is the hook I tried and doesn't work add_hook('ClientAreaSecondaryNavbar', 1, function (MenuItem $secondaryNavbar) { if (!is_null($secondaryNavbar->getChild('Account'))) { $secondaryNavbar->getChild('Account')->removeChild('Account'); } });
×
×
  • 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