Bloke
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Set default tax to zero on check outI found a solution here by adding a new entry to the database and setting it as the the default state in the admin. http://wordpress.org/support/topic/change-default-shipping-and-billing-state-to-select-a-state
Forum: Plugins
In reply to: [WP eCommerce] How to display the tax in email to buyerFixed it by going to store settings, Admin. Entered %total_tax%
Forum: Plugins
In reply to: [WP e-Commerce Shop Styling] How to add order notes to emailThanks. I am referring to the sales order notes found in the sales log. These are notes entered in the back end not by the customer.
Forum: Plugins
In reply to: [WP eCommerce] Receipt to buyer does not include notesHow would I get the value of the notes? I looked at the code of your plug in.
Forum: Plugins
In reply to: [WP eCommerce] Receipt to buyer does not include notesOk thanks. I wasn’t sure if it was supposed to send the notes or not.
Forum: Plugins
In reply to: [WP eCommerce] Sales log order status not updatingSeems like it is working. We are using CIM with Authorize.net I think IPN is standard with CIM. If a sale was declined it would show the status correct so I knew this part was working. Since we are authorizing and capturing later I was not doing the steps in order. We also are editing the tax amount then capturing. So what I have done is change the status manually inside the sales log to “payment accepted” instead of doing it inside Authrize.net and it successfully sent it to Authorize.net. We were editing the amount and capturing on Authorize.net and this was the issue. Inside the sales log it said “unable to capture”.
Forum: Plugins
In reply to: [WP eCommerce] Sales log order status not updatingWe completed the sale on Authorize.net site. Should I have tried to change it inside Wp-ecommerce sales log first? If I try to change it, it just spins. If I select it and choose under bulk option in the top left, and choose “accepted payment” it says failed to capture.
Forum: Plugins
In reply to: [WP eCommerce] Receipt to buyer does not include notesWhere can I find the file that sends the receipt to the buyer? When you click on “resend receipt”. Then I need to find the variable used for the notes.
Forum: Plugins
In reply to: [WP eCommerce] Tax not sent to Authorize.netI was able to fix it. Applied tax when billing county is the same as tax rate.
Forum: Fixing WordPress
In reply to: Missing argument 2 for wpdb::prepare()Try this $sql = “SELECT* FROM ID=%field_label,$field_label ID=%field_name ID=%field_type,$field_type FROM “. $wpdb->prefix . “cp_ad_fields”;
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Content not updating when savingFound the solution here. http://support.advancedcustomfields.com/forums/topic/text-area-fields-are-not-saving-on-update/
Forum: Fixing WordPress
In reply to: Missing argument 2 for wpdb::prepare()Can you post the code that is here /includes/theme-functions.php on line 415?
Forum: Fixing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()You said that code was in theme-sidebars.php on line 51
Forum: Fixing WordPress
In reply to: Since 3.6.1, phpmyadmin db exports won't importTry dropping all the tables before importing.
Forum: Fixing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()Try changing this
$widgetized_pages = $wpdb->get_col( $wpdb->prepare("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE meta_key = 'celta_sidebar'" ) );
To this:$widgetized_pages = $wpdb->get_col("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE meta_key = 'celta_sidebar'");