-
Content Count
61 -
Joined
-
Last visited
-
Days Won
1
-
dynweb started following Media Manager, PW 3.0.170 – Core updates, CKeditor add accordion and and 1 other
-
Sorry to derail this thread, I would like to download the new version from my download link, but it seems to be the same version that I bought in May 2020. It always says v0.1.2 β... Thank you 🙂
-
This shouldn't be a problem 😉
-
Have you ever thought about using a repeater field (instead of CKE) for user input? One repeater item for each tab? This would be much easier for the client and certainly less error prone...
-
This put me on the right track 🙂 I had a Pages::saved hook that set output formatting to true (when it shouldn't). Thank you!
-
It is multi-language. As far as I understand, $page->get($field) returns the field value (a string) if output formatting is true, and a field object if output formatting is false (what we need here).
-
Using the module on a multi-language site. When saving a page, I get the following error: "Call to a member function setLanguageValue() on string", File: .../modules/SearchEngine/lib/Indexer.php:99 98: if ($index_field_exists) { 99: $page->get($index_field)->setLanguageValue($language, $index[$language->id]); 101: } I suppose we need a $page->of(false) here before calling setLanguageValue() ?
-
Same for me 🙂 Issue solved, thank you.
-
Hi @kongondo, I'm encountering the same problem as @Stefanowitsch on the latest Media Manager: Multiple image uploads not working, exactly how he described it. Did you find a solution? I do *not* experience this problem, so it may be unrelated... Thank you 🙂
-
Converting relative URLs to page IDs doesn't seem to work if there is more than 1 URL segment (/page1/subpage/) AND the application is NOT running in a subdirectory. I had to replace line 86 from FieldtypeAssistedURL.module $urlPage = "/" . str_replace($this->wire('config')->urls->root, "", $urlParts[0]); with if($this->wire('config')->urls->root !== '/') { $urlPage = "/" . str_replace($this->wire('config')->urls->root, "", $urlParts[0]); } else { $urlPage = $urlParts[0]; } to make it work. Am I missing something?
-
Just replace in FieldtypeSeoMaestro.module.php, line 119: // return null; return $this->wire(new Fieldtypes()); This works for me...
-
Module Visual Page Selector (commercial page picker module for ProcessWire)
dynweb replied to kongondo's topic in Modules/Plugins
Thank you ! I applied the fix from that post to VPS, and everything is fine 🙂 -
Module Visual Page Selector (commercial page picker module for ProcessWire)
dynweb replied to kongondo's topic in Modules/Plugins
Very strange display issue here... Images display correctly in list view... ... but some images fail in thumbnail view: Any ideas? -
How can I change the base path of templates files?
dynweb replied to rjgamer's topic in General Support
$config->urls->templates $config->paths->templates in your config.php can do that.- 1 reply
-
- 1
-
-
[SOLVED] How to export page URLs via phpMyAdmin?
dynweb replied to Violet's topic in Getting Started
You will find a page's basename in the "name" column of the "pages" table. -
https://github.com/processwire/processwire-issues/issues/767