Title: Eugen Oprea's Replies | WordPress.org

---

# Eugen Oprea

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/echoelse/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/echoelse/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Premise iDevAffiliate Integration] membership plugi with iDevAffiliate](https://wordpress.org/support/topic/membership-plugi-with-idevaffiliate/)
 *  Plugin Author [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/membership-plugi-with-idevaffiliate/#post-4064166)
 * Regarding this, please get in touch with me here: [http://www.eugenoprea.com/contact/](http://www.eugenoprea.com/contact/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Premise iDevAffiliate Integration] Technical Error](https://wordpress.org/support/topic/technical-error/)
 *  Plugin Author [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/technical-error/#post-4108602)
 * Hey Hamidu, I am sorry to hear that you had issues with this.
 * You will have to deactivate the plugin or even delete it via FTP from your WordPress
   installation. You can find it in wp-content/plugins.
 * Once you do that please try again the newest version and let me know how it goes.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Premise iDevAffiliate Integration] membership plugi with iDevAffiliate](https://wordpress.org/support/topic/membership-plugi-with-idevaffiliate/)
 *  Plugin Author [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/membership-plugi-with-idevaffiliate/#post-4064163)
 * Yes, this plugin actually integrates iDevAffiliate with Premise, which is a membership
   plugin. Hope this helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Digg Digg] [Plugin: Digg Digg] exclude from page](https://wordpress.org/support/topic/plugin-digg-digg-exclude-from-page/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/plugin-digg-digg-exclude-from-page/#post-2780133)
 * Here is the code that worked for me:
 *     ```
       /** Exclude DiggDigg from specific pages */
       function eo_exclude_digg_digg() {
       if(is_page(array(1, 2, 3, 4))) {
             remove_filter('the_excerpt', 'dd_hook_wp_content');
           	remove_filter('the_content', 'dd_hook_wp_content');
       	}
       }
       add_action('template_redirect', 'eo_exclude_digg_digg');
       ```
   
 * …where 1, 2, 3, 4 are the ids of the pages you want to exclude DiggDigg from.
 * More details here: [Exclude DiggDigg From Specific Pages](http://www.eugenoprea.com/code-snippets/exclude-diggdigg-from-specific-pages/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Digg Digg] [Plugin: Digg Digg] floater can't disable on post pages?](https://wordpress.org/support/topic/plugin-digg-digg-floater-cant-disable-on-post-pages/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/plugin-digg-digg-floater-cant-disable-on-post-pages/#post-2617140)
 * Here is the code that worked for me:
 *     ```
       /** Exclude DiggDigg from specific pages */
       function eo_exclude_digg_digg() {
       if(is_page(array(1, 2, 3, 4))) {
             remove_filter('the_excerpt', 'dd_hook_wp_content');
           	remove_filter('the_content', 'dd_hook_wp_content');
       	}
       }
       add_action('template_redirect', 'eo_exclude_digg_digg');
       ```
   
 * …where 1, 2, 3, 4 are the ids of the pages you want to exclude DiggDigg from.
 * More details here: [Exclude DiggDigg From Specific Pages](http://www.eugenoprea.com/code-snippets/exclude-diggdigg-from-specific-pages/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Digg Digg] [Plugin: Digg Digg] How to Exclude DIGG DIGG from showing up on certain Pages](https://wordpress.org/support/topic/plugin-digg-digg-how-to-exclude-digg-digg-from-showing-up-on-certain-pages/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/plugin-digg-digg-how-to-exclude-digg-digg-from-showing-up-on-certain-pages/#post-2912211)
 * Here is the code that worked for me:
 *     ```
       /** Exclude DiggDigg from specific pages */
       function eo_exclude_digg_digg() {
       if(is_page(array(1, 2, 3, 4))) {
             remove_filter('the_excerpt', 'dd_hook_wp_content');
           	remove_filter('the_content', 'dd_hook_wp_content');
       	}
       }
       add_action('template_redirect', 'eo_exclude_digg_digg');
       ```
   
 * …where 1, 2, 3, 4 are the ids of the pages you want to exclude DiggDigg from.
 * More details here: [Exclude DiggDigg From Specific Pages](http://www.eugenoprea.com/code-snippets/exclude-diggdigg-from-specific-pages/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Postmark Email for WordPress by Yoast] [Plugin: Postmark Email for WordPress by Yoast] Uncaught exception when trying to retrieve WordPress](https://wordpress.org/support/topic/plugin-postmark-email-for-wordpress-by-yoast-uncaught-exception-when-trying-to-retrieve-wordpress-password/)
 *  Thread Starter [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-postmark-email-for-wordpress-by-yoast-uncaught-exception-when-trying-to-retrieve-wordpress-password/#post-2803958)
 * Rob,
 * I work with digitty and we solved the issue after we spotted it.
 * Now, even if I personally emailed Yoast with the solution, he is most probably
   busy with other things, but you can still use the solution digitty added [here](http://wordpress.org/support/topic/plugin-postmark-email-for-wordpress-by-yoast-new-plugin-version-033).
 * [Eugen](http://www.eugenoprea.com)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Popular Posts] [Plugin: WordPress Popular Posts] No thumbnails after update, not pulling in first image](https://wordpress.org/support/topic/plugin-wordpress-popular-posts-no-thumbnails-after-update-not-pulling-in-first-image/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-wordpress-popular-posts-no-thumbnails-after-update-not-pulling-in-first-image/#post-2370179)
 * The plugin works fine after you update to the latest version and select the source
   of your thumbnail.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Postmark Email for WordPress by Yoast] [Plugin: Postmark Email for WordPress by Yoast] Uncaught exception when trying to retrieve WordPress](https://wordpress.org/support/topic/plugin-postmark-email-for-wordpress-by-yoast-uncaught-exception-when-trying-to-retrieve-wordpress-password/)
 *  Thread Starter [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-postmark-email-for-wordpress-by-yoast-uncaught-exception-when-trying-to-retrieve-wordpress-password/#post-2803909)
 * I will send him an email to let him know about the changes we’ve made.
 * Eugen
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unable login admin](https://wordpress.org/support/topic/unable-login-admin/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [13 years, 12 months ago](https://wordpress.org/support/topic/unable-login-admin/#post-2813209)
 * I encountered the same error while updating through ManageWP.
 * But this can be solved by manually uploading the “wp-admin” directory.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smush – Image Optimization, Compression, Lazy Load, WebP & CDN] [Plugin: WP Smush.it] HTTP Error on image upload.](https://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [14 years ago](https://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload/page/2/#post-2718225)
 * Alex, thank for your update!
 * I really like the plugin, but it looks like we need to find a different solution.
 * CW Image Optimizer looks promising, but unfortunately it doesn’t work on shared
   hosting.
 * Thanks again!
 * [Eugen Oprea](http://www.eugenoprea.com/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smush – Image Optimization, Compression, Lazy Load, WebP & CDN] [Plugin: WP Smush.it] crunching http error](https://wordpress.org/support/topic/plugin-wp-smushit-crunching-http-error/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [14 years ago](https://wordpress.org/support/topic/plugin-wp-smushit-crunching-http-error/#post-2726086)
 * More details about the issue here:
 * [http://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload](http://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smush – Image Optimization, Compression, Lazy Load, WebP & CDN] [Plugin: WP Smush.it] HTTP Timeout](https://wordpress.org/support/topic/plugin-wp-smushit-http-timeout/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [14 years ago](https://wordpress.org/support/topic/plugin-wp-smushit-http-timeout/#post-2760200)
 * More details about the issue here:
 * [http://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload](http://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smush – Image Optimization, Compression, Lazy Load, WebP & CDN] [Plugin: WP Smush.it] http error](https://wordpress.org/support/topic/plugin-wp-smushit-http-error/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [14 years ago](https://wordpress.org/support/topic/plugin-wp-smushit-http-error/#post-2726085)
 * Drew, you can read more about this issue here:
 * [http://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload](http://wordpress.org/support/topic/plugin-wp-smushit-http-error-on-image-upload)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AgentPress Listings] [Plugin: AgentPress Listings] Change "Listings"](https://wordpress.org/support/topic/plugin-agentpress-listings-change-listings/)
 *  [Eugen Oprea](https://wordpress.org/support/users/echoelse/)
 * (@echoelse)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-agentpress-listings-change-listings/#post-2356833)
 * [@thedirector227](https://wordpress.org/support/users/thedirector227/) you need
   first to register on the forums and then upgrade your forum membership.
 * Read more about it on this page, especially #5:
 * [http://www.studiopress.com/support-faqs](http://www.studiopress.com/support-faqs)
 * Hope this helps.

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/echoelse/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/echoelse/replies/page/2/?output_format=md)