Aadil_hussain
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Contact Form Advanced Database] How i update extra fields added in formsI had updated plugin, i am marking this issue resolved
Forum: Plugins
In reply to: [Contact Form Advanced Database] How i update extra fields added in formsHey Team,
Excellent support.the communication is quick and clear
Five star for support
Keep it upwe have purchase canadapost woocomerce plugin and also have an account on your site but when we are trying to activate it we are getting error.
Error code AA004 – You cannot mail on behalf of the requested customer.
Please help us to resolve it ?
or give us suggestion how we resolve it,Forum: Plugins
In reply to: [plugin: WooCommerce] if upsells exist don't display related productsYou can do that by adding a conditional tag in content-single-product.php
<?php /** * The template for displaying product content in the single-product.php template * * Override this template by copying it to yourtheme/woocommerce/content-single-product.php * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */ ?> <?php global $product; $upsells = $product->get_upsells(); ?>
remaining code remain same
<?php /** * woocommerce_after_single_product_summary hook * * @hooked woocommerce_output_product_data_tabs - 10 * @hooked woocommerce_output_related_products - 20 */ if ( sizeof($upsells) == 0 ) { do_action( 'woocommerce_after_single_product_summary' ); } else { remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 ); do_action( 'woocommerce_after_single_product_summary' ); } ?> </div><!-- #product-<?php the_ID(); ?> --> </div> <?php do_action( 'woocommerce_after_single_product' ); ?>
Viewing 4 replies - 1 through 4 (of 4 total)