Daniel981
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] Remove download count from site@projecttoday , that was a link to a screenshot of an example of how the links show up on my website. As Harish Chouhan mentioned, create a directory in your themes directory named “download-monitor” and upload a custom theme (like the one I gave the code to before) to the new directory just created. You can make your links look however you want, it’s just going to take a little tweaking until you get what you want.
Forum: Plugins
In reply to: [Download Monitor] Updating Download Monitor Deletes Custom TemplatesThat worked perfectly, thanks for the heads-up!
Forum: Plugins
In reply to: [Download Monitor] Remove download count from siteHere is an example of a custom template I created that does not show the download count.
<?php /** * Shows title with a PDF icon before */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly /** @var DLM_Download $dlm_download */ ?> <a class="download-link" title="<?php if ( $dlm_download->get_version()->has_version_number() ) { printf( __( 'Version %s', 'download-monitor' ), $dlm_download->get_version()->get_version_number() ); } ?>" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow"> <img src="/img/pdf_icon.gif" alt="PDF Icon" /> <?php $dlm_download->the_title(); ?> </a>You could copy the above text and save the file as content-download-pdf.php and upload it to wp-content/plugins/download-monitor/templates/ If you didn’t want the PDF icon included, then you would modify the code as needed.
Here is an example of how the links show: https://imgur.com/CKsCFOj
After reviewing this issue further, I found that there was a two line section in one of these files that could be the root of the issue. In the folder path of: wp-content/plugins/wp-click-track there is a file called template.inc.php. In that file, there are a couple of lines like the following:
if (!current_user_can('manage_links'))
wp_die(__("You do not have sufficient permissions to edit the links for this blog."));This is on line 122 & 123 (for my version of 0.7.3.) I simply commented out those two lines by adding two forward slashes and the plugin started working, without the “Link Manager” plugin being added.
So in template.inc.php replace:
if (!current_user_can('manage_links'))
wp_die(__("You do not have sufficient permissions to edit the links for this blog."));with:
// if (!current_user_can('manage_links'))
// wp_die(__("You do not have sufficient permissions to edit the links for this blog."));Again, I am NOT the developer but this worked for me. Use at your own risk; I have no known knowledge of what ramifications this may cause. From what I can tell, however, is that the “Link Manager” is a feature that used to be built into WordPress, but has since been retired. Hopefully the developer can comment as to whether this is a viable solution or not. But for now, I’m going to continue with this and just monitor this for any issues. So far, it’s working fine on a site with a good amount of traffic.
@garymgordon – I understand your position and frustration… But this is a free plugin; not one that you had to pay for – so to expect the same support as a premium plugin I feel is unjust. WordPress is driven by community helping one another out, same goes for these plugins I feel. We really don’t know what the situation with the developer is. Maybe they lost interest (which would be sad, you’re right). But then again, maybe they’re dealing with some personal issue right now and not able to dedicate any free time to this plugin. Maybe their just busy with their actual job. We don’t know. I just don’t feel it’s right to criticize the developer for not fixing this right away. A little patience goes a long way… Hope you understand where I’m coming from.
Found a fix that worked for me… Install the plug-in called “Link Manager,” activate it, and your “WP-Click-Tracker” should work again (assuming your user has rights to manage links.) This worked for me, hope it works for you too!
Link Manger: http://wordpress.org/extend/plugins/link-manager/
Take care,
Daniel
Same issue here…
WP: 3.5.1
WP-CT: 0.7.3This happened after I updated both WP & WP-CT.
Forum: Fixing WordPress
In reply to: Upgraded to 2.3.1 – Lost tool bar for TinyMCESo I was searching for forum and found this:
http://wordpress.org/support/topic/101817?replies=71They suggested that you REMOVE the WWW. in the options of your site for your blog address and website address.. I did the exact opposite and added WWW and now all is fine. WEIRD….
Forum: Fixing WordPress
In reply to: Upgraded to 2.3.1 – Lost tool bar for TinyMCEAny ideas anyone?
Forum: Fixing WordPress
In reply to: No WYSIWYG editor after upgrade to 2.3.1This did not resolve the issue I’m having.
Forum: Fixing WordPress
In reply to: No WYSIWYG editor after upgrade to 2.3.1I’m having the same problem as you. If you find the solution, please post it. I will do the same as well.
I’ve made a post as well, so check that too to see if someone has come up with a solution:
http://wordpress.org/support/topic/140865?replies=1