paulovsky
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] Author role can’t upload using quick uploadThanks! I made it work thanks to your suggestions.
Forum: Plugins
In reply to: [Download Monitor] Add downloadI followed your instructions and it works as I intended now. Thank you!
hello
I have, only by logging in into another user and removing permissions for my (admin) user.
HR confidential information should *only* be available to HR managers.
Thank you! Can I suggest that you could review the UI so that the description stands below the title, as it helps to understand what is that the user is about to click on?
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Custom fields orderCan you please update your documentation on how to use the attribute?
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] custom fields orderThanks
Can you please provide an example?
thanks! I looked at the templates but as you said the ID is not wrapped with a CSS class or id, so these are beyond my abilities.
Forum: Plugins
In reply to: [Import external attachments] Custom Post Type Support@ollylama edit the file
import-internal-attachments.php
and find all the lines like the one below:$posts = get_posts( array( 'numberposts'=>-1, 'post_type' => array( 'post', 'page' ) ) );
change them to:
$posts = get_posts( array( 'numberposts'=>-1, 'post_type' => array( 'post', 'page', 'YOUR_POST_TYPE' ) ) );
this is only a fix. If the plugin gets updated you might have to do this again.
Forum: Plugins
In reply to: [Download Monitor] template tag to show uploaded dateThanks! It works!
Forum: Plugins
In reply to: [Download Monitor] Remove download count from siteYou can test it on your website. Follow the instructions above and it should work. If you are logged in, it will show a count of how many downloads. Logged out users won’t see it.
Forum: Plugins
In reply to: [Download Monitor] Remove download count from siteThen your template will have to have a conditional.
Instead of deleting the line that I mentioned, you can replace it with this:
if ( is_user_logged_in() ) { printf( _n( '1 download', '%d downloads', $dlm_download->get_download_count(), 'download-monitor' ), $dlm_download->get_download_count() ); } else { //no soup for you! }
please test it as I am not a developer.
Forum: Plugins
In reply to: [Edit Flow] Drafts not visible when plugin active (posts and pages)+1 here
had to turn off my plugins one by one in order to find the issue. Console shows no errors.
Forum: Plugins
In reply to: [Download Monitor] Remove download count from siteYou will have to create your own template. This page tells you how to do it: https://www.download-monitor.com/kb/overriding-content-templates/
For example, for the filename template, duplicate and copy to your theme folder the content-download-filename.php and delete this entire line:
(<?php printf( _n( '1 download', '%d downloads', $dlm_download->get_download_count(), 'download-monitor' ), $dlm_download->get_download_count() ) ?>)
- This reply was modified 7 years ago by paulovsky.
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] ghost draft ticketsgot it! the draft was accessible from the frontend, for some reason. From there I was able to go to the edit screen and close/delete the ticket from there.
- This reply was modified 7 years, 1 month ago by paulovsky.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] WPML compatibilityAwesome! thank you!