Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • attex Friend
    #957489
    1. The keyword search doesn’t have the results that i want (i have already tried the intitle, etc)
    2. No ordering (if i download and install the file that you propose i have an extreme load in my server). I have only the oldest first.
    3. How to change the order in my module fields (not only extra fields).

    If you have an idea about these, please let me know!

    Thanks!!!

    Luna Garden Moderator
    #957831

    Hi,

    The keyword search doesn’t have the results that i want (i have already tried the intitle, etc)

    Go to backend >> JA K2 Filter >> Search Configuration >> the number character you input in Keyword field must be in Minimum Keyword Search and Maximum Keyword Search.

    No ordering (if i download and install the file that you propose i have an extreme load in my server). I have only the oldest first.

    The Order default setting in backend >> JA K2 Filter >> Search Configuration >> Search Result Item Layout >> Part Other Layout Options >> Item Ordering.

    How to change the order in my module fields (not only extra fields).

    JA K2 Filter doesn’t have option to change the order of other field in Module.

    attex Friend
    #957843

    I have another question:

    how to have to keywords searches (one in title and the other in text)

    Thanks in advance!

    attex Friend
    #957891

    Anyone please?

    attex Friend
    #957945

    I also have this fatal error when i activate the radio keywords via php

    attex Friend
    #958190

    1) i have enabled the radio keywords via your php code because i didn’t got this option by your module and i have this fatal error:
    Fatal error: Class ‘modJak2filterHelper’ not found in /home/oenet/develop/components/com_jak2filter/models/itemlist.php on line 1292

    2) i have already put numbers in minimum and maximum keywords. My problem is that your search doesn’t show me the results that i want when i write greek words.

    3) I have tried several times for order by the options of the component but always it shows me the oldest first. I tried your fix and my server loads were too high.

    4)When i say about the order of the fields in the module, i mean that i would like to have the possibility to put firstly the extra fields and then keywords etc.

    Thanks!!!

    Luna Garden Moderator
    #958246

    1) i have enabled the radio keywords via your php code because i didn’t got this option by your module and i have this fatal error: Fatal error: Class ‘modJak2filterHelper’ not found in /home/oenet/develop/components/com_jak2filter/models/itemlist.php on line 1292

    Could you describe what you’re trying to do, then we could help you better.

    2) i have already put numbers in minimum and maximum keywords. My problem is that your search doesn’t show me the results that i want when i write greek words.

    In case your language is in Greek Language, then you must input the number of Maximum Keyword Search higher, cause the number of Maximum Keyword Search for Latin Language, for other type Language, it will take more characters to display.

    3) I have tried several times for order by the options of the component but always it shows me the oldest first. I tried your fix and my server loads were too high.

    Did you tried to Indexing, what JA K2 Filter version did you use, please use the latest version. I need your site URL, admin account, FTP account to check this case.

    4)When i say about the order of the fields in the module, i mean that i would like to have the possibility to put firstly the extra fields and then keywords etc.

    Yes, if you want to change the order of Module field , you can custom in file:

    modules\mod_jak2filter\tmpl\default.php

    This code part defines to display extra fields:

    <?php if ($list): ?>
                <?php if ($ja_stylesheet == 'vertical-layout' && count($list) > 1): ?>
                <li id="ja-extra-field-accordion-<?php echo $module->id; ?>" class="accordion">
                    <?php foreach ($list as $glist): ?>
                        <?php $groupid = $glist['groupid']; ?>
                        <h4 class="heading-group heading-group-<?php echo $groupid ?>"><?php echo $glist['group'] ?></h4>
                        <div>
                            <ul>
                                <?php require JModuleHelper::getLayoutPath('mod_jak2filter', 'default_extrafields'); ?>
                            </ul>
                        </div>
                    <?php endforeach; ?>
                </li>
            <?php else: ?>
                <?php foreach ($list as $glist): ?>
                    <?php require JModuleHelper::getLayoutPath('mod_jak2filter', 'default_extrafields'); ?>
                <?php endforeach; ?>
            <?php endif; ?>

    attex Friend
    #958288
    1. I activated the radio buttons of the keywords via the module php code, as you can see in the screenshot_1.jpg (they were deactivated). So if i enable them in the backend, when i go to search in the frontend i have this fatal error in the page of my search results.

    2. Works great!

    3. Yes i have already tried indexing. I use the 1.2.2 version. I told you that i tried the newest version and i had an extreme server load.

    4. Works great! Thanks!

    1. Screenshot_1
    attex Friend
    #958291
    This reply has been marked as private.
    Luna Garden Moderator
    #958508

    I activated the radio buttons of the keywords via the module php code, as you can see in the screenshot_1.jpg (they were deactivated). So if i enable them in the backend, when i go to search in the frontend i have this fatal error in the page of my search results.

    This function was removed long time ago, and it was out of date now. We changed the way of searching like this: https://static.joomlart.com/images/userguide/jaec/ja_k2_filter/update/module-tooltip.png

    Yes i have already tried indexing. I use the 1.2.2 version. I told you that i tried the newest version and i had an extreme server load.

    Newest version is now 1.2.3 Try to upgrade, problem will be fixed.

    Too many jqueries conflicts. I tried the jquery easy plugin but nothing.

    First, JA K2 Filter need Mootool to make JS work smoothy, make sure Mootool is called on your site.

    And I see this code that you inserted, not in right structure

    function onLoadScript(){
        window.addEvent('load', function () {
            if ($('jak2filter205').getElement('#category_id')) {
                jak2DisplayExtraFields(205, $('jak2filter205').getElement('#category_id'), 0);
            }
    }

    change to:

    function onLoadScript(){
        window.addEvent('load', function () {
            if ($('jak2filter205').getElement('#category_id')) {
                jak2DisplayExtraFields(205, $('jak2filter205').getElement('#category_id'), 0);
            }
    });

    attex Friend
    #958588

    Thank you for your answers!
    I will try the new version again and i will tell you the results.
    I have chosen the magic select mode for showing the tags but i have problem with javascript error.
    If you want to check and tell me how to fix it.
    How to call mootools in joomla 3.6?

    attex Friend
    #958664

    Another problem my friend:
    I updated the module and component to the latest version via the ja extension manager.
    So, when i tried to update the indexing then i had this problem (screenshot_1).
    Then i tried to put this code

    .' GROUP BY CONCAT(xref.tagID, #__k2_items.id)';

    in /components/com_jak2filter/helpers/helper.php below this:

    //4. Tag
            $query = "
                SELECT xref.tagID, #__k2_items.id, #__k2_items.language
                FROM #__k2_items
                JOIN #__k2_tags_xref AS xref ON #__k2_items.id = xref.itemID"
                .$whereItem;

    and i ended with this problem (screenshot_2).

    Any ideas?


    1. Screenshot_1-1
    2. Screenshot_2
    Luna Garden Moderator
    #958888

    Hi,

    I have chosen the magic select mode for showing the tags but i have problem with javascript error.

    I can’t access your site, so not able to check the JS error.

    when i tried to update the indexing then i had this problem (screenshot_1). and i ended with this problem (screenshot_2).

    Kindly check what you edited again, I think the code you entered is not correct.

    attex Friend
    #962267

    Everything is ok with mootools. All problems with conflicts and javascripts errors have been solved.
    I upgraded the component to the newest version (1.2.3) and when i choose the "most recent first" in the component settings, then the search results page loads very slow. The results never come. When i choose the "default" in ordering then everything is ok. What can i do for this.

    attex Friend
    #962355

    Anyone?
    I need to solve it please!

Viewing 15 posts - 1 through 15 (of 21 total)

This topic contains 20 replies, has 2 voices, and was last updated by  Luna Garden 7 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum