Lee Blue
Forum Replies Created
-
It is my understanding that Mijireh does not send back the billing address for security reasons. I just spoke with a fellow on the Mijireh development team and he said that Mijireh doesn’t store the billing address at all. It is captured, sent off to the payment gateway to validate the address then discarded. The only address it keeps is the shipping address (assuming one is provided).
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] How to remove cart 66 meta generator?Yes, there is a filter for that
remove_action(‘wp_head’, array(‘Cart66Common’,’displayVersionInfo’));
The problem may be due to custom post types. Here are two links that may help.
http://docs.cart66.com/knowledgebase/custom-post-types/
http://docs.cart66.com/organize-your-products-with-custom-post-types/
We just released an update that should resolve this issue.
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] Cart66 Lite conflict with WP 3.5 upgradeWe just released an update that should resolve these issues. We also added support for the 2checkout payment gateway. Lots of other updates too.
We just released an update that should resolve this issue. We also added support for the 2checkout payment gateway. Lots of other updates and enhancements too.
We just released an update that should resolve that issue.
Forum: Plugins
In reply to: [WooCommerce] Web fonts not appearing in Mijireh checkout pageThere was an issue with how the pageslurp was caching the google fonts causing a cross domain security warning in IE. We have now fixed this problem and are in the process of deploying an update. The change should be live in about an hour – around 3PM EST today 11/14/2012. You will need to reslurp your page for the issue to be resolved.
Sorry it took a couple days to get this worked out. It was tricky to figure out what was going on.
You should see a “Gateways” link under “Settings” in the top right corner of your Mijireh account. If you go to the Gateways page you will be able to select all the different credit card type you want to accept. Click on the Discover card icon to enable it and you should be good to go.
This should all be fixed in the 1.5.0.2 release. If not, let me know and we’ll investigate further.
We are planning to deploy an update tomorrow (8/14/2012) to resolve this problem. Running it through the final stages of testing now.
If you are using custom post types you have to make a tiny tweak to your functions.php file to enable the cart66 pop up screen to work. We’ve got a new, public, knowledge base available that includes a post about how to get the pop up product selector working on custom post types.
Just wanted to let everyone know we’ve got a new, public knowledge base available including an answer to this question about custom post types.
Forum: Plugins
In reply to: Cart66 plugin – hook into checkout processFirst, don’t use PayPal Express and Authorize.net, if you do it will be hard (and expensive) to get your site to be PCI compliant since you will be passing credit card data from server to server via API calls. Instead, take a look at Mijireh Checkout http://mijireh.com
Cart66 (pro and lite) have the following hooks built in:
cart66_after_order_saved
cart66_after_remove_item
cart66_after_add_to_cart
cart66_before_add_to_cart
cart66_after_update_cartThe cart66_after_order_saved hook is the one it sounds like you will want to use. This hook passes one parameter which is the Cart66Order object that was just saved. The Cart66Order class is located in cart66/models/Cart66Order.php where you can see the available functions. The getItems() function is probably what you will want to call to get a list of the items that were purchased.
The code you will want to write will probably look something like this:
add_action('cart66_after_order_saved', 'log_enrollment');
function log_enrollment($order) {
$items = $order->getItems();
foreach($items as $item) {
// do whatever you need to do for enrollment
}
}
I suspect the reason they aren’t being hidden is because they aren’t in the locations or don’t have the paths that Cart66 expects.
Make sure you delete the Cart66 store pages that are in your trash. When Cart66 tries to install the store pages if there are pages in the trash that have the same slugs (paths) as the pages Cart66 is trying to create then the pages don’t get installed properly. So the thing to do is:
1) Delete the Cart66 pages and make sure they are deleted from the trash as well
2) Deactivate/Activate Cart66 which will reinstall the pages