Jump to content

How to Select all the items?


Recommended Posts

I want to enable all the countries in Localization > Countries. I presume there's a easy way of checking all the items in the list in one go, but I can't find it.

 

There's no "Bulk Actions" drop-down, like there is in other parts of the BO. I don't really want to have to tick each country individually!

 

Thanks

Edited by benwiggy (see edit history)
Link to comment
Share on other sites

Goto your-shop/your-admin-folder/themes/default/template/helpers/list/list_header.tpl

 

Around line 264 you should see this code

	<th class="text-center">
	--
	</th>

Change it to this...

<th class="text-center">
							
<input type="checkbox" name="checkme" class="noborder" onclick="checkDelBoxes(this.form, '{$table}Box[]', this.checked)" />
						
</th>

Let us know if this works for you

Link to comment
Share on other sites

×
×
  • Create New...