Title: DarkNova's Replies | WordPress.org

---

# DarkNova

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Can’t add add product for coupon](https://wordpress.org/support/topic/cant-add-add-product-for-coupon-2/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/cant-add-add-product-for-coupon-2/#post-9702104)
 * Hi – the same problem here. Deactivated all plugins and changed the theme but
   still cant add new items/products to cupon code.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Link from Google Plus page not working properly](https://wordpress.org/support/topic/link-from-google-plus-page-not-working-properly/)
 *  Thread Starter [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/link-from-google-plus-page-not-working-properly/#post-9369655)
 * Hi,
 * thanks for your replay.I did reconnect the Google+ but the issue stayed.
    There
   is no problem with auto posting what so ever and I have checked all the images/
   links they all have htpps://
 * I cant find what seams to be the issue here 🙂
    Thanks
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[ContestFriend for WordPress] Really the best Giveaway & Contest Plugin](https://wordpress.org/support/topic/really-the-best-giveaway-contest-plugin/)
 *  Thread Starter [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/really-the-best-giveaway-contest-plugin/#post-8172748)
 * Hi,
 * this plugin is a blast – the only thing I had to do and had a bit of a hustle
   with
    are translations to my language. I managed to organize five ore more contests
   and have had none issues. Pity no one is evolving this plugin cause it’s great
   peace of code…
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[ContestFriend for WordPress] Really the best Giveaway & Contest Plugin](https://wordpress.org/support/topic/really-the-best-giveaway-contest-plugin/)
 *  Thread Starter [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/really-the-best-giveaway-contest-plugin/#post-8172392)
 * Hi hestonfer,
 * I have checked my data and I’m sorry but I also
    don’t have the requested documentation
   saved…
 * Please if you do manage to find it somehow
    do get me one copy to. Thanks!
 * Good day to you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Special Shipping Class](https://wordpress.org/support/topic/special-4/)
 *  Thread Starter [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/special-4/#post-5567619)
 * I have managed to find a solution and it’s this:
 *     ```
       // Hide standard shipping option when free shipping is available
       add_filter( 'woocommerce_available_shipping_methods', 'hide_standard_shipping_when_free_is_available' , 10, 1 );
   
       /**
       * Hide Standard Shipping option when free shipping is available
       *
       * @param array $available_methods
       */
       function hide_standard_shipping_when_free_is_available( $available_methods ) {
       	global $woocommerce;
       	$cart = $woocommerce->cart;
       	$content = $cart->get_cart();
       	$sale_products = array_filter( wc_get_product_ids_on_sale() );
   
       	$hasPopust = false;
   
       	foreach ($content as $cartitem) {
       		if(in_array($cartitem['product_id'], $sale_products)){
       			$hasPopust = true;
       			break;
       		}
       	}
   
       	if($hasPopust){
       		unset( $available_methods['free_shipping'] );
       	}
       	if(isset( $available_methods['free_shipping']) && isset($available_methods['flat_rate']) && !$hasPopust) {
       		// remove standard shipping option
       		unset( $available_methods['flat_rate'] );
       	}
   
       return $available_methods;
       }
       ```
   
 * Add this to funcions.php in your child theme.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] BUG](https://wordpress.org/support/topic/bug-59/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/bug-59/#post-4767765)
 * Ok I found the solution:
 * FIRST:
 * Check under settings tab for your
    Path to Log Files: /home/yourhosting/wp-content/
   uploads/ithemes-security/backup AND Backup Location:/home/yourhosting/wp-content/
   uploads/ithemes-security/backup
 * **Check these paths** and **file permissions** on the two paths in the settings
   tab to ensure that the web server can write to them.
 * THEN YOU CAN ALSO:
 * I have modified wp-content/plugins/better-wp-security/modules/free/backup/class-
   itsec-backup-admin.php, changing line 712 to:
 * add_settings_error( ‘itsec’, esc_attr( ‘settings_updated’ ), $message.$input[‘
   location’], $type );
 * This adds the path it’s complaining about to the error box, which makes it much
   quicker to find and fix it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] "The file path entered does not appear to be valid" error](https://wordpress.org/support/topic/the-file-path-entered-does-not-appear-to-be-valid-error/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/the-file-path-entered-does-not-appear-to-be-valid-error/#post-4960882)
 * THANKS
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] BUG](https://wordpress.org/support/topic/bug-59/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/bug-59/#post-4767764)
 * Me to and would like for a solution o5r explenation if someone has it.
 * THANKS
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Major problems with image editing in wp 3.9](https://wordpress.org/support/topic/major-problems-with-image-editing-in-wp-39/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/major-problems-with-image-editing-in-wp-39/#post-4827394)
 * well I hope I’m not the only one BUT I really don’t want to install plugins so
   I be able to edit my images in posts/pages…
 * would be great if WP people ad back the image editing functionalists as they 
   where!
 * more and more bugs keep on pouring in this new 3.9 luckily I was testing it on
   my localhost…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress 3.9: Major Image Editing Problems](https://wordpress.org/support/topic/wordpress-39-major-image-editing-problems/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/wordpress-39-major-image-editing-problems/#post-4827982)
 * all the above and plus 🙂
 * …unable to edit images at all after I activate my WPML plugin!
 * am not satisfied wit the new WP 3.9 …
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't edit posts/pages since 3.9 update](https://wordpress.org/support/topic/cant-edit-postspages-since-39-update/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/cant-edit-postspages-since-39-update/page/4/#post-4815901)
 * Hi!
    Issues with WPML on my dev site but WPML team was kind enough to release
   WPML 3.1.5b2 with WordPress 3.9 Support patch on their site which fixed all my
   issues with my WP.
 * MY set of plugins that are working with the new 3.9
 * Akismet
    Captcha Elegant Themes Updater Find and replace Global Content Blocks
   InstaBuilder Installer Jetpack by WordPress.com Select Orbisius Child Theme Creator
   WordPress SEO
 * WPML CMS Nav
    WPML Media WPML Multilingual CMS WPML Sticky Links WPML String 
   Translation
 * Yet Another Related Posts Plugin
 * All the plugins are up to date.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Just a little cosmetic wording confusion](https://wordpress.org/support/topic/just-a-little-cosmetic-wording-confusion/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/just-a-little-cosmetic-wording-confusion/#post-4743312)
 * Yes, I agree. I to was confused. I’m having VPS where only one of my hosting 
   packages uses SSL and it was really an issue for me should I turn this feature
   on or not.
    So, I agree with pjc123 the sentence: “Your server does appear to
   support SSL.” should be removed or rephrased.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AddThis Social Sign In] Multiple errors in plugin with debug on.](https://wordpress.org/support/topic/multiple-errors-in-plugin-with-debug-on/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/multiple-errors-in-plugin-with-debug-on/#post-4400427)
 * am having the sam problem … would like some comments please
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Yoast 404 issue](https://wordpress.org/support/topic/yoast-404-issue/)
 *  Thread Starter [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/yoast-404-issue/#post-4513816)
 * yes all pages are translated and the wpml is set up as it should be – cause-
   
   yes I did contact the wpml support and here is the comunication with theri support
   [http://wpml.org/forums/topic/404-error-with-some-pages-and-subpages/](http://wpml.org/forums/topic/404-error-with-some-pages-and-subpages/)
 * conclusion it’s not the wpml it’s yoast
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Flip Image Gallery] How to get URL of the Flipbook](https://wordpress.org/support/topic/how-to-get-url-of-the-flipbook/)
 *  [DarkNova](https://wordpress.org/support/users/darknova11/)
 * (@darknova11)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-get-url-of-the-flipbook/#post-4277030)
 * in demo you can’t and I think there is no way to do it in full ver. to.
    But 
   suggestion – use InDesign or any other img to pdf converter create your own .
   pdf and the rest you know…

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

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