Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter supr3m3dalek

    (@supr3m3dalek)

    Never mind of course i find the solution the second after i post this.

    For those with the same problem Add this to custom css in your theme.

    html,
    body{
    width:100%;
    overflow-x:hiden;
    }
    • This reply was modified 1 year, 7 months ago by supr3m3dalek. Reason: typo
    Thread Starter supr3m3dalek

    (@supr3m3dalek)

    thanx moved host solved all my isseus

    Thread Starter supr3m3dalek

    (@supr3m3dalek)

    could the <div class=”price-rating-wrap”> part be missing a part?

    If so how to fix it ?

    /**
     * Price & Rating Wrap
    */
    if (!function_exists('xcommerce_woocommerce_before_rating_loop_price')) {
    
        function xcommerce_woocommerce_before_rating_loop_price(){ ?>
    
        	<div class="price-rating-wrap"> 
    
          <?php 
        }
    }
    add_action( 'woocommerce_after_shop_loop_item_title', 'xcommerce_woocommerce_before_rating_loop_price', 4 );
    
    if (!function_exists('xcommerce_woocommerce_after_rating_loop_price')) {
    
        function xcommerce_woocommerce_after_rating_loop_price(){  ?>
            
            </div>
                <?php if( is_shop() || is_product_category() || is_product_tag() ) : ?> 
                <?php if( ! get_theme_mod('xcommerce_show_product_description', false) ) return ; ?>
                <div class="xcommerce-more-desc xcommerce-more-effect">
                    <div class="woocommerce-product-details__short-description">
                        <?php the_excerpt(); ?>
                    </div>
                    <a href="#" class="xcommerce-more-desc-btn"><span></span></a>
                </div>
    
          <?php 
          endif;
        }
    }
    add_action( 'woocommerce_after_shop_loop_item_title', 'xcommerce_woocommerce_after_rating_loop_price', 12 );
    
    
    
    if (!function_exists('xcommerce_woocommerce_product_item_details_close')) {
    
        function xcommerce_woocommerce_product_item_details_close(){ ?>
    
        	    </div>
        	</div>
    
          <?php 
        }
    }
    add_action( 'woocommerce_after_shop_loop_item', 'xcommerce_woocommerce_product_item_details_close', 12 );
    
Viewing 3 replies - 1 through 3 (of 3 total)