Anders Posted March 19, 2020 Share Posted March 19, 2020 Hi again :) i wish to add a button on client area page see screenshot how can i do that? i also wonder if is possible to show that button only to registered users and if a user become and active product/service client then the button will not show? Regards Anders 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted March 20, 2020 Share Posted March 20, 2020 14 hours ago, Anders said: i wish to add a button on client area page see screenshot how can i do that? it would be helpful to see the screenshot! 🙂 14 hours ago, Anders said: i also wonder if is possible to show that button only to registered users and if a user become and active product/service client then the button will not show? yes. 0 Quote Link to comment Share on other sites More sharing options...
Anders Posted March 20, 2020 Author Share Posted March 20, 2020 sorry here is the pic 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted March 20, 2020 Share Posted March 20, 2020 2 minutes ago, Anders said: sorry here is the pic excellent choice of position - that is exactly where the ClientAreaHomepage hook would output it's HTML code. 🙂 15 hours ago, Anders said: i also wonder if is possible to show that button only to registered users and if a user become and active product/service client then the button will not show? <?php add_hook('ClientAreaHomepage', 1, function($vars) { $client = Menu::context('client'); $activeservices = $client->services->where('domainstatus','=','Active')->count(); if ($client && $activeservices == 0) { return '<div class="text-center"><a type="button" class="btn btn-primary btn-lg" href="cart.php">Buy Some Services!</a></div><br />'; } }); technically, I suppose "Buy Some Services" should be replaced by either an existing or custom language string, but I don't know what your intentions are for this button. 0 Quote Link to comment Share on other sites More sharing options...
Anders Posted March 20, 2020 Author Share Posted March 20, 2020 Wow you are amazing :) exactly what i needed you are the best. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.