Jump to content

Mats

Members
  • Posts

    355
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Mats

  1. 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. 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. 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. 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();
            }

     

  5. 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!

    • Like 1
  6. 1 hour ago, bernhard said:

    = I have not thought about that, but it's a good idea and easy to implement.
    = I have not thought about that and I'm not willing to add any other services.

    = I have not thought about that and I don't  know how o add any other service.  ? 

    2 hours ago, Macrura said:

    Does this use a fixed api key, or will that api key need to be configurable at some point?

    This uses a fixed api key. 

     

    • Like 2
  7. 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.

    splashandgrab.thumb.jpg.c9ffce8944a65d35ffe1e53fe081209f.jpg

    Thanks to @apeisa for building the  FlickrInputField Module and @Robin S for AddImageUrls,  took a lot ideas and code from those modules.

    • Like 16
×
×
  • Create New...