WP Catalogue Plugin Help

Discussion in 'WordPress' started by faizzsheikh, May 11, 2014.

  1. #1
    I am using the WP Catalogue Plugin to create these product listing pages./

    All Products Page: http://www.allindiafurniture.com/all-india-furniture-store/
    Product Listing Page: http://www.allindiafurniture.com/wpccategories/sofa-set/

    I am using the Oxygen theme for this website.

    Both these pages are appearing to be untidy
    From the All Products Page I want to remove the Grey background breadcrumb which I think is the default breadcrumb by the Oxygen theme.

    From the product listing page you can see the WP Catalogue breadcrumb is overlapping the top menu which is looking very bad.

    Looking forward for your assistance!
     
    faizzsheikh, May 11, 2014 IP
  2. TIEro

    TIEro Active Member

    Messages:
    741
    Likes Received:
    177
    Best Answers:
    5
    Trophy Points:
    70
    #2
    I don't see either of those problems in Chrome: on both pages, the breadcrumb background is white and looks fine. The only oddity in my browser is a duplicate of "Home" when on the home page (in small text, just under the nav bar "Home", not in the breadcrumb).
     
    TIEro, May 11, 2014 IP
  3. carlo75

    carlo75 Active Member

    Messages:
    129
    Likes Received:
    14
    Best Answers:
    1
    Trophy Points:
    80
    #3
    Hi faizzsheik,
    I see the grey breadcrumb only on the second page you posted.

    For remove the breadcrumb, there are 2 ways: using CSS or editing php file.

    1st way, use CSS:
    add the following to your CSS stylesheet (style.css)

    .breadcrumbs {
    display: none;
    }

    2nd way, edit PHP:
    open functions.php and find

    /* Add the breadcrumb trail just after the container is open. */
    add_action( "{$prefix}_open_content", 'breadcrumb_trail' );

    /* Breadcrumb trail arguments. */
    add_filter( 'breadcrumb_trail_args', 'oxygen_breadcrumb_trail_args' );

    comment out the lines:

    /* Add the breadcrumb trail just after the container is open. */
    // add_action( "{$prefix}_open_content", 'breadcrumb_trail' );

    /* Breadcrumb trail arguments. */
    // add_filter( 'breadcrumb_trail_args', 'oxygen_breadcrumb_trail_args' );


    Consider to make this change inside a child theme instead of the original Oxygen, otherwise at next update of theme, you'll lose all the modification.

    Hope this help.
    Regards.
     
    Last edited: May 13, 2014
    carlo75, May 13, 2014 IP