
arjen
Members-
Posts
1,222 -
Joined
-
Last visited
-
Days Won
8
Everything posted by arjen
-
If it's within the scope of a project: yes. We are currently working on a project which needed to be translated 100% from a client point-of-view. In my spare time I will translate the other part (except the ProcessWire specific terms likes templates, fields, etc). All (Dutch) developers know English ofcourse, but for sakeness of a 100% translated cms/framework it might serve a good cause.
-
Disable language translation for admin
arjen replied to Ivan Gretsky's topic in Multi-Language Support
Multilangual descriptions can be turned of for both images and files. It is a setting in the (Advanced) Input tab. I don't know which ProcessWire version introduced this but it has been around lately. -
A new version will be released when ProcessWire 2.6 stable hits the store and will be tagged accordingly by release (both stable and dev). Many translations in the latest dev are done, but we still have a some on our list. Thanks Jasper for your work until now and thanks for transferring the repo.
-
This is called "Code Internationalization". There are several ways to do this, also for plurals and context. Read more in the multi language support docs.
-
I could explain why you shouldn't use $config->styles array, but soma did a great job already.
-
Sage 8.0 Starter Theme (formerly Roots) just released for WordPress
arjen replied to Jonathan Lahijani's topic in Dev Talk
Thanks. Still looking for a more automated workflow and how to structure things. This is a good starting point. -
No matching generator found *yet*. Try something else.
-
Sage 8.0 Starter Theme (formerly Roots) just released for WordPress
arjen replied to Jonathan Lahijani's topic in Dev Talk
Thanks for sharing jlahijani. Haven't used WordPress in a long time. To me it seems they placed all the files directly in the main theme directory. Would this be the same if we placed the files in /site/templates/? -
Thanks Adam. Interesting approach. Gonna go with Gulp too after hours of research and fiddling with both. Seems lighter, faster and friendlier than Grunt.
- 17 replies
-
- preprocessors
- concatenation
-
(and 2 more)
Tagged with:
-
I'm looking into Grunt and I was wondering if you guys mind sharing your directory setup. Do you use Grunt in the /site/templates/, in the root or do you have another setup? Thanks!
- 17 replies
-
- preprocessors
- concatenation
-
(and 2 more)
Tagged with:
-
Really looking forward to experiment with this! I always liked ACE since I use Textile a lot. I've seen the roadmap and full screen would be awesome. Another thing you might consider is image handling. Something like this done by Adam. Thanks and great work.
-
permanent archive of relational data? permalinks?
arjen replied to bernhard's topic in General Support
This topic about teams and players (with history) also might be interesting to you BernhardB. -
I installed another website and it seems to work fine now.
-
Hi Phillipp, I just started to use this tool again, but I can't seem to login in a freshly created new site with the blank profile. When loggin in I get: float(4.1000000000069E-5) float(6.4000000000064E-5) float(0.0012810000000001) float(0.0012920000000001) float(0.026929) float(0.026978) array(2) { ["status"]=> string(3) "500" ["error"]=> string(21) "Internal Server Error" } int(4) The front-end seems to work fine.
-
Susy rules. Nice website k07n. It's lightning fast.
-
ProcessWire Install on GoDaddy Hosting Can't Find the MySQL Database
arjen replied to LedZepmann's topic in General Support
Hi Led, What if you change "localhost" to "127.0.0.1"? And make sure PDO is enabled. -
We use the module on a lot of sites too like MadeMyDay's setup. Never had any real trouble.
-
Not really sure what you are trying to do, since you don't have to check if a parent exists. A parent always exists in ProcessWire. This is how you can check the number of parents. Maybe that will help you out. $parentCount = count($page->parents); if ($parentCount == 2) echo "do something";
-
You're welcome. Also Batcher and Lister Pro are really great for fast bulk editing and workflow improvements.
-
Have you looked at the After Save Actions module?
-
Soma, as a master of sarcasm I would have thought you noticed mine sarcasm
-
Unfortunately? I would say he'd come to his senses
-
I just ran into some issues as well with several javascript errors like "setupLanguageTabs is not defined". Looks like I had an old "templates-admin" folder in my /site/ folder. Deleting this fixed my issues.
-
This might work: $extraChild = $pages->get("/extra-child/etc/"); // First get the specific page you want if ($extraChild->id) $extraChild = "<li><a href='{$extraChild->url}'>{$extraChild->title}</a></li>"; // If the page exists wrap it in a list-item $options = array( 'outer_tpl' => '<ul>||$extraChild</ul>', // Append the $extraChild before the closing outer unordered list ); echo $treeMenu->render($options); // Render the whole thing Or create a checkbox called append_menu and use that to get the data to the end. Another option is to create a page field with an asmselect on the homepage which let you select all the pages you want to append. This way you have all the flexibility you need. But really if the page is so important, why not set it on the top level in the first place? I think this is really confusing to users and could potentially harm your usability.
-
Depends on your server configuration. The domainname you can alter yourself by changing the DNS. The server part you should pickup with your hosting company. If you run an unmanaged server, it (again) depends on which OS you use. A quick search on Google should help you out.