-
AuthorPosts
-
January 18, 2016 at 6:13 pm #567292
Is there a way to input a size for the images displayed within the Product List? I am using the Advanced Layout Editor and the Plugin Addition – Product List.
Also, on the main shop page, is there a way to change ‘sort by name’ to read ‘sort by length’?
Thank you!!
- This topic was modified 8 years, 11 months ago by cinchmedia.
January 19, 2016 at 3:55 am #567543Hey Beth!
You can change the size on line 118 in the /enfold/functions.php file.
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
And then add this to your custom CSS.
.av-catalogue-list img { width: 250px !important; }
The second request would take a lot of time and code to implement so it would have to be considered custom work.
Regards,
ElliottJanuary 19, 2016 at 8:29 pm #568090Thank you for your prompt response. I did figure out the way to switch ‘sort by name’ to ‘sort by length’.
Is there a way to add the sort/order functions when using Advanced Layout Editor and the Plugin Addition – Product List? I would like the customer to be able to provide list or grid options… each being sortable. If this is a custom job, please let me know pricing and timing.
Thank You!
January 19, 2016 at 9:00 pm #568112Hey!
Regards,
YigitJanuary 19, 2016 at 9:16 pm #568130I am looking to provide the order by dropdown that appears with the Advanced Layout Editor and the Plugin Addition – Product Grid (http://158.e06.myftpupload.com/new-boat-listings/) when using the Advanced Layout Editor and the Plugin Addition – Product List(http://158.e06.myftpupload.com/test/). I would like them to sort ascending and descending as well. I don’t see how the above link applies, but thanks.
If this is a custom job, please let me know pricing and timing.
- This reply was modified 8 years, 11 months ago by cinchmedia.
January 21, 2016 at 7:01 am #569195Hey!
Is there a way to add the sort/order functions when using Advanced Layout Editor and the Plugin Addition – Product List? I would like the customer to be able to provide list or grid options… each being sortable. If this is a custom job, please let me know pricing and timing.
This is possible but you have to modify the config-templatebuilder > aviashortcodes > productslider.php file directly. Look for the html_list method/function then look for this code around line 320:
switch($columns) { case "1": $grid = 'av_fullwidth'; break; case "2": $grid = 'av_one_half'; break; case "3": $grid = 'av_one_third'; break; case "4": $grid = 'av_one_fourth'; break; case "5": $grid = 'av_one_fifth'; break; } ob_start();
.. below, you can add this function:
avia_woocommerce_frontend_search_params();
Regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.