Kettercat
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Listing inquiry form trackingThanks a lot!
Is it possible to use Contact Form 7, for example?
And currently the form is using a link of the page it was sent from, I want to keep that. Is it possible?Thanks!
Forum: Plugins
In reply to: [IMPress Listings] Add listing’s details to meta tagsThanks a lot! Just dropping you a line.
🙂Forum: Plugins
In reply to: [WP Gallery Custom Links] Conflict with Jetpack carouselHaving the same issue – would appreciate if someone could find a solution 🙁
Forum: Plugins
In reply to: [WooCommerce] Link to full image size and not thumbnail?Exactly what I was looking for, thanks a lot!
Forum: Plugins
In reply to: [WooCommerce] Cart deals?Thanks!
Forum: Plugins
In reply to: [WooCommerce] Display shop shortcode?Hi,
Any idea? Is there a way to edit the shop page so I can display the homepage header on top?
Thanks!
Forum: Plugins
In reply to: [Email Before Download] Email sent fromHi,
I was using the ’email’ option, but my client changed his mind and now they want ‘inline’. But anyway, for future use – how do I change that?
Thanks!Forum: Plugins
In reply to: [WooCommerce] Condition to check if product is newSorry, my apologies!
I believe this will help, thanks!
Forum: Plugins
In reply to: [WooCommerce] Add link to product imageAnyone knows?
Thanks!Forum: Plugins
In reply to: [WooCommerce] Condition to check if product is newAny idea? 🙂
Forum: Plugins
In reply to: [WooCommerce] Add "join newsletter?" checkboxThanks Caleb! 🙂
Forum: Themes and Templates
In reply to: Drop down submenu – display above menu?Bump… anyone? 🙂
Forum: Plugins
In reply to: [WooCommerce] "Add to Cart" button – top and bottom?Hey Caleb, just a quick update to let you know it worked 🙂 Thanks!!!
Forum: Plugins
In reply to: [WooCommerce] "Add to Cart" button – top and bottom?Oh great, will try that. Thanks again 😀
Forum: Plugins
In reply to: [WooCommerce] "Add to Cart" button – top and bottom?Hey Caleb, thanks for your help!!! I’m just not quite sure which template file am I looking for? I thought it was single-product.php but I’m not sure?
<?php /** * The Template for displaying all single products * * This template can be overridden by copying it to yourtheme/woocommerce/single-product.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woothemes.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } get_header( 'shop' ); ?> <?php /** * woocommerce_before_main_content hook. * * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) * @hooked woocommerce_breadcrumb - 20 */ do_action( 'woocommerce_before_main_content' ); ?> <?php while ( have_posts() ) : the_post(); ?> <?php wc_get_template_part( 'content', 'single-product' ); ?> <?php endwhile; // end of the loop. ?> <?php /** * woocommerce_after_main_content hook. * * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content) */ do_action( 'woocommerce_after_main_content' ); ?> <?php get_footer( 'shop' ); ?>