redrokit
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] EM and Theme issuesRight On bridgetwes!!!!!
Your solution fixed my problem. Works Perfect!
Change line 28 in plugin file events-manager/em-posts.php
$post_thumbnails = array_shift($_wp_theme_features[‘post-thumbnails’]);
to
$post_thumbnails = $_wp_theme_features[‘post-thumbnails’][0];Forum: Plugins
In reply to: [WooCommerce] Tax status needs updating to work for each productI’ve got three sites using the woocommerce plugin and that tax doesn’t show on any of them. Tried the demo on Woocommerce theme site for their shopping cart and didn’t see tax on checkout either. Read the documentation a million times and can’t get it to work on any of the sites. Any one have any insight on why tax doesn’t show up on checkout?
Forum: Plugins
In reply to: [WooCommerce] display ‘tax’ term woocommerce cart and checkout sumsI just did a test checkout on the woocommerce site using one of their theme shopping carts and they don’t even show “Tax” on checkout. I’m wondering if it even works period.
Forum: Plugins
In reply to: [WooCommerce] In checkout page Tax not showingI’ve got the same issue. I have three sites on hold all because of tax not being visible. I’ve contacted woo support multiple times and no solution. Just waiting for a response.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.0.1 default style?If your page goes all white, most of the time that’s a php error. plugins can cause that too. But if you are saying that your content area is blank..(no cart info) make sure you have your normal page elements in there that pertain to your theme. You have to keep the normal frame work of your themes page.php… then between your content divs that hold the main content put that code below.
<div class=”woocommerce”>
<?php woocommerce_content(); ?>
</div>Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.0.1 default style?LEVIWEST… GENIUS!!. FIXED MY ISSUE. GOD BLESS YOU!!!!!
I’ve been looking for days to fix this shop and product page issue.
To find out that using this? Fixed it, blows my mind.<div class=”woocommerce”>
<?php woocommerce_content(); ?>
</div>