Filtering
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/publish.html
http://www.wysiwygwebbuilder.com/preview.html
Frequently Asked Questions about Publishing
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/publish.html
http://www.wysiwygwebbuilder.com/preview.html
Frequently Asked Questions about Publishing
-
-
- Posts: 4
- Joined: Mon Sep 21, 2020 1:52 pm
Filtering
Hello
I just downloaded the 16.0.2 version and am running in trial mode. I also downloaded the Candy template from your website which has a filtering script. The filter works fine until I link a file to an image. Once a link is created it no longer filters the images correctly. The filter script itself is very basic which leads me to believe the issue is a bug and I wanted to report it since this is the only thing preventing me from purchasing your product.
Below are links to both the candy template and my test project. The only difference between both is the links I created.
http://omnidimensions.com/candy/test.zip
http://omnidimensions.com/candy/candy.zip
I'm hoping you can get this addressed. Looking forward to becoming a customer
Jordan
I just downloaded the 16.0.2 version and am running in trial mode. I also downloaded the Candy template from your website which has a filtering script. The filter works fine until I link a file to an image. Once a link is created it no longer filters the images correctly. The filter script itself is very basic which leads me to believe the issue is a bug and I wanted to report it since this is the only thing preventing me from purchasing your product.
Below are links to both the candy template and my test project. The only difference between both is the links I created.
http://omnidimensions.com/candy/test.zip
http://omnidimensions.com/candy/candy.zip
I'm hoping you can get this addressed. Looking forward to becoming a customer
Jordan
Re: Filtering
First note that this has nothing to do with WB16. The filter functionality in the candy template is a custom script (implemented in HTML object 'Html1').
Your demo project seems to work correct for me.
Can you please describe exactly what I need to do to make it not work?
Your demo project seems to work correct for me.
Can you please describe exactly what I need to do to make it not work?
-
-
- Posts: 1440
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Filtering
The provided files which contained the filter works fine for me also. If you need to filter images you can use the Photo Gallery that will work 100% fine for you it has filter option better than the candy one. And purchase the product as soon as possible, may be a little bit of premium would make the script work fully
-
-
- Posts: 4
- Joined: Mon Sep 21, 2020 1:52 pm
Re: Filtering Bug
Thank you both for the prompt responses! Speaks volumes of your support!!
Not sure how it is working for you both but I will spell out my specific issue to see if it helps identify the exact problem.
Please remember, what I'm trying to do is link a file to each image. I'm not just trying to filter images.
Without a link the filter works fine and filters all images in-line. Meaning the images all line up in a single row.
With a link the filter still works but the images are no longer in-line. They show up but it seems they appear in the exact spot which they're placed on the grid. The objective is to have them filter and appear in-line.
For example, without a link the "lollipops" and "candy" images when filtered all appear on the same row. Yet when a link is established and the filter is applied, the images still appear but not on the same row.
I have published both versions for you to see exactly what I mean:
The first link is the original candy template. Please notice when you click on any of the filters all images appear in-line. Meaning they are filtered and appear on the same row regardless of where their original location was on the grid.
http://omnidimensions.com/candy/index.html
This second link has a link associated to each image. Please notice when you click on the lollipop or candy filters the images still appear but not in-line. They appear 2 in one row and 1 in another row.
http://omnidimensions.com/candy/test/index.html
Hopefully this helps bring clarity to the issue at hand.
Jordan
Not sure how it is working for you both but I will spell out my specific issue to see if it helps identify the exact problem.
Please remember, what I'm trying to do is link a file to each image. I'm not just trying to filter images.
Without a link the filter works fine and filters all images in-line. Meaning the images all line up in a single row.
With a link the filter still works but the images are no longer in-line. They show up but it seems they appear in the exact spot which they're placed on the grid. The objective is to have them filter and appear in-line.
For example, without a link the "lollipops" and "candy" images when filtered all appear on the same row. Yet when a link is established and the filter is applied, the images still appear but not on the same row.
I have published both versions for you to see exactly what I mean:
The first link is the original candy template. Please notice when you click on any of the filters all images appear in-line. Meaning they are filtered and appear on the same row regardless of where their original location was on the grid.
http://omnidimensions.com/candy/index.html
This second link has a link associated to each image. Please notice when you click on the lollipop or candy filters the images still appear but not in-line. They appear 2 in one row and 1 in another row.
http://omnidimensions.com/candy/test/index.html
Hopefully this helps bring clarity to the issue at hand.
Jordan
Re: Filtering
This is expected behavior because the filter is applied to the images.
If you add links to the images then the structure of the HTML changes, so then you will need to update the script.
For example:
Once again, note that this has nothing to do with WWB16. The template is provided as an example how to create a custom made filter.
If you add links to the images then the structure of the HTML changes, so then you will need to update the script.
For example:
Code: Select all
<script>
$(document).ready(function()
{
// NOTE: each image in the gallery has a class 'filter' with 'lollipops', 'candy' or 'cakes' as the category in Object HTML->Inside Tag
$( "input[name=filter]:radio" ).click(function()
{
var value = $(this).attr('value');
value = value.toLowerCase();
if (value == "all")
{
$('.filter').closest('div').show('1000');
}
else
{
$(".filter").not('.'+value).closest('div').hide('3000');
$('.filter').filter('.'+value).closest('div').show('3000');
}
$("input[name=filter]:radio").checkboxradio("refresh");
});
});
</script>
-
-
- Posts: 4
- Joined: Mon Sep 21, 2020 1:52 pm
Re: Filtering
Thanks Pablo! You and Wonderful just converted a sale!!
On a separate subject, do you have a way to do "pageflip" or "flipbook" ? Basically I want to have pdf files read like a book. When a user clicks or uses the left/right arrows the page has a turn animation. If it provides the sound of a page turning even better. I have used Real3d Flipbook on WordPress sites. Hoping you have something similar
Regardless you sold me!
Jordan
On a separate subject, do you have a way to do "pageflip" or "flipbook" ? Basically I want to have pdf files read like a book. When a user clicks or uses the left/right arrows the page has a turn animation. If it provides the sound of a page turning even better. I have used Real3d Flipbook on WordPress sites. Hoping you have something similar
Regardless you sold me!
Jordan
- BaconFries
-
- Posts: 5648
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Filtering
Not directly as this will require a custom third party script see the following url
https://www.flipbuilder.com/
Note to implement see the following
https://www.wysiwygwebbuilder.com/add_html.html
https://www.flipbuilder.com/
Note to implement see the following
https://www.wysiwygwebbuilder.com/add_html.html
-
-
- Posts: 1440
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Filtering
we are grateful. your welcome...Jordan Michaels wrote: ↑Mon Sep 21, 2020 5:56 pm Thanks Pablo! You and Wonderful just converted a sale!!
Regardless you sold me!
Jordan
Re: Filtering
@Jordan
Can you please update your forum account with a valid order number?
Can you please update your forum account with a valid order number?