Jump to content

xportde

Members
  • Posts

    49
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

xportde's Achievements

Jr. Member

Jr. Member (3/6)

19

Reputation

  1. Hi @kongondo, we have detected a problem using MediaManager with the newly introduced richtext editor TinyMCE. When selecting an item from MediaManager via the "Insert Link" dialog, it will not be stored. At the javascript console is written the following message: Uncaught TypeError: window.parent.CKEDITOR is undefined Is this an issue concerning to you, or for @ryan? Thank you and best regards, Thomas from XPORT.
  2. Hi @kongondo, after setting some of our PHP environments to 8.0, we registered an error on deleting menu items (ProcessWire 3.0.200, MenuBuilder 0.2.7, Multi-language): method_exists(): Argument #1 ($object_or_class) must be of type object|string, null given in line 2602 in ProcessMenuBuilder.module. To prevent this, a check for item related page existence was successful: if (!$itemID || !$pages->get($itemID)->id) continue; Could you publish a bug fix release für this issue, please? Thanks in advance, Thomas from xport.
  3. @teppoWorks great, thank you very much!
  4. Hi @teppo, thank you for the great module! We use it for an internal project where the search function is very important. Actually we have replaced some fields of type FieldtypeTextareas by FieldtypeCombo (both pro fields). Unfortunately FieldtypeCombo is not yet supported by SearchEngine, we have done this temporarily by the follwing lines in Indexer::___getIndexValue() at line 243: } else if ($field->type instanceof \ProcessWire\FieldtypeCombo) { return implode( ' ... ', array_filter( array_values($page->get($field->name)->getArray()), 'strlen' ) ); Could you consider this in your next release of SearchEngine, please? Best regards, Thomas from XPORT.
  5. Yes, hour sites are all multilingual (default = german, second = english).
  6. We have the identical situation, same error an all edit pages since 3.0.184 because of the following error: Strangely enough, we don't use the new field InputfieldTextTags at all yet! As hotfix, we have surrounded the JSON.parse() call with try ... catch statement: try { var o = JSON.parse($select.attr('data-opts')); } catch (e) { return } But this cannot remain a permanent solution. Are there any other findings on this problem yet? Best Regards, Thomas.
  7. Hello all, can someone please explain what purpose the system field notifications serves? Thanks in advance!
  8. We use the WireHttp class intensively, e.g. to address third-party APIs. We noticed that the OPTIONS request method is not supported. Can WireHttp be extended with it?
  9. @FireWire Thank you for the page-edit-fix, this was one of the most important things to make this module usable in real! From our point of view, a separate translation permission would make perfect sense, because not everyone, who can edit a page, should do translations. Mainly because the service is subject to a charge, one should be sensitive when giving the translation service permission. Best regards, Thomas.
  10. Currently, it seems that only superuser can use the translation service. Is it possible to enable translations by permission and role?
  11. Thank you for the clarification! In fact, the translations service works as expected, and the hint text is only a cosmetic issue. We have unfortunately discovered another problem with CKEditor fields in inline mode, where the translation is not transfered into the target field. Knowing this, we may use the regular mode for CKEditor. Maybe, it's very tricky to implement the translation service here, because the inline editor is loaded dynamically on demand. Best regards, Thomas.
  12. We were on the verge of developing such a module ourselves, but you have beaten us to it ... Thank you very much for this great work! Unfortunately we have a problem with the integration of the translation service into text fields, because our default language is set to german, as also set in Fluency module settings. But in text fields, we can only translate englisch texts from english, instead from german. Have we done something wrong? Thank you in advance, Thomas.
  13. How does one enable executables to be uploaded to the File field? Just adding the file extension to the accepted extensions does not seem to work. screenshot attached (ignore the label 'video')
  14. @Mike Rockett Hi Mike, Google should index those pages, but only in one language. To achieve this, we simply leave out all language related metatags, this is no problem. Corresponding to this, the sitemap should also be monolingual, even if all languages are activated in the backend for being edited and previewed.
×
×
  • Create New...