Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Azurnyx

    (@littlerebel)

    Hello, Thank you so much for your reply. Sadly I don’t know how to make that code.
    That option is not available in your Professional version of the plugin either, right?

    Or maybe it would be easier to divide the invoices by the one who has VAT taxes and ones without?

    Hi,
    thanks for your reply! although it wouldn’t work because the /woocommerce/content-product.php only have 74 lines and there is none that look like that. I have the last version (4.0)

    This is the wp-content/themes/oxygen/woocommerce/content-product.php:

    <?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.6.1
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    global $product;
    
    // Ensure visibility
    if ( empty( $product ) || ! $product->is_visible() ) {
    	return;
    }
    
    ?>
    <div <?php post_class( oxygen_woocommerce_get_loop_item_class() ); ?>>
    
    	<?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' );
    	?>
    
    </div>

    I have the same problem, any solution please?

    Thread Starter Azurnyx

    (@littlerebel)

    Thank you so much! it works perfect.

    Thread Starter Azurnyx

    (@littlerebel)

    Wow, it works perfectly.
    Thank you so much for your help and for answering so quick!!

    Thread Starter Azurnyx

    (@littlerebel)

    I think my Woocommerce settings are well configured and that the problem is with APG plugin, so my solution has been to change to another plugin.

    marcscheper, this one works fine and also have a “global group” option
    https://www.ads-software.com/support/view/plugin-reviews/table-rate-shipping-for-woocommerce

    Thread Starter Azurnyx

    (@littlerebel)

    Thanks for your concern.

    One of the issues I’ve found is in the maintenance mode, when it is active it doesn’t show any message to not-logged users, only a grey page. I’ve tested it in several browsers with the same results.

    The other thing that gave me troubles is the “Prevent Image Hotlinking”, when I activated it, it broke all the images from my website (even the template images).

    In the file permission scan, some of the “set recommended permission” doesn’t work in one of my sites but I think that problem is in my WP (which mark some of the current permission in 0), and not from the plugin because it has worked fine in other installations.

    These are the only issues I’ve found by now. The rest is working fine.
    thanks!

    ok, I’ve found the problem, it was a plugin.

    Thanks Ibain your solution worked for me! https://www.ads-software.com/support/topic/order-received-endpoint-404-error-1
    I think that the first time I tried this, I did not flush the permalinks every single time with each plugin.

    I have the same problem after the update, the permalinks of my-account/… give me a 404 error. They only work if I change the setting of the permalinks to default.

    The only thing that have worked for me is adding this code to the functions.php file of my template, but if I delete the code the permalinks on my-account/ break again and I don’t like this solution.

    function flush_rules(){
    flush_rewrite_rules();
    }
    add_action('init','flush_rules');

    any idea where the problem is?

    I’ve just updated woocommerce and I have a similar problem with the sale icon. It is appearing on all the out stock products with no price (and If I enter “0” as the price is display that the item is “free”.

    I’ve hidden the “free” in the functions.php and the “on sale” using display:none; but then I can’t use the “on sale” icon when I need it.
    There is another method to just remove the “on sale” when items are out of stock?

Viewing 10 replies - 1 through 10 (of 10 total)