@ John
re: I added the View All link which is nice, however, when I click on it, it displays a 4 column index which is crowded. Would love to have a 2 column index. Is this possible?
Add the following to the theme’s custom CSS area:
#cn-names div#cn-list-body {
-moz-column-count: 2;
-moz-column-gap: 10px;
-webkit-column-count: 2;
-webkit-column-gap: 10px;
column-count: 2;
column-gap: 10px;
}
That’ll make it a 2 column layout.
re: Also, using the View All, it seems there is no way to get back to the main directory. Should there be some link to Go back to directory, like there is on individual entries?
Yes, there should be one… it is on my to do list.
re: Oh, one other thing. I noticed at the bottom of the pagination, it shows the numbers of the pages, however, the 4th page is just three dots and not the number 4. Can you help with that?
Click the next page link and it’ll show. The pagination uses the core WordPress pagination function in order to create the links. It’ll show the three first page links plus the last two and a next page link. When there is a span of pages, even if it is just one page, it’ll display the ellipses to represent those pages. It just so happens that you have 6 page which makes this awkward. My suggestion would be change the number of items display per page.
Hope that helps!