Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • in reply to: Fatal error: #144049
    UGVisionaries
    Member
    Post count: 12
    This reply has been marked as private.
    in reply to: WooCommerce 2.1 Compatibility #113115
    UGVisionaries
    Member
    Post count: 12

    Hmm how is that possible. I checked the location and the file from the backup data (when it was working) and the file and locations are exactly the same. The only file I created was neighborhood-child/woocommerce/single-product/product-image.php. The only variable I can see is that WordPress was updated. I also replaced and removed my custom product-image.php and it still doesn’t work, so you’re right, I’m assuming it’s with the code that calls the product-image.php page itself. Do you happen to know what this file is called so I can compare it to my previous versions?

    I’ll delete any “extra” files that may have been created during testing, and after a backup I’ll install the new .zip file after emailing you from themeforest.

    in reply to: WooCommerce 2.1 Compatibility #111008
    UGVisionaries
    Member
    Post count: 12
    This reply has been marked as private.
    in reply to: Dollar amount for variations #91059
    UGVisionaries
    Member
    Post count: 12

    Figured it out! It was a simple css rule. In my absentmindedness I did this:

    .summary-top {border:0px; display:none;}

    in reply to: Dollar amount for variations #91058
    UGVisionaries
    Member
    Post count: 12

    I re-enabled the original flexslider that came with the template and deleted the files that coded for the lightbox from the child theme. Still no price showing up… :/

    in reply to: Dollar amount for variations #91043
    UGVisionaries
    Member
    Post count: 12

    It’s just a lightbox that was hosted on CDN but I moved it to local, but there were no prices showing up either way. I will see if it is interfering with the code, though and will update you.

    in reply to: Product Overlay #89183
    UGVisionaries
    Member
    Post count: 12

    I just bought Essential Grid and had it display the information like I wanted, it’s very visual and easy to edit and works w/ woocommerce.

    in reply to: Remove "reviews tab" #88307
    UGVisionaries
    Member
    Post count: 12

    Thank you, it worked!

    in reply to: Remove "reviews tab" #88235
    UGVisionaries
    Member
    Post count: 12

    I tried putting it after “<?php” open tag but it did not work. The link to a product page on my site is:

    http://undergroundvisionaries.com/store/black-shoes/

    Here’s the code I’m using:

    
    <?php 
    add_filter( 'woocommerce_product_tabs', 'custom_woo_remove_reviews_tab', 98);
    function custom_woo_remove_reviews_tab($tabs) {
    
    unset($tabs['reviews']);
    
    return $tabs;
    }
    ?>
    
    in reply to: Remove "reviews tab" #87649
    UGVisionaries
    Member
    Post count: 12

    I posted this same code to my child functions.php and it didn’t work. I’m using a lightbox and I have an add_action for my lightbox in the functions.php file and it’s working fine. Are there any alternatives?

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