chip902
Forum Replies Created
-
Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting Reopenings@octotoot In the FAQs, it explains how to make custom meeting types. Put something like this in your functions.php
if (function_exists('tsml_custom_types')) { tsml_custom_types(array( 'A' => 'Atheist / Agnostic', 'BE' => 'Beginner', 'DD' => 'Mental Health Focus', 'REOP' => 'Reopened Meeting', )); }Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting ReopeningsThanks @brianwarea24
I wound up adding a new Meeting Type called “Reopened Meeting” and I’m calling it on the query string. Seems to work fine.
Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting ReopeningsHey @tech2serve ! I had a follow up question. I managed to get our list of meetings to display here: nyintergroup.org/meetings/
However what query string parameter can I use to hide all “Loc temp closed” meetings?
Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting Reopenings+1 on the request to the Devs @osnicky59 @tech2serve :). I’m sadly not super fluent in php so I don’t feel confident in making my own Shortcode; I guess the only thing I can do right now is to collect form entries now and then manually search them out to flag them as “no longer closed”
Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting Reopenings@osnicky59 I’m not following here… Is there a way I can get this into a gravity form somehow to get the front end user to get rid of the loc temp closed flag?
Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting ReopeningsThank you @tech2serve for replying to me! I guess what I’m trying to do in a gravity form is to give the user the ability to type in a text box their meeting. Effectively doing a tsml-query similar to this as they are typing /?tsml-day=any&tsml-query=test+query
This would allow me to get them to modify their “Location Temp Closed” flag
Forum: Plugins
In reply to: [12 Step Meeting List] Listing Meeting ReopeningsAlso is there a shortcode to dynamically search for a meeting name? Something like [tsml_meeting_name]? I tried that but it doesn’t resolve.
Forum: Fixing WordPress
In reply to: 3 WP Installs, 3 Domain Names, 1 Ubuntu ServerThanks @bcworkz but I literally just did this in my apache conf file for the virtual host and it worked…
I had to add these lines BEFORE the module for <VirtualHost *:443>
<VirtualHost *:80>
ServerName summit-estates.com
RedirectPermanent / https://www.summit-estates.com/
</VirtualHost>This caught the random “what if” traffic coming in on Port 80 and made sure it gets tossed to the correct port WITH the correct virtual host. Problem solved by band aid! When in doubt, fix in production; that’s what I always say.