Title: neroine's Replies | WordPress.org

---

# neroine

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bitcoin Payments for WooCommerce] Same address in multiple orders](https://wordpress.org/support/topic/same-address-in-multiple-orders/)
 *  [neroine](https://wordpress.org/support/users/neroine/)
 * (@neroine)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/same-address-in-multiple-orders/#post-3948440)
 * I have the very same issue. When I query my database, with
 *     ```
       SELECT * , COUNT( * ) AS count
       FROM mydatabase.wp_postmeta
       WHERE (
       meta_key LIKE '%bitcoins_address%'
       )
       GROUP BY wp_postmeta.meta_value
       HAVING COUNT( * ) >1
       ORDER BY count DESC
       LIMIT 0 , 500
       ```
   
 * I have 160 addresses at the moment, which got reused 870 times in sum. This is
   really very labor-intensive to resolve and causes a lot of frustration on the
   customer end. We have a gap limit of 1000 in our Electrum wallet and receive 
   around 85 orders a day with BTC payment. Below is the relevant excerpts from 
   our bwwc-admin.php
 *     ```
       'supported_currencies_arr'             =>  array ('USD', 'AUD', 'CAD', 'CHF', 'CNY', 'DKK', 'EUR', 'GBP', 'HKD', 'JPY', 'NZD', 'PLN', 'RUB', 'SEK', 'SGD', 'THB'),
          'database_schema_version'              =>  1.0,
          'assigned_address_expires_in_mins'     =>  168*60,
          'funds_received_value_expires_in_mins' =>  '10',
          'starting_index_for_new_btc_addresses' =>  '2',
          'max_blockchains_api_failures'         =>  '3',
          'max_unusable_generated_addresses'     =>  '20',
          'blockchain_api_timeout_secs'          =>  '20',
          'soft_cron_job_schedule_name'          =>  'minutes_2.5',
          'delete_expired_unpaid_orders'         =>  true,
          'reuse_expired_addresses'              =>  false,
          'max_unused_addresses_buffer'          =>  350,
       ```
   
 * Any suggestions?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [custom….custom excerpt lengths](https://wordpress.org/support/topic/customcustom-excerpt-lengths/)
 *  [neroine](https://wordpress.org/support/users/neroine/)
 * (@neroine)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/customcustom-excerpt-lengths/#post-1805507)
 * i have an almost similar question to ask. let’s say, i have added 10 posts to
   2 different categorys. the excerpts would be the same on both sites, which results
   in duplicate content. i’d like to customize my functions.php in a way, where 
   i can choose, how the excerpts should be handled within the loop on a category
   basis. i’ve searched everywhere and found some great advice on that. only one
   extra option where i can’t solve the problem is this: let’s say, i use an excerpt
   containing the 55 first words in category 1, how can i use the second 55 words
   of the posts in category 2? i ask this, because it would be a big improvement
   on seo and could help others too.
 * i can’t find a way to truncate the first 55 words, if i pull in 110. is there
   a more elegant way to solve that? thanks.

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