Chart of Account - Settings

Hi,

When I open the chart of accounts page, the following blocks are (for me) pre-opened:

  • Sales
  • Purchases
  • Direct Expenses
  • Overheads

and the following 2 blocks are closed:

  • Assets and Liabilities
  • Capital and Reserves

I’m wondering if there is a setting somewhere that I can set to have all bocks closed when I go to that page? Like the image below:

image

Thanks

Hi @Darren_Smith,

If you have a Power User Subscription then this is possible to do :slight_smile:

Hi,

One of my clients has a power user subscription:

image

Could you let me know how I can do this for them?

Thanks

Hi @Darren_Smith,

You can do it using some custom script:

Account Settings > Design Customisation > Advanced CSS & HTML Customisation > Select Custom Scripts

Then add:

$(document).ready(function() {
   $('.expColSales, .expColPurchases, .expColExpenses, .expColOverheads').trigger('click');
});

This will result in this view:

Hi Beth,

I did what you said, I activated the custom script, logged out and back in again but it didn’t work.

I did the custom script again:

image

I noticed the triangle warning in the corner:

image

I’m not sure what this means!

Hi @Darren_Smith

There was a slight formatting issue in @QFBeth’s post above which hid one of the lines in the code - apologies for that.

I’ve just corrected this, so if you could copy and paste the code again, that should work as expected.

Hi,

Working now, Thanks :slight_smile:

This topic was automatically closed after 7 days. New replies are no longer allowed.