rbrahmson
✭✭✭rbrahmson ✭✭✭
Reactions
Comments
-
If you are willing to take a risk and try out a work-in-porgress plugin check out https://github.com/R-J/DelayedNotifications Never made it to the plugin directory because it wasn't sufficiently tested and other matters took priority...
-
Clearly, categories as a concept are not enough and neither are tags in their free for all proliferating tendency. And so the "subcategories" concept was born ;-)
-
@RJF - sorry for the delayed response and thanks to those who stepped in my shoes. RJF - do you still have issues with the Discussion Alert plugin?
-
@charrondev I haven't been here for a long while so forgive me for resurrecting the original question. Would it be a reasonable "compromise" if plugins would need react.js library but not node.js? Adding JS libraries is easily available for hosted environments (obviously). I'm asking because your original post mentioned…
-
are you answering your own question? Look at the filterdiscussion plugin and the lengthy comment at the top of the source - tells you how to do it with the plugin. Then you can just use the code if you need this inside your own plugin;-)
-
Unless you intend to change this plugin for a very specific use case I'd think that there can be multiple types of events (game just one of them) and therefore I'd change the table name and perhaps add event-type or foreign key to event-types table. Just a thought.
-
I concur with @R_J . Here are some fields I suggest for this purpose (for use with the structure function) ->column('EventCalendarDate', 'date', true) ->column('EventCalendarTime', 'varchar(60)', true) ->column('EventCalendarVenue', 'varchar(180)', true) /* optional event venue*/ ->column('EventCalendarRepeats',…
-
Or just take a look at some plugins that already do that... All the above answers are great but when I started I found existing plugins a treasure trove for learning...
-
I believe it is the change in Ver 3 that now requires to unserialize serialized content in config.php. anywhere you see c('EventCalendar.CategoryIDs') change to unserialize(c('EventCalendar.CategoryIDs'))
-
I wonder whether thumbnailing is worth the effort for small images or small forums... Perhaps that could be a config option (css should still be used to display the image as a thumbnail). As for syncing changes - they are probably less common and can endure the extra effort at save time which means that the method is not…
-
I'm not sure what's the downside to prepend http or https (choice could be in config) in any protocol lacking input that's is expected to have one. Therefore I tend to concur that short of clarification by the Vanilla team this is a bug. When I write plugins I am using the above assumption (e.g. FeedDiscussionPlus).
-
If you lost a post it may be a sign from heaven that there are other risks as well 😀
-
There may be situations where the risk is well controlled within the environment - for example, intranet behind firewall.
-
speaking of JQ, we were able to add JQUI,JQmobile so the whole experience is great as well as simple. Not wanting to modify anything in the core we wrote two plugins that add the necessary JQ libraries.
-
Is everyone here on shared hosting Well, there aren't so many developers here that we can afford losing... And yes, most are on shared hosting with restrictions of various types. NodeJS isn't common in such environments (which speaks to market demand) and that by itself should give a pause before getting on that wagon. For…
-
From other responses I'm afraid that the question is somewhat unintentionally misleading (asking "re you guys willing to add an extra step to your install/update process if it means enhanced capabilities for your addons?" does not mention the prerequisites in the question...). If it is only whether I'd support an extra…
-
you mean this?
-
I am afraid the extra prerequisites are problematic and I concur with @R_J on that. I also concur with @charrondev on the difficulty to go on the cloud because of the pricing model. However IMHO Vanilla IS a good choice for non-experts and the barriers only come as one tries to go deeper into customization (especially…
-
Here's a code snippet from a function with JQ and JQUI: if (c('EnabledPlugins.jqueryui',false) && $dropdown == false) { echo $sender->Form->TextBox($field, ['maxlength' => 10, 'id' => $field, "placeholder" => $tip, "value" => $value, "class"=> $class, "title" => $title]); $id = '$("#'.$field.'")'; echo '<script…
-
I'm one step away from the North Pole walking very slowly (it's freezing here) around it and crossing the international date line every few minutes. Every time the date changes on me forward (I'm now in 2023). I tried to look for another line where the date changes backward and couldn't find it so I'm afraid to move…