Thanks for the quick update. Updating to 7.3.7 fixed the issue for me.
@wfmattr addding the ThreadStackSize to httpd.conf resolved the issue for me as well.
Thanks,
I was reading another post similar to this thread where they changed the slug for the single page.
https://wordpress.org/support/topic/permalink-slug-1
function child_canvas_override_features_slug() {
return 'newslug';
}
add_filter('woothemes_features_single_slug','child_canvas_override_features_slug');
I used the same approach and just changed the filter for the archive slug.
function child_canvas_override_features_slug() {
return 'newslug';
}
add_filter('woothemes_features_archive_slug','child_canvas_override_features_slug');
Worked Great!! I did have to go to Dashboard > Settings > Permalinks > Save Changes for my new permalinks to work.