Okay
  Public Ticket #1173066
Visual problems
Closed

Comments

  •   pierogiglio started the conversation
  • [deleted] replied

    Hi pierogiglio,

    1. If you want to make 4 columns in "Related products", then add the following code in functions.php:

    function aurum_product_columns_related_products( $cols ) {
    global $woocommerce_loop;

    if ( ! empty( $woocommerce_loop['name'] ) && in_array( $woocommerce_loop['name'], array( 'related' ) ) ) {
    return 'col-md-3';
    }
    return $cols;
    }
    add_filter( 'aurum_product_columns', 'aurum_product_columns_related_products' );

    Also you need to replace one file (one time only):

    Download this file and replace it in this directory (of the theme): /wp-content/themes/aurum/woocommerce/loop

    2. If you add this CSS, then :

    .woocommerce .shop-item .item-info a[data-product_id] {
    color: transparent;
    text-indent: -9999px;
    }

    .woocommerce .shop-item .item-info a[data-product_id]:before {
    text-indent: 0px;
    }

    I hope this will help.

  •   pierogiglio replied privately
  • [deleted] replied

    Hi again,

    Related Products

    Just added this Custom CSS:

    .related .products .clear-md {
    display: none !important;
    }

    And  it fixed the issue with Related Products:


    (view large version)

    Layer Slider

    If you can’t update Layer Slider plugin that comes with our theme, go to Plugins > Installed Plugins and delete or deactivate that plugin then update/install it from Install Plugins page again. You will have the latest version of the plugin that our latest theme update supports.

    Theme Options

    When there is a notification on theme options it will break the structure of options, but no worries because when you hide the notification it will become to normal layout.

  •   pierogiglio replied privately
  •   [deleted] replied privately