Title: unity100's Replies | WordPress.org

---

# unity100

  [  ](https://wordpress.org/support/users/unity100/)

 *   [Profile](https://wordpress.org/support/users/unity100/)
 *   [Topics Started](https://wordpress.org/support/users/unity100/topics/)
 *   [Replies Created](https://wordpress.org/support/users/unity100/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/unity100/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/unity100/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/unity100/engagements/)
 *   [Favorites](https://wordpress.org/support/users/unity100/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Professional Social Sharing Buttons, Icons & Related Posts - Shareaholic] Sneaky, misleading, bloated and compromises privacy!](https://wordpress.org/support/?post_type=topic&p=7928012)
 *  [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [11 years, 1 month ago](https://wordpress.org/support/?post_type=topic&p=7928012#post-7928112)
 * if developers were compensated enough for the effort that goes into such big 
   plugins, no one would feel the need to resort to such methods…
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Professional Social Sharing Buttons, Icons & Related Posts - Shareaholic] Sneaky, misleading, bloated and compromises privacy!](https://wordpress.org/support/?post_type=topic&p=7928012)
 *  [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [11 years, 1 month ago](https://wordpress.org/support/?post_type=topic&p=7928012#post-7928110)
 * ‘against the ethos of wordpress and the world-wide open source community’
 * yeah, they should provide plugins that cost thousands of man-hours to develop
   and test over many years for free, without expecting any compensation. because
   that is how the world just works. when you go to grocer’s, the grocer will also
   provide you with food without expecting anything back…
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WP-PageNavi] Disapointed!!!!](https://wordpress.org/support/topic/disapointed-2/)
 *  [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/disapointed-2/#post-7894201)
 * nothing wrong with the plugin. either your computer or your website is infected
   with an ad virus.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Performance impact](https://wordpress.org/support/topic/performance-impact/)
 *  [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/performance-impact/#post-4770202)
 * Im also interested in answer to this question.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Replacing/Overriding comments_template() from plugin](https://wordpress.org/support/topic/replacingoverriding-comments_template-from-plugin/)
 *  Thread Starter [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/replacingoverriding-comments_template-from-plugin/#post-4716031)
 * Never mind i found it by examining other plugins :
 * After overriding it with
 * add_filter( “comments_template”, “my_custom_function”,0 );
 * your function must return a comments.php from whever yo pick :
 * return dirname(__FILE__) . ‘/comments.php’;
 * this overrides comments totally.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author: WP Symposium] Can Wp Symposium take over Blog Comments ?](https://wordpress.org/support/topic/can-wp-symposium-take-over-blog-comments/)
 *  Thread Starter [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/can-wp-symposium-take-over-blog-comments/#post-4713584)
 * i already did and i didnt find it helpful at all – in forums relevant to changing
   anything or modifying, there is little info, and they are for quite simple modifications.
   and in the tutorials section that can be found, there are a few modification 
   tutorials listed, but anything like list of hooks, functions, classes or anything
   of the sort is not found.
 * i cant spend days going through the code and learn its intricacies even though
   im a professional developer by trade. i guess ill have to skip on your plugin
   and write my own small plugin to replace comments and double as a forum.
 * ty.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author: WP Symposium] Can Wp Symposium take over Blog Comments ?](https://wordpress.org/support/topic/can-wp-symposium-take-over-blog-comments/)
 *  Thread Starter [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/can-wp-symposium-take-over-blog-comments/#post-4713580)
 * such a potential for improvement and yet it doesnt have ?
 * anyway – how much modification is required – are there ready made hooks in your
   plugin for that ? if not, what hooks in wp would suffice to effect this ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] [Plugin: Easy Digital Downloads] How to prevent direct downloads?](https://wordpress.org/support/topic/plugin-easy-digital-downloads-how-to-prevent-direct-downloads/)
 *  [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-easy-digital-downloads-how-to-prevent-direct-downloads/#post-2833292)
 * Scratch that – it was because of directoryindexes – index.html was being served
   by apache before index.php, and therefore when your plugin did a request to domain.
   com/?download…… the request was naturally sent to domain.com/index.html?download…..
 * and since there was a html redirection set up in that index.html page, it was
   redirecting to another page.
 * This was a server specific issue. but other users may get affected by the same
   thing since hosts may leave the default file for directoryindex as index.html
 * maybe you should process download clicks not from domain.com/?download…. but 
   instead submit the request to a custom page you create through the plugin – like
   the download pages etc it creates.
 * anyway good evening. im out.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] [Plugin: Easy Digital Downloads] How to prevent direct downloads?](https://wordpress.org/support/topic/plugin-easy-digital-downloads-how-to-prevent-direct-downloads/)
 *  [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-easy-digital-downloads-how-to-prevent-direct-downloads/#post-2833290)
 * EDD doesnt detect if i give an absolute path to a file outside webroot for a 
   download and serve it. instead it just redirects it to the page where download
   process was started by adding the file to a basket.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Google+ plugin] Does not auto-post to google page](https://wordpress.org/support/topic/does-not-auto-post-to-google-page/)
 *  Thread Starter [unity100](https://wordpress.org/support/users/unity100/)
 * (@unity100)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/does-not-auto-post-to-google-page/#post-2779874)
 * By the way, does this plugin even post automatically to google+ pages ?! Or am
   i mistook it for something else ?

Viewing 10 replies - 1 through 10 (of 10 total)