Forum Replies Created

Viewing 15 replies - 1 through 15 (of 34 total)
  • Thread Starter Kiwi1919

    (@kiwi1919)

    Thanks Mike!

    Change wp_config.php to 128mb and all is good.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Tamara,

    Thanks for the advice! It turns out the new version of the7 theme (v3) has a setting for WooCommerce shop columns which is overwriting the plug in.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    Thanks, updating to v. 3.2.2 fixed it.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    The problem started when I updated to Woocommerce 2.5 I updated the files later but that had no effect.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    I did get a message to replace content-product.php and content-product_cat.php and dragged copies from the Woocommerce templates.

    Here is the content-product.php that I put into the7/woocommerce folder:

    <?php
    /**
     * The template for displaying product content within loops
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/content-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 2.5.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    global $product, $woocommerce_loop;
    
    // Store loop count we're currently on
    if ( empty( $woocommerce_loop['loop'] ) ) {
    	$woocommerce_loop['loop'] = 0;
    }
    
    // Store column count for displaying the grid
    if ( empty( $woocommerce_loop['columns'] ) ) {
    	$woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 );
    }
    
    // Ensure visibility
    if ( ! $product || ! $product->is_visible() ) {
    	return;
    }
    
    // Increase loop count
    $woocommerce_loop['loop']++;
    
    // Extra post classes
    $classes = array();
    if ( 0 === ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 === $woocommerce_loop['columns'] ) {
    	$classes[] = 'first';
    }
    if ( 0 === $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) {
    	$classes[] = 'last';
    }
    ?>
    <li <?php post_class( $classes ); ?>>
    
    	<?php
    	/**
    	 * woocommerce_before_shop_loop_item hook.
    	 *
    	 * @hooked woocommerce_template_loop_product_link_open - 10
    	 */
    	do_action( 'woocommerce_before_shop_loop_item' );
    
    	/**
    	 * woocommerce_before_shop_loop_item_title hook.
    	 *
    	 * @hooked woocommerce_show_product_loop_sale_flash - 10
    	 * @hooked woocommerce_template_loop_product_thumbnail - 10
    	 */
    	do_action( 'woocommerce_before_shop_loop_item_title' );
    
    	/**
    	 * woocommerce_shop_loop_item_title hook.
    	 *
    	 * @hooked woocommerce_template_loop_product_title - 10
    	 */
    	do_action( 'woocommerce_shop_loop_item_title' );
    
    	/**
    	 * woocommerce_after_shop_loop_item_title hook.
    	 *
    	 * @hooked woocommerce_template_loop_rating - 5
    	 * @hooked woocommerce_template_loop_price - 10
    	 */
    	do_action( 'woocommerce_after_shop_loop_item_title' );
    
    	/**
    	 * woocommerce_after_shop_loop_item hook.
    	 *
    	 * @hooked woocommerce_template_loop_product_link_close - 5
    	 * @hooked woocommerce_template_loop_add_to_cart - 10
    	 */
    	do_action( 'woocommerce_after_shop_loop_item' );
    	?>
    
    </li>
    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    The wordpress and site urls match.

    The Log:

    ### WordPress Environment ###

    Home URL: https://your-finder.com
    Site URL: https://your-finder.com
    WC Version: 2.5.0
    Log Directory Writable: ? /home/yourfinder/public_html/wp-content/uploads/wc-logs/
    WP Version: 4.4.1
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    Language: en_US

    ### Server Environment ###

    Server Info: Apache
    PHP Version: 5.4.40
    PHP Post Max Size: 8 MB
    PHP Time Limit: 30
    PHP Max Input Vars: 1000
    SUHOSIN Installed: –
    MySQL Version: 5.5.47
    Max Upload Size: 8 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?

    ### Database ###

    WC Database Version: 2.5.0
    :
    woocommerce_sessions: ?
    woocommerce_api_keys: ?
    woocommerce_attribute_taxonomies: ?
    woocommerce_termmeta: ?
    woocommerce_downloadable_product_permissions: ?
    woocommerce_order_items: ?
    woocommerce_order_itemmeta: ?
    woocommerce_tax_rates: ?
    woocommerce_tax_rate_locations: ?

    ### Active Plugins (14) ###

    Contact Form 7: by Takayuki Miyoshi – 4.3.1
    Duplicate Post: by Enrico Battocchi – 2.6
    WPBakery Visual Composer: by Michael M – WPBakery.com – 4.7.4
    Login With Ajax: by Marcus Sykes – 3.1.5
    MultiDomain: by Nathan Carnes – 1.0
    PDF Embedder: by Dan Lester – 2.4.1
    Recent Tweets Widget: by Noah Kagan – 1.6.4
    Revolution Slider: by ThemePunch – 5.0.9
    s2Member Framework: by s2Member / WebSharks
    Inc. – 160120

    Fast Secure Contact Form: by Mike Challis
    Ken Carlson – 4.0.39

    Simple File Downloader: by eugenealegiojo – 1.0.4
    WooCommerce: by WooThemes – 2.5.0
    Email Login: by Beau Lebens – 4.6.4
    YITH Woocommerce Request A Quote: by Yithemes – 1.2.0

    ### Settings ###

    Force SSL: –
    Currency: ZAR (R)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2

    ### API ###

    API Enabled: ?
    API Version: 3.1.0

    ### WC Pages ###

    Shop Base: #36386 – /request-quote/
    Cart: #36478 – /cart/
    Checkout: #36479 – /checkout/
    My Account: #36480 – /my-account/

    ### Taxonomies ###

    Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)

    ### Theme ###

    Name: The7.2
    Version: 2.3.5
    Author URL: https://dream-theme.com/
    Child Theme: ? – If you’re modifying WooCommerce on a parent theme you didn’t build personally
    then we recommend using a child theme. See: How to create a child theme

    WooCommerce Support: ?

    ### Templates ###

    Overrides: dt-the7/woocommerce/cart/cart.php
    dt-the7/woocommerce/cart/shipping-calculator.php
    dt-the7/woocommerce/content-product.php
    dt-the7/woocommerce/content-product_cat.php
    dt-the7/woocommerce/loop/loop-end.php
    dt-the7/woocommerce/loop/loop-start.php
    dt-the7/woocommerce/loop/orderby.php

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    Thanks for your reply. I am using WooCommerce Product Archive Customiser but even with all the plug ins turned off I still have the problem.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Using the option “Disable anti-spam for miscellaneous forms” is working.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Wow, thank you for doing that! Thank you again for this great plug in and all the effort involved.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi,

    That’s correct. In the Dashboard there is the pull down where you have the choices 7 Days/14 Days/1 Month etc.

    I would love to be able to choose Today/Yesterday or pick a date.

    Thread Starter Kiwi1919

    (@kiwi1919)

    After running a test purchase valued at 199 using a 250 value gift card it say the balance is 20.30 It should be 51.

    Cant use this in a live environment!

    Thread Starter Kiwi1919

    (@kiwi1919)

    Another Issue: I notice the Plus Minus quantity buttons are missing. Is there a way to turn them back on?

    Thread Starter Kiwi1919

    (@kiwi1919)

    Sorry for the late rely.

    The fix works perfectly, thanks so much!

    I will let The Dream Theme Guys know about the problem.

    Thanks for all your help.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    Thanks for your reply. I deactivated one plug in t a time and eventually after turning off some of the plug ins I got an error message instead of a blank screen: Fatal error: Cannot redeclare woocommerce_output_related_products() (previously declared in /home/mediatbe/public_html/wp-content/plugins/woocommerce/includes/wc-template-functions.php:1091) in /home/mediatbe/public_html/wp-content/themes/dt-the7/inc/mod-woocommerce/mod-woocommerce.php on line 87

    This error doesn’t happen with the 2014 theme for example. I just checked with our theme supplier, Dream Theme and they have found a problem with The7 theme when using Woocommerce 2.2.2 we are using and are working on a fix.

    Thread Starter Kiwi1919

    (@kiwi1919)

    Hi Mike,

    Thanks for your reply. I deactivated one plug in t a time and eventually after turning off some of the plug ins I got an error message instead of a blank screen: Fatal error: Cannot redeclare woocommerce_output_related_products() (previously declared in /home/mediatbe/public_html/wp-content/plugins/woocommerce/includes/wc-template-functions.php:1091) in /home/mediatbe/public_html/wp-content/themes/dt-the7/inc/mod-woocommerce/mod-woocommerce.php on line 87

    This error doesn’t happen with the 2014 theme for example. I just checked with our theme supplier, Dream Theme and they have found a problem with The7 theme when using Woocommerce 2.2.2 we are using and are working on a fix.

Viewing 15 replies - 1 through 15 (of 34 total)