This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Post type results ordering – Missing "product"

#9882
creativeroundcreativeround
Participant

I was able to fix it by modifying the file wd_post_type_sortable.class.php line 39 by changing public to “true”.

Can we update this in the next version?

[code]
$ptypes = array_merge(array("post", "page"), get_post_types(array(
"public" => true,
"_builtin" => false
), "names"));
[/code]