Forum Replies Created
- AuthorPosts
-
Hi, i turned on Debug but i have no errors.
In my server logfile also no errors.
I receive a message in backend that message was send to customer on statusupdate, but the message don’t arrive. Please i need to fix this. Every help is appreciated.Thanks but how do i do that please.
Sorry but i did not explained it correct see image please.
This reply has been marked as private.This reply has been marked as private.Sorry but still syntax error but only on this line now my_function(){
I have add this shortcode to function.php but it has some syntax error on this 2 lines
my_function(){
echo do_shortcode(‘[wppizza single=’11’]’);
}After a few hours i managed to do exactly what i needed. To add Cart into a php file use this <?php echo do_shortcode(‘[wppizza type=cart]’); ?>
I think i dont explain it right. Forget woocommerce, i will only use theme wihout woocommerce only with wp-pizza. All products and categories will be created from wp-pizza. But i want to keep the Cart button on the header of this theme. And inside this Cart i want to use the wppizza shoppingcart but i dont know how can i do that.
Yes i know that this is from woocommerce. How can i change the code above so that i can use wp-pizza cart. If you have see the demo from my theme i think you will understand what i need. It is very simple i thing if someone has php knowledge.
I have read this alreday and i have searched for it before i post my issue. My theme cart cart is implement in my header.php. Here is the code.
<?php if($takeaway_option_data[‘takeaway-minicart-switch’] == 1) : ?>
<div class=”col-md-2 col-sm-3 col-xs-5 pull-right”>
<span class=”cart-contents pull-right” title=”<?php _e(‘View your shopping cart’, ‘takeaway’); ?>”>
<?php //echo sprintf(_n(‘%d item’, ‘%d items’, $woocommerce->cart->cart_contents_count, ‘woothemes’), $woocommerce->cart->cart_contents_count);?>
<?php //echo sprintf (_n( ‘%d item’, ‘%d items’, WC()->cart->cart_contents_count ), WC()->cart->cart_contents_count ); ?>
<?php _e(‘Cart ‘,’takeaway’); ?>
<?php if (class_exists(‘Woocommerce’)) : ?>
<?php //$takeaway_total = $woocommerce->cart->get_cart_total(); ?>
<?php //_e($takeaway_total, ‘takeaway’); ?>
<?php endif; ?></span> <div id=”mini-cart”>
</div></div>
<?php endif; ?>
I want to change this code and instead i want to show Shoppingcart from wp-pizza if a client have added a product to order.I have see setting but dont understand how can i add wp-pizza cart in my existing theme cart. Can you help me please. I need to know if this is posibble so i can buy the rest of extensions please.
- AuthorPosts