alinford
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Sort by Height?That is what I thought. Thanks for the help.
I ended up using 3 digits for each height in the hidden columns to make it simple:
Col 5 = Col 6
5’10” = 510
5’6″ = 506
5’11” = 511
6’2″ = 602
5’7″ = 507
etc…I was already using a hidden column to sort by grade:
Col 2 = Col 3
Freshman = 09
Sophomore = 10
Junior = 11
Senior = 12So, my sort used an array:
"columnDefs": [ { "visible": false, "targets": [ 3,6 ] }, { "orderData": [ 3], "targets": [ 2] }, { "orderData": [ 6 ], "targets": [5] }]
That is great. If you want to give me some quick direction of how addons are created, I could do the addon, give it back to you, and you could review and add it to the project.
Ha! I tried yesterday that several times, and it was just not showing up on a couple different browsers. Worked fine on my iPad last night, and is now working fine on my normal machine. Must have been a weird caching thing.
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] Player PositionThanks for the well thought out answer. Even though it has only been out since the beginning of the year, it is already far better than any other plugin for what I am trying to do. Great job.
I cannot seem to find the shortcode option in the editor. I am running WP v3.9.1
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] Please add Volleyball :)Fantastic!
Forum: Fixing WordPress
In reply to: How to force HTTPS to HTTPI have tried this, and https is still not redirecting to http.
Any other ideas?Here is what I have:
<IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteCond %{HTTPS} on RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index1.php [L] </IfModule>