• Resolved beamkiller

    (@beamkiller)


    Hi,

    Is there a way to automatically open the The product fixed prices rules part on pageload? So all the prices are visible by default.



Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support mediawebster

    (@mediawebster)

    Hello

    Unfortunately the plugin does not have such a feature, you need code customization

    In file woocommerce-currency-switcher\views\fixed\product_price_data.php please add code – https://share.pluginus.net/image/i20240108135711.png

    style=”display: block;”

    Thread Starter beamkiller

    (@beamkiller)

    Hi,

    Thanks for the suggestion.
    I have added it via CSS so it is update-proof.

    function add_custom_currency_css_to_admin() {
        ?>
        <style type="text/css">
          div[id*="woocs_tab_fixed_"]{
            display:block !important;
          }
        </style>
        <?php
      }
      add_action('admin_head', 'add_custom_currency_css_to_admin');
    Plugin Support mediawebster

    (@mediawebster)

    Hello

    Great! Welcome;)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘The product fixed prices rules open on pageload’ is closed to new replies.