Wix Pro Gallery and Grid help

Hello,

I have linked a Grid Gallery to a Dataset. When I click on “Show More” on preview only two rows opens at a time.

  1. Is there a way to either not have the “Show More” or either increase the amount of rows loading up when I click on it. https://deli236.wixsite.com/mysite-1

Wix Pro Gallery

  1. I added a Wix Pro Gallery to a page, Connected the gallery to a Dataset, when I click preview images are not showing. https://deli236.wixsite.com/mysite-1/jewellery

  2. Is there a way to show the Description under the Title similarly to a normal Grid Gallery as at the moment the description is showing on the image

I am trying to find a method to show images in a gallery, Add a Title and Description below the image and when someone scrolls down to display gallery images automatically

I would appreciate any help.

Many thanks

HI!
About "1) Is there a way to either not have the “Show More” or either increase the amount of rows loading up when I click on it. https://deli236.wixsite.com/mysite-1 "

To handle number of rows added by Show more go to Layout Panel and decrease row number in order Show More appears in edit mode.


And after that go to Settings Panel and change appropriate row number for Show More


About "1) I added a Wix Pro Gallery to a page, Connected the gallery to a Dataset, when I click preview images are not showing. https://deli236.wixsite.com/mysite-1/jewellery "

It is temporary problem and will fix soon.
About "2) Is there a way to show the Description under the Title similarly to a normal Grid Gallery as at the moment the description is showing on the image "
Looks like it is better to use Repeater in this case an connect Image/Title/Description

Dear olesiaz ,

You have made my day. I send you many many thanks for your kindness and detail.
I am extremely happy!

I wish you every success.

Hello olesiaz ,

I have sent the following message to the group but I thought I would ask you if you can me.

I have linked a collection to a Repeater.

On the left side I have added buttons for Name of Items and Retailers Names

Is there a way to create filters (or connect filters) to these Buttons so when someone clicks a button the Repeater will only show items relevant to button clicked.
https://deli236.wixsite.com/mysite-1/repeater

Totally around 15 buttons (around 5 types of products and around 10 advertisers)

I had a look at the page on this link but I do not understand what it explains.
https://www.wix.com/code/reference/wix-data.WixDataQuery.html#contains

I have no experience in coding! so really struggling.

Thank you for your time.

HI!

  1. Filter can be added the same as LOW/HIGH sorting > just add onClick event for appropriate button - for example add for Rings button


This code line add filter for Rings - $w(“#dataset2”).setFilter( wixData.filter().eq(“productType”, “Rings”) ); . For Bracelets - $w(“#dataset2”).setFilter( wixData.filter().eq(“productType”, “Bracelets “) ); .
For House of Fraser - $w(”#dataset2”).setFilter( wixData.filter().eq(“brand”, “House of Fraser”) ); etc.
2) One more point for Repeater use Next/Prev page actions to list all items matched filter e.g.

Dear olesiaz

Sorry for the late reply.

I am extremely grateful for everything that you have done for me. All the tabs are working.
Thank you very much for taking time to explain everything step by step very clearly. It has helped me immensely.

Thanks to your kindness I can now go forward with my website.

Very big thank you again,
Dilly

Dear olesiaz

I have hit another snag.

  1. I imported a csv file which has 643 items (rows) then I sync to Live.
  2. In the collection under the “Brand” column there are more than 20 brand names


3) I created a dynamic collection page, added a repeater, then connected individual item to relevant data.

But there is a problem.

When I click on the drop down it is only showing Brand names shown up to the 250th row from the collection. (Totally 8 brand names)

Brand names from 251 row number to 643 row are not showing on the drop down

I created another collection with total 200 items with 20 Brand band names, and connected it to the dynamic page. When I clicked on the drop down all the 20 brad names are showing. I did this as a test.

What I found out is for some reason the drop is only showing brand names shown only up to the 250th row on the collection.

Can you please have a look at this for me.

Thank you very much.
Dilly

HI! Thank you for case. Problem reported. Will notify here about update.

Hello olesiaz ,

Thank you for your quick reply. I look forward to receiving your update.

Any news Olesiaz.

Kind regards.

HI! No update, will notify here as soon as it is fixed.

HI! So far there is a limit to about 200 items from collection are taken into account for Dynamic Page dropdown until some workaround will be provided with Load More collection records.
You can add feature request about it here https://www.wix.com/code/home/forum/feature-requests .

Hello Olesiaz, Many thanks for taking time to reply to me. I appreciate it very much.

Hello Olesiaz,

Can you kindly help me to sort out the following issue

I added a dynamic page
I have added a repeater
Connected it to the collection

As shown on the image below I have added two buttons for items (Rings, Bracelets) and two buttons for retails (House of Fraser, Dower & hall).

  1. Is there a way when someone for example clicks on “Ring” then clicks on “house of Fraser” to show only rings sold by House of Ffraser.


I copied the following image from another retailer’s website just to show you what i am looking for.

Do you think is it possible to create the “STORES” shown below by using “Radio buttons / drop down” or is there another easier or better way to achieve what i am asking for.

I understand that I can provide everything that I am looking for by directly creating a wix store and importing all items to the store, but the downside is I cannot attach affiliate links to the wix store images.

  1. Is there a way i can add links to images on the wix store using developer tools.

Thank you so much.
Dilly

HI!

  1. About Complex filter for Repeater - you can add Input components to build desired complex filter panel + add a “Apply” button to apply all selected option at once instead of one option as it is now - Not difficult filter code improvement/change required in this case.
  2. Wix Stores: Importing Products to Wix Stores | Help Center | Wix.com about WixStore Import option.
  1. About Using Developer tool for WixStore - I think it will be in future but you are welcome to add feature request https://www.wix.com/code/home/forum/feature-requests

Hello Olesiaz, Thank you for your reply. On your answer to No 1) Do I need to add a code somewhere? I have a tiny knowledge about coding? Can you please explain what I need to do… Will it be possible for you to give me step by step details on how to create the filter. Very sorry for the trouble.

Your help is very much appreciated.

HI! For example :
$w(“#dataset1”).setFilter(
wixData.filter().contains(“filter_1”, “filter_1Value”).contains(“filter_2”, “filter_2Value”).contains(“filter_3”, “filter_1Value_1”)
.or( wixData.filter().contains(“filter_1”, “filter_1Value”).contains(“filter_2”, “filter_2Value”).contains(“filter_3”, “filter_1Value_2”) )
);