Search found 142 matches

by bayerberg
Fri Oct 27, 2017 6:17 pm
Forum: General
Topic: Bludit2 + MAMP
Replies: 4
Views: 2268

Bludit2 + MAMP

For some reason bludit2 has an issue with localhost:8888/ Previous version worked with MAMP perfectly, this one strips 8888 form paths and things go sideways. Is there a way of making it go away?
by bayerberg
Wed Oct 18, 2017 12:48 pm
Forum: General
Topic: Why there are not "posts" enabled in bludit-2.0?
Replies: 22
Views: 10741

Re: Why there are not "posts" enabled in bludit-2.0?

Have a feeling that Bludit 2.0 is not for general public, the "target market" looks like people who want to read up in how things are done before attempting to do anything based on it. Hope there will be support for 1.xx cause I have couple projects running on it and porting everything to ...
by bayerberg
Thu Sep 14, 2017 2:56 pm
Forum: Plugins
Topic: [Extensions] - Admin bar
Replies: 16
Views: 11664

Re: [Extensions] - Admin bar

yep, I'm working on that. I'll provide couple of options as well - possibility of adding your own styling via the plugin page would be the coolest one especially when i have scss anyone can use to style the bar as they wish.
by bayerberg
Wed Sep 13, 2017 6:54 pm
Forum: Plugins
Topic: [Extensions] - Admin bar
Replies: 16
Views: 11664

Re: [Extensions] - Admin bar

no problemo ;)

need to rename one folder /language instead of /languages... don't commit anything while leaving work :)
by bayerberg
Wed Sep 13, 2017 6:35 pm
Forum: Plugins
Topic: [Extensions] - Admin bar
Replies: 16
Views: 11664

Re: [Extensions] - Admin bar

made it into a plugin! https://github.com/Bayerberg/bludit-admin-bar

Poke me there for updates and tweaks
by bayerberg
Wed Aug 16, 2017 12:22 pm
Forum: General
Topic: Moving forward - bludit 2.xx
Replies: 6
Views: 3644

Re: Moving forward - bludit 2.xx

@diego you missed one small detail - baked in :) more useful things get baked in to the core more people will want to use bludit. plugins are a major drawback when comes to wordpress maintenance, both devs and users dread seeing new wordpress updates cause that spells a raft of updates for plugins. ...
by bayerberg
Mon Aug 14, 2017 3:20 pm
Forum: General
Topic: Moving forward - bludit 2.xx
Replies: 6
Views: 3644

Moving forward - bludit 2.xx

Bludit 1.xx is a cool piece of work, its extensible, ubereasy to fiddle with even for people not versed in php/js. Not sure about changes in Bludit 2. Heres my take on matters: Lets push Bludit to the masses. Both devs and users. Users are easy - we need to give them what they want. That usually is ...
by bayerberg
Wed Jul 19, 2017 5:43 pm
Forum: General
Topic: Get parent page title
Replies: 4
Views: 2989

Re: Get parent page title

Figured it out

Code: Select all

<?php if($Page->parentKey()) { echo '<a href="'.$pages[$Page->parentKey()]->permalink().'">'.$pages[$Page->parentKey()]->title().'</a> /';}; ?> 
by bayerberg
Wed Jul 12, 2017 5:08 pm
Forum: General
Topic: Get parent page title
Replies: 4
Views: 2989

Re: Get parent page title

Doesn't work anymore. Any suggestions how to handle this? :)
by bayerberg
Mon Jun 19, 2017 5:00 pm
Forum: General
Topic: Display child page details on parent
Replies: 4
Views: 2648

Re: Display child page details on parent

hope this helps

i need to check if the page has children and when it has I need to display excerpts
Image

I might have a lot of subpages (childpages) so if there would be pagination that would be stellar ;)

Thanks!