cloud22 Posted August 6, 2020 Share Posted August 6, 2020 In the shopping cart at the bottom it says highlighted in yellow " Have questions? Contact our sales team for assistance. Click here" How can I remove that? I have the "Plus" license. I am using a slightly modified version of the Six theme. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted August 7, 2020 Share Posted August 7, 2020 16 hours ago, cloud22 said: In the shopping cart at the bottom it says highlighted in yellow " Have questions? Contact our sales team for assistance. Click here" How can I remove that? I have the "Plus" license. I am using a slightly modified version of the Six theme. if you were thinking of purely changing the text, then you could use Language Overrides for that. however, if you're thinking of removing it entirely, then you're looking at using one of three options... edit the configureproduct.tpl template and remove the <div> that contains this info box. <div class="alert alert-warning info-text-sm"> <i class="fas fa-question-circle"></i> {$LANG.orderForm.haveQuestionsContact} <a href="contact.php" target="_blank" class="alert-link">{$LANG.orderForm.haveQuestionsClickHere}</a> </div> ... though if you do this, you would manually have to update the template again after every upgrade. you could use custom CSS... #order-standard_cart .info-text-sm {display: none !important;} .. though that might get applied to the div box in domainoptions.tpl too. you could use an action hook to specifically add the custom css only to the configureproduct.tpl template - that would have the advantage of being able to specify only this info box. 1 Quote Link to comment Share on other sites More sharing options...
cloud22 Posted August 7, 2020 Author Share Posted August 7, 2020 This is excellent. Thank you very much for your help! 😀 I considered the CSS option, but wasn't sure it would conflict with other status messages. But if it only will affect domainoptions.tpl then it doesn't matter as I am not selling domains. Thank you again. May you and your family be happy and prosperous! 0 Quote Link to comment Share on other sites More sharing options...
ghmercado Posted January 26, 2024 Share Posted January 26, 2024 (edited) Hi i'd like to revisit this. I am using twenty-one, and i do not have configureproduct.tpl. I'd like to either delete "Have questions? Contact our sales team for assistance. Click here" OR change the link of 'CLICK HERE' to another contact page. Help appreciated thanks so much. >> a few moments later << oops i found this: and now it redirects to a form. issue resolved! Edited January 26, 2024 by ghmercado 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.