I found that in several php files: author-dashboard.php, wdpm-list-files-front.php, wpdm-add-new-file-front.php, and maybe more? There is a few lines of code:
$edit_url = $burl . '/edit-package/%d/';
if(get_post_meta(get_the_ID(),'__urlfix', true) == 1 || !get_option('permalink_structure'))
$edit_url = $burl.$sap.'adb_page=edit-package/%d/';
It is this If statement that is never running for some reason on my website. I removed the If statement and simply have:
$edit_url = $burl . '/edit-package/%d/';
$edit_url = $burl.$sap.'adb_page=edit-package/%d/';
Now it seems to work… Will this ruin any other areas of my website that I should be mindful of? Or is there another solution I’m not seeing?
Thanks!