Search found 240 matches

by GregS
Thu May 16, 2019 11:50 am
Forum: Development
Topic: Disable the random help hints
Replies: 3
Views: 72681

Re: Disable the random help hints

Makes sense. I'd disable things you don't want to see with the "active" flag in the database, and then you can selectively re-enable them as you see fit.
by GregS
Thu May 16, 2019 1:07 am
Forum: Theming
Topic: Changing the dashboard
Replies: 2
Views: 13080

Re: Changing the dashboard

I've moved this into the Theming area, as that's what it's about. To have a different view for the dashboard, you'd need to create a theme plugin (described elsewhere) and implement a new Template/People/splash.ctp; this might use some or none of the existing elements that comprise the current versi...
by GregS
Thu May 16, 2019 1:02 am
Forum: Development
Topic: Disable the random help hints
Replies: 3
Views: 72681

Re: Disable the random help hints

You could manually disable them all in the database: set 'active' to 0 on everything in the 'notices' table. Or you can set 'notice_frequency' to 0 in the 'features.php' file. But can I ask why you want to? They are there to help people learn the system, they don't show up any more once you dismiss ...
by GregS
Tue Mar 19, 2019 11:55 pm
Forum: Development
Topic: Development IDE for Zuluru
Replies: 4
Views: 18030

Re: Development IDE for Zuluru

I don't know that there's a useful XML file I can give you; I think the debugging configurations are part of the overall PhpStorm configuration, not the specific project settings. I definitely didn't have to add everything separately. It's been a while, but I recall that I used "Create New Proj...
by GregS
Tue Mar 19, 2019 4:00 pm
Forum: Development
Topic: Development IDE for Zuluru
Replies: 4
Views: 18030

Re: Development IDE for Zuluru

I use PhpStorm, with xDebug on the server for integrated debugging. The directory where the code resides on the server is available to my laptop (where I run PhpStorm) via a network share. Initial mapping of source directories isn't entirely intuitive, but well worth the effort once it's all set up ...
by GregS
Thu Mar 14, 2019 11:43 pm
Forum: Theming
Topic: Custom Login / Registration Look & Feel
Replies: 5
Views: 20173

Re: Custom Login / Registration Look & Feel

Just looking into the same thing for another project today, and learned that you can change the layout from inside a view. So, you might just need to: - create your plugin folder - make your own src/Template/Users/login.ctp - make your own src/Template/Layout/login.ctp - somewhere in your login view...
by GregS
Wed Mar 06, 2019 10:59 am
Forum: Development
Topic: New Payment Processor
Replies: 10
Views: 30391

Re: New Payment Processor

Database updates are handled by Migrations. You can read more about them here, and lots of examples in config/Migrations.
by GregS
Tue Feb 26, 2019 12:28 pm
Forum: Development
Topic: New Payment Processor
Replies: 10
Views: 30391

Re: New Payment Processor

Zuluru was built for team sports, and recurring payments isn't something that happens in that market. Not really sure what changes would be required to add that support. At the very least, there would be new fields on the event to indicate that it's a recurring payment, and on the registration to in...
by GregS
Sun Feb 24, 2019 1:52 pm
Forum: Development
Topic: Wordpress Integration Instructions
Replies: 2
Views: 12736

Re: Wordpress Integration Instructions

When I talk about WordPress integration, what I usually mean is making Zuluru look like the rest of the site, by building a plugin with a custom layout. For whatever reason, it seems that people using WordPress are all happy to have "double sign on" for admins, as you have said, while peop...
by GregS
Fri Feb 22, 2019 2:02 am
Forum: Development
Topic: New Payment Processor
Replies: 10
Views: 30391

Re: New Payment Processor

I think that's right, but I haven't looked into it super closely; path of least resistance was to use hosted payment solutions. Faster implementation that way too, I think.