Hello.

Please I need help with the following:
How do I get some module buttons to open on new pages? (target="_blank")

Thank you.

    Hi Joohmla,
    You can add the following JS to the Dashboard > Systems > Site template styles > Select template > Global Settings > Custom Code > Before</body>

    <script>
    jQuery(document).ready(function($) {
        $('.target-blank .btn').attr('target', '_blank');
    });
    </script>

    To add target="blank"_ to a button, open the desired module, go to the Advanced tab, and enter the target-blank class in the Module Class field.

      dominic

      In some modules your solution worked well. But for example in the "social" and "Talk to our experts now" modules it does not work.

        Hi Joohmla,
        Some styles of the ACM module do not support adding custom classes. To add target="_blank" to the social links in the JA ACM module, follow these steps:

        • Open the file located at /templates/ja_vitality/acm/social/tmpl/style-1.php.
        • Go to line 24.
        • From there, you can modify the code to include target="_blank" as needed.
          <a href="<?php echo $helper->get('link', $i) ;?>" title="<?php echo $helper->get('title', $i) ;?>" target="_blank">

        Please provide more details about the specific position where you want to add target="blank"_ and include a screenshot for reference.
        Currently, I cannot access your backend. Could you send me the .htaccess file and the admin account details so I can assist you further?

        Write a Reply...
        You need to Login to view replies.