-
AuthorPosts
-
joeluvny Friend
joeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 11, 2015 at 5:48 pm #207256I am having a problem with the K2 search for one of my categories.
When ever I select any choices from any of the extra fields….. once the search finds that choice, the selected choice name disappears from the K2 fieldExample.
If I select “Brand A” from the name field
then brand normally A remains in the as the selected choice until I choose another brand.But what is happening instead is when I choose “Brand A” or B or C or D
the brand choice dispersers from the field and it goes back to saying “Select Name”Does anybody know why this is happening?
Go to Home —> Clients to see what i mean
Thank you
JosephLuna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 12, 2015 at 3:11 am #573762joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 17, 2015 at 12:02 am #574321No, it is not fixed!
Did you go to http://gramercy-atelier.com/clients ? (use the login info I gave you)Just choose any of the options from any of the search fields on the left.
Wait for the results from that option to appear on the right.
Then look at that search field you chose on the left and you will see that the option you choose from that search field as disappearedThat search option you choose, should remain visible in that search filed.
Example:
Name [field] displays “Select Name”
I select: “Mrs. Dunning” (and Mrs Dunning’s information displays as it should)The:
Name [field] displays “Select Name” (again) THIS IS WRONG – this is whats happeningBut it should display:
Name [field] displays “Mrs. Dunning” (only) THIS IS CORRECTPlease take another look, sorry for taking so long to get back to you.
Joseph
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 17, 2015 at 12:02 am #640660No, it is not fixed!
Did you go to http://gramercy-atelier.com/clients ? (use the login info I gave you)Just choose any of the options from any of the search fields on the left.
Wait for the results from that option to appear on the right.
Then look at that search field you chose on the left and you will see that the option you choose from that search field as disappearedThat search option you choose, should remain visible in that search filed.
Example:
Name [field] displays “Select Name”
I select: “Mrs. Dunning” (and Mrs Dunning’s information displays as it should)The:
Name [field] displays “Select Name” (again) THIS IS WRONG – this is whats happeningBut it should display:
Name [field] displays “Mrs. Dunning” (only) THIS IS CORRECTPlease take another look, sorry for taking so long to get back to you.
Joseph
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 17, 2015 at 12:02 am #739330No, it is not fixed!
Did you go to http://gramercy-atelier.com/clients ? (use the login info I gave you)Just choose any of the options from any of the search fields on the left.
Wait for the results from that option to appear on the right.
Then look at that search field you chose on the left and you will see that the option you choose from that search field as disappearedThat search option you choose, should remain visible in that search filed.
Example:
Name [field] displays “Select Name”
I select: “Mrs. Dunning” (and Mrs Dunning’s information displays as it should)The:
Name [field] displays “Select Name” (again) THIS IS WRONG – this is whats happeningBut it should display:
Name [field] displays “Mrs. Dunning” (only) THIS IS CORRECTPlease take another look, sorry for taking so long to get back to you.
Joseph
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 17, 2015 at 4:30 am #574354Hi Joseph,
You get this issue because extra field ‘Name’ type Searchable value has space. With this selected value the space is trimmed out.
In order to fix this issue, you can choose to display this extra field in other type like Magic Selection, Multi Select list, check box.If you still want to keep this extra field in Drop down box, go to file:
modulesmod_jak2filterhelper.php
find :
public function getSelect($fieldname, $field){
$input = JFactory::getApplication()->input;$selected_values = $input->get($fieldname, null);
in about line 589
change to:
public function getSelect($fieldname, $field){
$input = JFactory::getApplication()->input;$selected_values = $input->get($fieldname, null,'STRING');
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 17, 2015 at 4:30 am #640693Hi Joseph,
You get this issue because extra field ‘Name’ type Searchable value has space. With this selected value the space is trimmed out.
In order to fix this issue, you can choose to display this extra field in other type like Magic Selection, Multi Select list, check box.If you still want to keep this extra field in Drop down box, go to file:
modulesmod_jak2filterhelper.php
find :
public function getSelect($fieldname, $field){
$input = JFactory::getApplication()->input;$selected_values = $input->get($fieldname, null);
in about line 589
change to:
public function getSelect($fieldname, $field){
$input = JFactory::getApplication()->input;$selected_values = $input->get($fieldname, null,'STRING');
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 17, 2015 at 4:30 am #739363Hi Joseph,
You get this issue because extra field ‘Name’ type Searchable value has space. With this selected value the space is trimmed out.
In order to fix this issue, you can choose to display this extra field in other type like Magic Selection, Multi Select list, check box.If you still want to keep this extra field in Drop down box, go to file:
modulesmod_jak2filterhelper.php
find :
public function getSelect($fieldname, $field){
$input = JFactory::getApplication()->input;$selected_values = $input->get($fieldname, null);
in about line 589
change to:
public function getSelect($fieldname, $field){
$input = JFactory::getApplication()->input;$selected_values = $input->get($fieldname, null,'STRING');
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 17, 2015 at 7:42 pm #574480Thank you, that worked perfectly! 😀
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 17, 2015 at 7:42 pm #640825Thank you, that worked perfectly! 😀
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 17, 2015 at 7:42 pm #739489Thank you, that worked perfectly! 😀
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 22, 2015 at 5:33 pm #575092I just realized that now I am experiencing 2 new bad issues
1. When I try to use the K2 Frontend editing for any item, the extra fields tab does not show the extra fields anymore, it grabs and displays an irrelevant search from another category and displays that instead of the extra fields themselves.
2. When I use the K2 search it displays the correct search results but when I click on any of the search results items, it displays the wrong item.
For instance if you search for the name Mrs. Louise Owens it will display 4 results correctly. But when you click on any of the 4 Mrs. Louse Owens, only the 1st is displayed.
Do you know why this is happening?
Joseph
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 22, 2015 at 5:33 pm #641436I just realized that now I am experiencing 2 new bad issues
1. When I try to use the K2 Frontend editing for any item, the extra fields tab does not show the extra fields anymore, it grabs and displays an irrelevant search from another category and displays that instead of the extra fields themselves.
2. When I use the K2 search it displays the correct search results but when I click on any of the search results items, it displays the wrong item.
For instance if you search for the name Mrs. Louise Owens it will display 4 results correctly. But when you click on any of the 4 Mrs. Louse Owens, only the 1st is displayed.
Do you know why this is happening?
Joseph
joeluvny Friendjoeluvny
- Join date:
- June 2009
- Posts:
- 130
- Downloads:
- 39
- Uploads:
- 2
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
June 22, 2015 at 5:33 pm #740098I just realized that now I am experiencing 2 new bad issues
1. When I try to use the K2 Frontend editing for any item, the extra fields tab does not show the extra fields anymore, it grabs and displays an irrelevant search from another category and displays that instead of the extra fields themselves.
2. When I use the K2 search it displays the correct search results but when I click on any of the search results items, it displays the wrong item.
For instance if you search for the name Mrs. Louise Owens it will display 4 results correctly. But when you click on any of the 4 Mrs. Louse Owens, only the 1st is displayed.
Do you know why this is happening?
Joseph
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
June 23, 2015 at 3:43 am #575161Hi Joseph,
1. For problem one, follow my solution posted in this thread: http://www.joomlart.com/forums/topic/k2s-extra-fields-tab-is-displaying-the-homepage/#post-574773
2. It caused of sh404, you can check that all 4 K2 item of Mrs. Louse Owens has only 1 link. All 3 links has duplicate to the main one. Please recheck the configuration of SH404 in your site. -
AuthorPosts
This topic contains 29 replies, has 2 voices, and was last updated by Luna Garden 9 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum