I used Cart66 Lite (http://wordpress.org/extend/plugins/cart66-lite/) for wp 3.3. When I click button "Cart66" to add cart66 shortcodes but them un-display. (image http://i.imgur.com/Bgg4lJI.png)
Please help me! Thanks!
I used Cart66 Lite (http://wordpress.org/extend/plugins/cart66-lite/) for wp 3.3. When I click button "Cart66" to add cart66 shortcodes but them un-display. (image http://i.imgur.com/Bgg4lJI.png)
Please help me! Thanks!
In order to fix your custom post types, you will need to add this function to your themes functions.php file:
function myCustomPopups(){
return array('products');
}
add_filter('cart66_add_popup_screens', 'myCustomPopups');
Also, note that 'products' is your CPT slug, so adjust accordingly.
You must log in to post.