thisisedie
Forum Replies Created
-
Did you ever get this settled? Trying to figure this out myself.
I should explain I don’t mean the number of items on the cart page. That of course is already there. I want to have a line at the top of the store page that says: You have x number of items in your cart.
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?Oh my. I’m so sorry. I thought this was for the same plugin. I do have a post there. This is what I get for not sleeping for a few days. Sigh.
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?Im using WordPress Simple Paypal Shopping Cart, not the Simple Cart Buy Now. I’m sorry I’m not super good at this stuff. How could I add a shortcode for the total items for WordPress Simple Paypal Shopping Cart?
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?And would there be a shortcode to call the total number of items on a WordPress page?
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?Where do I find SCABN’s templates?
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?I’m putting it at the top of a WordPress page.
$cart = $_SESSION['wfcart']; print_r($cart);
comes up with no output?
Thanks so much for your help ??
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?Im putting this on the store page so it says something like “you have this many items in your shopping cart”.
<?php $cart = $_SESSION['wfcart']; $count=0; foreach($cart->items as $item){ $count+= intval($cart->itemqtys[$item]); } echo $count; ?>
Forum: Plugins
In reply to: [Simple Cart & Buy Now] Simple Show Number Of Items In Cart?When I put this code where I want the total items to appear, I get this error: Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\wordpress\wp-content\plugins\exec-php\includes\runtime.php(42) : eval()’d code on line 13 0.
Forum: Fixing WordPress
In reply to: WordPress Simple Paypal Shopping Cart – Number Of Items In CartOh! Thank you. I had no idea. Can I delete this thread then so I’m not double posting?
Forum: Fixing WordPress
In reply to: WordPress Simple Paypal Shopping Cart – Number Of Items In CartYes, the WordPress Simple Paypal Shopping Cart.
Forum: Fixing WordPress
In reply to: No output at all after server migrationWhen you say there is no output, do you mean none of the posts/pages are there or that you can’t see the site itself?
Forum: Plugins
In reply to: [Plugin: Easy Digital Downloads] Create AccountAgain I need to keep my fingers shut. DERRRR! It’s an account with WordPress not the store. Sigh. Nevermind. *hangs head*
Forum: Plugins
In reply to: [Plugin: Easy Digital Downloads] Image Beside Item In Cart?Nevermind all my babbling. I should keep my fingers shut until my brain figures out the obvious.
For inquiring minds, this
add_theme_support( 'post-thumbnails' );
needs to be in your themes functions.php to enable thumbnail support.Thank you SO MUCH for your help Pippin ??
Forum: Plugins
In reply to: [Plugin: Easy Digital Downloads] Image Beside Item In Cart?I disabled all plugins, that didn’t fix it. I deleted the functions.php in my theme for a minute to see if it as something in there… nope. That didn’t fix it either, lol.