adamspruijt
Members-
Posts
156 -
Joined
-
Last visited
-
Days Won
5
Everything posted by adamspruijt
-
Thanks for the quick addition Ryan, nice to see how the JS translatable string is handled, noted for next time. Submitted to Module Directory
-
V1.0.4 pushed, should fix both issues, a bit more cleanup and optimization needed but I'm pretty happy with this where it is, just wondering how I can make the title text translatable if it's inserted using JS? Maybe I missed that in the docs.
-
Yep, the toggle button issue is an odd one, if you keep click on it the fields will collapse eventually and after that should go back and fourth fine. I will tweak the styling for sure, the problem isn't so much with the default admin theme as it is just a limitation of the markup. I will focus on getting to look good with the default admin before I worry about it on any of my themes. EDIT: Might be an easy fix, it seems the number of repeat clicks is proportional to the number of Language Fields on the page, something bad in my loop.
-
Added support for toggling tabs display and faded labels to represent empty fields. Rough for now but useful for feedback I'm sure. Thanks guys.
-
Is it possible I already fixed this? I have pushed a few minor tweaks as the module was a touch rough when I first made the thread. Anyway, I'm not seeing this happen maybe I'm just misunderstanding.
-
I hadn't thought of a toggle, but had planned to add an indicator for empty fields, maybe a strike-trough? I will see to adding both, thanks!
-
Oh man, I love this idea, installing!
-
------------------------------------------------------------------- LanguageFieldTabs is now included in ProcessWire by default (version 2.4). Unless you are using version 2.3 DO NOT install this module, instead navigate to Modules and then core and you will find the module in the Language section ------------------------------------------------------------------- LanguageFieldTabs Beautify and organize you Field Languages into tabs! DOWNLOAD - Github DEFAULT UI UI IN "UNIFY" ADMIN THEME Sorry for the lack luster write up, will add to Modules Directory later, late, long day tomorrow. Enjoy! (very much beta maybe alpha, minimal testing, just quick evening idea at this point). Changelog v1.0.2 Improved styling capabilities (added surrounding class "LangTabsContainer" ) Added admin wide support Fixed description text order (was being pushed to bottom) v1.0.3 Added support for toggling tabs display and faded labels to represent empty fieldsv1.0.4 Fixed tabs destroy error Moved toggle into Inputfield ui-widget-header
- 67 replies
-
- 19
-
A little something I've been working on for a while now. I decided I wanted to created a theme that felt like a natural fit for ProcessWire; light, clean, efficient and straight forward. So I took to using what I had learned from the themes I had created in the past, took some vigorous inspiration from the new website and got to work. And this is what I've created... so far of course Unify Admin Theme DOWNLOAD ***** Updated for compatibility with current dev 2.3.5. ***** Login Page --------------------------------- PageList ---------------------------------------- PageEdit ------------------------------------- Image Insert Dialog ----------------------------- Subnav Dropdown ------------------------------------ Features subnav dropdown menu gravatar user profile images CollagePlus image insert layout customized CKeditor theme (minor tweaks, but it really fits in nicer) Enjoy! I will continue to tweak and perfect this theme so be sure to let me know if you have any issues or suggestions. I would consider this a beta for now as I've done little to no cross browser testing. Thanks!
-
Haha, thats cool, I guess I could've taken a look before posting. Though a spot to officially discuss these maybe couldn't hurt.
-
I think it would be really cool if there was and easy (JSON?) way to import/export hanna codes (all or single). Maybe then we could setup a subforum to share them. Otherwise this is amazing, thanks Ryan.
-
procache class and comments in the body, looks like a yes
-
Client's request which Processwire can't fullfill currently
adamspruijt replied to titanium's topic in Wishlist & Roadmap
I think it would definitely be doable, a "flexible" content fieldtype of sorts. It's something I've wanted to have pretty badly since switching from WordPress (using Advanced Custom Fields plugin w/ the Flexible Content Field addon) to processwire. -
Redirect admin view links for one page website?
adamspruijt replied to photoman355's topic in General Support
Why would you need to change the source? The structure of the block would be defined in the includes and ordered based on their order in the admin, unless your adding a new "block type", otherwise you should be able to add new content indefinitely. I don't think I know enough about what you're doing, you may not require the flexibility I'm picturing. Regardless the redirect works, and allows you to have the view buttons intact on the back end, which could be nice. -
Guard as my new preprocessor/concat/minify watch tool
adamspruijt replied to owzim's topic in Dev Talk
Thanks owzim, never heard of this. As a big fan of CodeKit I am certainly curious about this now seeing as you made the switch (Cross platform is a big plus for me).- 17 replies
-
- preprocessors
- concatenation
-
(and 2 more)
Tagged with:
-
Redirect admin view links for one page website?
adamspruijt replied to photoman355's topic in General Support
Yes, I am talking about having a template without a file, you could probably move those templates that are not supposed to be view-able like "block.php" into an "includes" folder and then use simple code to grab the right file based on the template name like this (assuming you've gotten the pages you need in the variable "$blocks"): <?php foreach ($blocks as $block) { include("./includes/".$block->template.".php"); } ?> For the repeater method this would work only assuming the content in the "blocks" was very simple and could be handle with basic "Textarea/TinyMCE" fields, I didn't realize you mentioned #contact. Assuming the contact area requires a form or more advanced fields, what I mentioned first above would work best. -
Redirect admin view links for one page website?
adamspruijt replied to photoman355's topic in General Support
If you use a different template on the pages that shouldn't be view-able (I assume everything but home), and that template does not have an associated file (example "basic-page" template has "basic-page.php") then the view button itself will not be shown. Another option is maybe to just use a repeater for the content blocks and then genuinely only have one page in the admin (home) and remove the other. Hope that helps. -
Is this when using asmSelect? I will look into and try to fix ASAP.
-
Ok so, output formatting need to be false in order for the image thumbnails to output correctly, but needs to be on for dates. So I turned it off and format the dates not be manually retrieving their "date format" setting. Thanks for pointing out the issue guys. Update pushed to Github and updated on the Modules pages.
-
oy! wow, sorry guys, thanks Ryan, fixed.
-
Thanks for the kind words guys, and for giving the theme a try. I've pushed some fixes to some small issues here and there along with some improved styling to the wire tabs, submit buttons and breadcrumbs. All pretty minor but figured I'd mention it. thanks!
-
Thanks for the kind words Dave, I abhor Windows 8, but generally like the aesthetic, though I think somewhere along the line of making this theme I got away from the metro look a bit more than I meant too. So it's more "loosely" inspired than anything!
-
@owzim the default method for rendering PageList labels doesn't turn of OuputFormatting so I'm not certain why I did, it might have been for something I was planning to add? So I pushed the update with your suggestion, thanks for pointing this one out guys! Cheers! EDIT: Looking again, I might be wrong about the default not turning off formatting... but it doesn't seem to cause an issue. I will continue to play with it....
-
So sorry guys, link is fixed.
-
The map marker field similarly has issues, but alternatively has no problem if the page initializes on the tab the field is on (this in not the case for auto-complete as it never works in a tab). I did a site about a year back that had a gmap in a bootstrap tab, the solution was to recreate the map on tab switch, could be a similar solution here? I'm not sure I haven't had a chance to peek at the code, just a thought though.