neroine
Forum Replies Created
-
Forum: Plugins
In reply to: [Bitcoin Payments for WooCommerce] Same address in multiple ordersI 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 , 500I 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
In reply to: custom….custom excerpt lengthsi 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.