Search found 8 matches

by bjazmoore
Tue Sep 22, 2020 9:23 pm
Forum: Plugins
Topic: [Plugin] Admin
Replies: 2
Views: 2841

Re: [Plugin] Admin

I will try that next. Thanks
by bjazmoore
Tue Sep 22, 2020 9:13 pm
Forum: General
Topic: Comments in Bludit
Replies: 6
Views: 4855

Re: Comments in Bludit

I appreciate the pointer. I will take a look at snicker. Also great to hear it is still thriving as a project and improved versions are coming.

Brad
by bjazmoore
Tue Sep 22, 2020 4:31 am
Forum: General
Topic: Comments in Bludit
Replies: 6
Views: 4855

Comments in Bludit

Why doesn't Bludit support native comment management? I am not a fan of bolting a 3rd party commenting system onto the system?
by bjazmoore
Sat Feb 15, 2020 5:44 am
Forum: General
Topic: [Feature Request] Support Gravatar Images
Replies: 2
Views: 1486

Re: [Feature Request] Support Gravatar Images

Thanks for the pointer on where to post feature requests. All really good points regarding Gravatar. I really had not considered any of these. That is what makes a good community - lots of different points of view. Thank you for your considered response. Given the concerns - I believe I like your po...
by bjazmoore
Fri Feb 14, 2020 9:56 pm
Forum: General
Topic: [Feature Request] Support Gravatar Images
Replies: 2
Views: 1486

[Feature Request] Support Gravatar Images

It would be cool (and pretty easy) to permit Bludit to support using Gravatar images for the profile image and profile information. Here is the link to working with Gravatar using PHP to get profile images: https://en.gravatar.com/site/implement/images/php/ Full profiles can be requested via a JSON,...
by bjazmoore
Sun Feb 09, 2020 11:13 pm
Forum: Plugins
Topic: [Plugin] Admin
Replies: 2
Views: 2841

[Plugin] Admin

New plugin. Adds section to the sidebar with a link to open the admin panel and information on the current logged on user. Regarding the user the plugin reports logged in username - if user is not logged in it reports that there is no logged in user: Screenshot_1.png The plugin has an option allowin...
by bjazmoore
Sun Feb 09, 2020 8:30 pm
Forum: Plugins
Topic: Issues Developing Simple Plugin [Resolved]
Replies: 1
Views: 1857

Re: Issues Developing Simple Plugin

I got it working. I was being stupid. It was necessary for me to instantiate an object for the login class to access its members. I ended up doing this: $logged = new Login; if($logged->isLogged()){ $ltext = 'Logged in as ' . $logged->username(); } Things are working great.
by bjazmoore
Sun Feb 09, 2020 7:39 am
Forum: Plugins
Topic: Issues Developing Simple Plugin [Resolved]
Replies: 1
Views: 1857

Issues Developing Simple Plugin [Resolved]

I have basically leveraged the about plugin. I am trying to create a sidebar plugin that will display a link to the admin page (which defaults to the logon form when not logged in) or the text "You are logged in" when the user is logged in. By trial and error I have identified the snippet ...