Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #425845

    Hi Guys

    I am trying to make a catalogue list similar to the one on this page:
    http://www.jagged-globe.co.uk/trek/africa.html

    I do not need so much information as that layout shows, but need a photo, title, description.
    I have all my trips made as portfolio items, and am looking at the one-column portfolio grid
    or catalogue shortcode. I would like possibly to have a sortable layout, which you can’t do with the catalogue items, right?
    What would you recommend? I am having trouble with the sizes of the images in the 1-column layout – how to I control that?
    I see I can set different sizes in the options manually, but with the 1-column layout they get resized and are too big.

    I am having lots of trouble figuring this out. Should I look at other plugins? I have done some stuff with tablepress, as you can see in the link below, but I have to put in everything manually :( and it’s not a great user interface. I’d rather use something that can use my existing portfolio categories.

    Another question – on a page like this:http://www.jagged-globe.co.uk/trek/i/kilimanjaro+lemosho.html, when you click on one of the tab items, it snaps the page up to an anchor link. I would like something similar to happen on this page:http://andes-world-travel.flywheelsites.com/trips/explore-col-46b/, where I have made an anchor link in front of the title “From the Andes…”. How can I make the link from the tab title? I tried with an ITINERARY tag but it didn’t work.

    thanks for your help. You can see my attempts below
    nancy

    • This topic was modified 9 years, 7 months ago by Munford.
    #426749

    Hi Munford!

    for sorting your catalogue list try this code in your functions.php:

    add_filter('woocommerce_default_catalog_orderby', 'my_custom_default_catalog_orderby');
    
    function my_custom_default_catalog_orderby() {
    return 'title'; // Can also use date
    }
    

    The can control the image in your catalogue list using this in Quick CSS:

    .av-catalogue-image {
    width: 95%;
    }
    

    Adjust as needed.

    Please always use different posts for different questions, so you will get a faste reply and other can find better what they are searching in the forum.

    Here you will find a documentation about how to implement anchor links into your page: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Cheers!
    Andy

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.