Iskender TOTOĞLU

Results 10 issues of Iskender TOTOĞLU

Translation key appear on filter select box.

bug:research
prio: high
hacktoberfest

Want to use `TYPE_LINK` block field with `telephone number` or `file` and `external url` options, but don't want to show other options like: `link target`, `internal page`, `email_address` inside `TYPE_LINK`...

enhancement

If homepage is not displayed in not default language, must have language short code for url

bug
prio: high

Every time, allow copy a page language content and blocks to another language in same page. Copy page content option should be like : - source language (default or not...

enhancement

### Short description of the enhancement This request is : Clone of this wrong place issue : https://github.com/processwire/processwire-issues/issues/506 Connected with this issue : https://github.com/adrianbj/CustomUploadNames/issues/7 I am using CustomUploadNames module with...

### Current Behavior When checking for image variations, ProcessWire only detects variations with different extensions (like .webp or .avif) if there exists at least one variation with the same extension...

type: images

When want to create only webp file, processwire still continue to check filesystem for create new variation. This process making page render to slow. On this line: https://github.com/processwire/processwire/blob/3cc76cc886a49313b4bfb9a1a904bd88d11b7cb7/wire/core/Pageimage.php#L877 Its not...

type: images

Allow to use string class name as object when using hooks ```php use Foo\Bar\Controller; // This is not working $wire->addHook('/hello', Controller::class, 'indexHello'); // This one is working $wire->addHook('/hello', new Controller,...

When trying to choose a page from chained tree, getting error "Required parent" after i add `InputfieldPageListSelection`like other page field, its ok. https://github.com/processwire/processwire/blob/44fcf13ea2d7f14a04eed54c29afcc79eb46ec45/wire/modules/Inputfield/InputfieldPageAutocomplete/InputfieldPageAutocomplete.module#L31

type: inputfields

Little addition on this line: https://github.com/ryancramerdesign/ProcessExportProfile/blob/90b168ddd1b43951eca769c9913b603b75873df7/ProcessExportProfile.module#L106 ```php $path = dirname(rtrim($config->paths->templates, '/')); $this->siteConfigFile = "{$path}/config.php"; if (!file_exists($this->siteConfigFile) && file_exists("{$path}/config-dev.php")) { $this->siteConfigFile = "{$path}/config-dev.php"; } ```