bhaldie
Forum Replies Created
-
Forum: Plugins
In reply to: [Memphis Documents Library] Redirect after uploadI hope to a have a new version released soon that will hopefully help with the redirect issue.
Forum: Plugins
In reply to: [Memphis Documents Library] Memphis documents upload displaytry using a default WordPress theme to see if the problem is theme related.
thanks, good to know.
can you take a look at your web logs and see if there is any errors there.
Forum: Plugins
In reply to: [Memphis Documents Library] 502 Bad Gateway Errorthere are many reasons that you could be getting a 502 error. One area to look for more information is taking a look at your web logs see if you see any errors there.
Here is a good site that talks about 504 errors in general and things that you can do to fix the problem:
Forum: Plugins
In reply to: [Memphis Documents Library] How to change color of Modified Date/Timeglad you figured it out ??
Forum: Plugins
In reply to: [Memphis Documents Library] NavBar style fixingthanks for the fix ??
Forum: Plugins
In reply to: [Memphis Documents Library] NavBar style fixingyou need to add this line somewhere in your themes css or better off inline:
flex-direction: row !important;
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to add documentsthat’s a different issue, please open another ticket tomorrow. This case is closed and a new version will be out soon that will fix this issue.
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to add documentsis this in the dashboard or frontend?
if its the dashboard you will need to change the code to below:
$the_permalink = ‘admin.php?page=memphis-documents.php&mdocs-cat=‘;
- This reply was modified 4 years, 6 months ago by bhaldie.
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to add documentsthat is what I expected good to hear, let me know if everything is okay and I will make it a bug fix for the next version of mDocs.
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to add documentsrestore it please
Forum: Plugins
In reply to: [Memphis Documents Library] Importing Documents (Keep Existing Files)this functionality doesn’t work so I disabled it.
Forum: Plugins
In reply to: [Memphis Documents Library] Redirect after uploadhead to mdocs dashboard > Options > Settings > and check Redirect is Blank
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to add documentslooking into it more that probably won’t work, try this instead:
starting at line 524:
OLDif(isset($post->ID)) { $redirect = get_option('mdocs-frontend-upload-redirect'); if($redirect == 0) $the_permalink = get_permalink($post->ID); else $the_permalink = ''; } else $the_permalink = 'admin.php?page=memphis-documents.php&mdocs-cat=';
NEW
if(isset($post->ID)) { $redirect = get_option('mdocs-frontend-upload-redirect'); if($redirect == 0) $the_permalink = get_permalink($post->ID); else $the_permalink = ''; $is_admin = false; // NEW LINE } else { // NEW LINE $the_permalink = 'admin.php?page=memphis-documents.php'; $is_admin = true; // NEW LINE } //NEW LINE