Mark
Forum Replies Created
-
It’s working now! Thanks
Forum: Plugins
In reply to: [Wordpress Bitcoin Payments - Blockonomics] Broken styles in checkout pageConsole errors:
Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
DevTools failed to load SourceMap: Could not load content for ../wp-content/plugins/blockonomics-bitcoin-payments/js/angular.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for ../wp-content/plugins/blockonomics-bitcoin-payments/js/angular-resource.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
- This reply was modified 3 years, 8 months ago by Mark.
Forum: Plugins
In reply to: [Wordpress Bitcoin Payments - Blockonomics] ErrorCan I use this plugin to receive payments in an Electrum account?
Forum: Plugins
In reply to: [ActiveCampaign Postmark for Wordpress] How to send email with phpI got it with wp_mail() function.
Thanks!
Forum: Plugins
In reply to: [Meta Box] How to clone dynamically valuesHello Long,
Thanks for your response! I do it:
array(
‘id’ => ‘receber_notificacoes’,
‘name’ => ‘Notifica??es’,
‘type’ => ‘user’,
‘clone’ => true
),It works fine in the front-end, but I need to add new users IDs through a PHP function, how could I do that?
Thanks!
Forum: Plugins
In reply to: [Meta Box] How to clone dynamically valuesCode I’m using to try add new IDs:
update_post_meta($post->ID ‘receive_notification’, $id);
Forum: Plugins
In reply to: [WP-Cron Status Checker] Error after PHP updateAfter many search I found a solution.
The cURL was not installed or enabled properly. I just reinstall cURL and restarted PHP and know it works fine.
Thanks!
Forum: Plugins
In reply to: [Bitcoin Payments for WooCommerce] Pluggin Removed for User ErrorHello, can you help me with this issue?
Which code need I paste when create a new wallet?
Forum: Plugins
In reply to: [WooCommerce] Hide specific product from Catalog/Search with PHPThank you! I got it with this code:
function exclude_single_posts_home($query) {
if (is_shop()) {
$query->set(‘post__not_in’, array(15723)); <<< Product ID
}
}add_action(‘pre_get_posts’, ‘exclude_single_posts_home’);
Forum: Plugins
In reply to: [Backup & Restore Dropbox] Average timeHello, thank you for your response.
Im getting this error in yellow text box:
2016-01-17 13:16:09 Website “mydomain.com” returned an error during database dump creation: ‘Dump of Database wasn’t created: “No result of the command”‘. To solve this problem, please check your database system logs or send to us your FTP access data. You can send to us support request using “Help” button on plugin page.
Where do I found this log? Im using a LEMP (php + mysql + nginx) installation on Ubuntu 14.04.