Jump to content

Mats

Members
  • Posts

    353
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Mats

  1. Mats

    Wireframe

    This solved it: \ProcessWire\__text(' Your email', 'email'); I tried to add namespace ProcessWire earlier but got an error that it had to be added at the beginning of the file. Thanks @teppo! Edit: Seems like the field doesn't show up in the editor. The field (label is showing) is there but no field to edit.
  2. Mats

    Wireframe

    Right, here is the error: Fatal Error: Uncaught Error: Call to undefined function __text() in site/templates/views/home/default.php I have created and added the field to the template. When i call the field with $page->myfuncfield it outputs FunctionalWireData.
  3. Mats

    Wireframe

    Hi @teppo! I'm trying to use Ryans Functional field on a Wireframe site like this in the home view: <?= __text('Email') ?> But i get an error: #0 wire/core/TemplateFile.php (327): require() #1 site/modules/Wireframe/lib/View.php (84): TemplateFile->___render() #2 wire/core/Wire.php (414): Wireframe\View->___render() #3 wire/core/WireHooks.php (951): Wire->_callMethod('___render', Array) #4 wire/core/Wire.php (485): WireHooks->runHooks(Object(Wireframe\View), 'render', Array) #5 site/modules/Wireframe/Wireframe.module.php(799): Wire->__call('render', Array) #6 wire/core/Wire.php (417): Wireframe->___render(Array) #7 /Applications/MAMP/htdocs/stellankram (line 19 of site/templates/views/home/default.php) Do you have any ideas how to get the Functional fieldtype working with Wireframe? /Mats
  4. Mats

    Wireframe

    Thanks @teppo! I used the code in a search function like you do in the Wireframe docs site. The init method works fine. Thanks for your help and for creating Wireframe and SearchEngine, trying to use them on everything i build nowadays.
  5. Mats

    Wireframe

    I'm using the Searchengine module along with Wireframe. When trying to set the view for the ajax return it seems that the default view is called instead. When i add mark up to the default view it shows up in the json. if ($this->wire('config')->ajax) { // Respond AJAX query with JSON search results. $this->view->setLayout(null)->setView('json'); header('Content-Type: application/json'); // Return results as JSON. $json = $searchEngine->renderResultsJSON([ 'results_json_fields' => [ 'title' => 'title', 'desc' => 'summary', 'url' => 'url', 'parent' => 'parent.title', 'template' => 'template.name', 'image' => 'pris_strl_nr_repeater.first.images.first.url', 'price' => 'pris_strl_nr_repeater.first.pris' ], 'results_json_options' => JSON_PRETTY_PRINT, ]); return $json; } else { // Render search form and results. return $searchEngine->render(); }
  6. Mats

    Wireframe

    No, the layout did not include the ProcessWire namespace. I will try that. The version is 0.20.2 The namespace solved it. Was pretty sure i tested that, but must have missed it. Thanks Teppo!
  7. Mats

    Wireframe

    I'm trying to use a component in the layout file and followed the instructions here: https://wireframe-framework.com/docs/view/components/. But i get an error that the Wireframe class is not found: Fatal Error: Uncaught Error: Class 'Wireframe' not found in site/templates/layouts/default.php:12
  8. Hi @Bike Did you check the docs? https://processwire.com/docs/fields/select-options-fieldtype/#multi-language-translating-options If you want pages as options you can use the page reference field. /Mats
  9. @JeevanisM Hi! I don't know if that is possible at the moment, the website field is already there like Wanze mentioned.
  10. The 5000 hits limit resets hourly so I think it should be ok.
  11. = I have not thought about that and I don't know how o add any other service. ? This uses a fixed api key.
  12. Hi @bernhard! No, i haven't thought about that.
  13. The name might be the best part of the module. ? A Readme is added.
  14. BETA: SplashAndGrab https://github.com/madebymats/InputfieldSplashAndGrab This module attaches a search input to selected image fields that lets you search and download images from Unsplash. (Unsplash is a stock photo service where you can download images for free and use as you wish. No strings attached.) You can search by string, colors, orientation/crop and order by relevance or time published I find Unsplash useful both for placeholder images when building sites but also as a time saver for editors if they don’t have any images at hand, just search, download and publish. Thanks to @apeisa for building the FlickrInputField Module and @Robin S for AddImageUrls, took a lot ideas and code from those modules.
  15. No, i don't know why it is happening. Check the link for the pull request, it might help. This could help also: https://stackoverflow.com/questions/48599370/issues-with-google-map-greyed-out
  16. Do you have the latest version of the Googles map marker module? There was an issue with hidden elements (looks like the map is in a repeater field) although it should be fixed in the latest version: https://github.com/ryancramerdesign/FieldtypeMapMarker/pull/2 There is a Leaflet version of this module: https://modules.processwire.com/modules/fieldtype-leaflet-map-marker/. Don't know if it will solve your issue though.
  17. @Mamun Paul Do you have any console errors? OT: Looks like this site could be of interest based on your map: https://alltpaoland.se/platser/parboang-naturturism/ ?
  18. Hera are som tips and tricks for Azure web apps on IIS: https://cloud.accigo.se/blog/azure-app-services-and-wordpress-slow-heres-how-to-fix-it/
  19. Hi! Did you install the MarkupAddInlineScript module? /Mats
  20. Tested on another MAMP installation and it works as expected there.
  21. Can't save Crop Settings (square,200,200 for example). Other settings saves. ProcessWire 3.0.152 dev
  22. Tested on local installation on MAMP. No previous CroppableImage module installed. I get the error only when trying to save with Crop Settings otherwise it saves as expected. Downloaded the module here: https://github.com/horst-n/CroppableImage4
  23. Hi @horst! When saving Crop Settings with MAMP i get (square,200,200 for example) . DB connect error 2006 - MySQL server has gone away Everything else seems fine when saving.
  24. https://dockyard.com/blog/2019/12/19/lessons-learned-10-years-of-running-a-software-consultancy
×
×
  • Create New...