04/29/2015 at 9:31 am
#332818
Keymaster
@ GTWD
re: I want to create a random order on page load for listings rather than alphabetical. How do I do that?
You would use the order_by shortcode option. It does not refresh on every page load, by design. See the note on the doc page for more details.
re: I also want to remove the words custom field in the listing. How do I do that?
Use CSS to hide it. Add the following to the theme’s custom CSS area:
.cn-entry-content-block-meta h3 {
display: none !important;
}
Hope that helps, let me know.
