Jump to content

Alkrav

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by Alkrav

  1. Hi, @virtualgadjo! Thank you for trying interpretation of the system logic, and i understand and support it. But even early user can choose the images from any pages by clicking on the top with path on PWimage's modal window. But the interface of choosing pages without searching ability isn't comfortable for me. I think it needs rework design of PWimage view and add search line there and to the childs of page on dashboard. Anyway Thank you.
  2. Hello @teppo Big thanks for this helpfull information. It works fine as you know. I had searching for any infos about it on the forum, but didn't. May be i inserted the wrong interpretaion of issue. Where i can read @ryan's notice of it? Thanks again.
  3. Hi Everybody. I have the issue with image button in CKEditor (PWimage plugin) after upgrade from PW 3.0.165 to PW 3.0.184. When i click in image button in CKEditor in the repeated field is open modal window with strange information and proposition to choose the page for use images. Like on the screenshot. With the text: There are no image fields on this page. Choose another page to select images from. But when i click the same button in CKeditor but in the ordinary textarea (not repeated) field it works fine and opens modal window with images linked with this page Is anybody know about this issue solution? Thanx.
  4. Thank you for useful answer. And i understood that you gave base functions for extended using. And logically i tried to implement live search with stadart jQuery function + your module and its must give waited result, but don't. Thanks for the tip about GET, and i tried and it worked not good and only if i placed result php-string from module and separately <div id="se-results"></div>. Sorry for my newbie mistakes.
  5. @Sevarf2 thanks. Interesting reaction: If i delete frome page code <?= $searchEngine->renderResults() ?> string (beacause there is no reaction) and add <div id="se-results"></div> i'll get loaded the same page in the div. To whitch URL i need send POST query to get results (url: "./",)?
  6. Hi. I'll try use jQuery for realize live search on this module. But it doesn't work. I took these code: $(document).ready(function() { var $result = $('#se-results'); $('#se-form').on('keyup', function(){ var q = $(this).val(); if ((q != '') && (q.length > 1)){ $.ajax({ type: "POST", url: "./", data: {'q': q}, success: function(msg){ $result.html(msg); if(msg != ''){ $result.fadeIn(); } else { $result.fadeOut(100); } } }); } else { $result.html(''); $result.fadeOut(100); } }); $(document).on('click', function(e){ if (!$(e.target).closest('.search-form').length){ $result.html(''); $result.fadeOut(100); } }); }); What i do wrong? Maybe i use not supported method?
  7. Hello everybody. Nice module look like good continuation of method fieldtype_cache of 2016 . Is it possible to realize showing results with AJAX like on the pics. Results is appearing under input, and last searches stored in the same style and showing when mouse click on input field. And it is good idea for logging searching data for next analize or it can be stored localy.
  8. Hi @Outward. Thanks for the answer. I use 5.6 version. But now i have changed to 7, than it works.
  9. Hi @teppo! I have just installed / downloaded SeachEngine Module on my PW 3.0.148. I got the error: It's bloked PW module area.
  10. Hi, @bernhard Thanx and yes, i have already find answer for the 1 part of my question. And add at the top of frontend template this line: <link rel="stylesheet" href="/site/templates/fontawesome/css/all.css" type="text/css"> But second part is about adding and using ready solution of PW in backend. Preview on screenshot.
  11. Hi, bernhard. Interesting module. But how output the icon to front end page? PW has "Advanced" fields option with icons choose. It works fine for the backend. It will be cool to add it in your module.
×
×
  • Create New...