Jump to content

dragan

Members
  • Posts

    2,007
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by dragan

  1. Thanks! But sadly, this doesn't work (no error messages either). I put this in the site root - I'm probably missing something? // Bootstrap ProcessWire include('./index.php'); // Assign API variables $fields = wire("fields"); $templates = wire("templates"); $languages = wire("languages"); $en = $languages->get('en'); $us = $languages->get('us'); $fr = $languages->get('fr'); $field = $fields->get('prod_max_power_consumption'); $field->set("label$en", "Max. Power Consumption TEST"); $field->set("label$us", "Max. Power Consumption TEST"); $field->set("label$fr", "Max. consommation de courant TEST");
  2. Thanks Ryan. It works - but if I add the following code to actually output the data, I only get the default language output. If I switch to another language, it still only shows the default language. (PW 2.3.2, all field labels and values are correctly and fully translated) foreach($children as $f) { $fieldName = $f->label; $fieldValue = $page->$f; if(strlen($fieldValue) > 0) { echo "<dt>$fieldName</dt>\n"; echo "<dd>$fieldValue</dd>\n"; } } Do I manually have to add something to make this language-aware? Something with $user->language or such? I was under the impression that wouldn't be necessary anymore with the dev version 2.3.2.
  3. I've posted a question in another forum thread, because I initially didn't want to create a new forum thread for this. Since there were no replies, I'm trying it here. I'd like to set input field labels for each language via API. I have approx. 50 input fields and four languages. Doing it "manually", i.e. via GUI, would take ages, as you can imagine. Is there an API method I can use? a) get/define field, b) set language-specific field label To clarify: This is not meant to run inside a template, but just once, i.e. // Bootstrap ProcessWire include('./index.php'); // Assign API variables to make things a little easier $fields = wire("fields"); $templates = wire("templates"); etc.
  4. I like it. Fully responsive too, kudos. Nice + consistent use of green / black color scheme.
  5. hmm, that doesn't seem to work. e.g. $tpl = $templates->get("product"); $prodDescFields = $tpl->fields->get("product_description")->children; $prodDescFields is empty o_O
  6. A somewhat related question: Is it possible to grab all input fields from a particular fieldset (in the frontend)? I have 3 fieldsets in a template, and need to group these in tabs. I couldn't find a selector in the docs / cheatsheet.
  7. Nobody has any idea? I wasn't sure if I should rather post this question in one of the multilang forum threads, open a new one, or post here. (and I sure hate to cross-post) I'll be probably soon receiving a massive MS-Excel list of data that has to be exported to PW via API. The data won't be in the default language, so I'd really be eager to know how this can be accomplished via API (if at all - but knowing PW, I guess it's definitely just 2-3 lines of code...).
  8. Edit: durr... I forgot fieldset tabs! http://processwire.com/talk/topic/1592-problem-with-fieldset/ Feel free to delete this post / thread altogether... ===================================================================== Is there a method or module to group a certain number of input fields in a template (backend, edit mode)? I have basically two input field categories - product features and product description. Both categories have 1-2 dozen input fields. Together with all the other fields, it can get messy in the backend, even if I reduce the input field width to 25%. Is there a way to a) move a bunch of input fields to dedicated tabs? or b) include those in a collapsible group that are closed by default? I thought that field groups were the tool to use for this, but I'm not sure if or how.
  9. Yeah, I'd just overwrite your wire folder with the latest Github 2.3.2 version, reload, and check again. By default, it's inactive (strike-through), but can be activated with just one click.
  10. I've used API code to create a whole bunch of TextLanguage input fields, with the example @ http://processwire.com/talk/topic/1051-adding-and-assigning-fields-without-using-gui/?p=36795 Worked like a charm. Now my question: Is it possible to also assign distinct labels for each language via API? (I have a multilang site, using 2.3.2 and MultiLangPageNames) Should I use somehow wire('user')->language and switch for each lang. in my script? Or can I add a parameter directly to $f->label = "foo"?
  11. I was doing a favor today for someone who's stuck with a custom WP "theme" and wants some special functionality on top. Looking at all this mess, I shuddered, more than once.
  12. Yep, I do it like that too. It's also a lot faster than transferring files one-by-one. On the server, it unzips in 2-3 seconds. Most hosting control panels have such a feature in a file-manager tool.
  13. dragan

    Movie Talk

    Looking forward to this: Luc Besson + Scorsese. De Niro, Michelle Pfeiffer... Looks like fun
  14. Try using absolute URLs url: 'http://www.mysite.com/site/assets/files/1206/pin.png', or url: '/site/assets/files/1206/pin.png',
  15. I agree about the pictures being over-saturated. This might be OK for an Instagram audience, but on a "regular" website, it's a bit over-the-top. Also, the wooden design elements are a bit too much in some places, e.g. the Europe map http://www.johannsmann-pferdetransporte.de/en/contact/ In the german-language contact form, I'd change the date input format to DE standard tt.mm.jjjj instead of dd/mm/jjjj. Likewise, change the TT/MM/JJJJ in the english version to dd/mm/yyyy. (it's day, not tay, and year, not jear...) Here and there, you can still spot some typos, like "Other assests" Apart from these details / nitpickings, a nice site, with a consistent look + feel. Out of curiosity: Which PW-version did you use? I'm asking because of major differences how you can handle multilingual sites (2.3.0 stable vs. dev version 2.3.2).
  16. I like using Google Drive for all kinds of stuff. In concept phase, you can create a doc that you share with your client, and everyone adds his / her thoughts. Or simply as a place to upload text-files and photos.
  17. I generally dislike music feat. vocals (too distracting) while working, so it's usually some kind of ambient stuff (Eno & Co.), or classical music. http://somafm.com/ has a few excellent channels http://www.radioswissclassic.ch/de If I'm doing Photoshop work (you know, using the other half of the brain), it's hard to beat Radio Paradise: http://www.radioparadise.com/rp_2.php?#
  18. Can somebody explain how to do this? If I have only the default admin theme installed, do I have to edit wire/templates-admin/main.js ? If so, how / where / what exactly do I have to add / change?
  19. Thanks. I stumbled over a stupid oversight, where I called the default language by name ("de"), rather than "default" or some such. But with the wonderful new 2.3.2 multilang handling, all this has become obsolete
  20. Wow, you guys are truly great. Thanks for your patience. It's all solved now. I can't believe how easy it all is now. I was basically starting with an older technique, switched to the new one, and there was still all kinds of legacy code here and there. Strange redirects, 404s etc. Remember that I owe you a beer if you should ever come to this neck of the woods...
  21. Thanks again for the heads-up. I thought I had removed / disabled all old modules that were in place when I started out. I definitely do want to use the newer method with LanguageSupportPageNames. Guess I have to play Sherlock Holmes now and take another look if there's anything left that interferes with the latest LSPN method. Question then: With LanguageSupportPageNames, is it still necessary to enable URL-segments for each template? Or is that also obsolete now? Perhaps that's causing all the issues I'm encountering? (we don't have any pagination, so that's no issue)
  22. Excellent! That worked like a charm. Thank you.
  23. Well, here, it does show correct page-titles, but it omits the last URL-segment, and so it always jumps back to the default URL :-| btw: I installed a fresh new 2.3.2 with MSN module, and it does the same. languages are setup, all text-fields are multilang, all templates have URL-segments enabled, and in the header there's something like if($input->urlSegment1 == 'de') $user->language = $languages->get('de'); if($input->urlSegment1 == 'fr') $user->language = $languages->get('fr'); if(!$input->urlSegment1) $user->language = $languages->get('default'); // english
  24. How difficult would it be to create a module version that supports the new 2.3.2 multilang features? i.e. if I use the Language Support Page Names module, Lang-Fields + URL-segments. exactly as described here: http://processwire.com/api/multi-language-support/multi-language-urls/ Creating mulitlang-links with the API is now a breeze: $userLang = ''; if(!$user->language->isDefault()) $userLang = $user->language->name; $myURL = $pages->get(foo)->url . $userLang; // append language code Would I simply have to change something here ? (lines 267 of your module): // if page object from a page field get its url else if($f instanceof Page){ $field_value = $f->url; Maybe adding an optional parameter like "multilangAware"?
×
×
  • Create New...