chicagoave
Forum Replies Created
-
Forum: Plugins
In reply to: [SimpleModal Login] Works with "Create an Account" but not for "Sign In"FWIW instead of messing with the plugin code I just manually added the css class to my php a href. Incase it’s helpful for anyone here’s the class to add to your link. class=”simplemodal-login”
thanks so much. working now. you are amazing.
There is another bug I’ve come across having to do with external files. But it’s probably outlook’s fault rather than the plugins.. thought I’d point it out anyway in case you had a fix. By defualt long events wrap to two lines on export and appear as a line break. The plug-in ignores the break and only displays the information before it. I do a search an replace to fix it after I export my file but thought I’d point out what’s happen.
For example with this code the second line won’t be displayed by your plugin and I have to search and replace to change it to fit on one line.
SUMMARY;LANGUAGE=en-us:Anniversary for Kevin M - 19 Years\, Gary D - 5 Years\, Chris H - 5 Years
Thats the thing, the categories aren’t showing up in my layout. I’m using large calendar 9 and list type 4. Here’s the code being generated on the large calendar 9
<div class="event history inprogress untimed allday cal0 vevent array"> <div class="details1">Anniversary for John N - 2 Years </div> <div class="details2"><div><br></div> </div></div> <div class="event history inprogress untimed allday cal0 vevent array"> <div class="details1">Happy Birthday to Amber T</div> <div class="details2"><div><br></div> </div></div>
and here’s the data (shortened) from my ics file.
BEGIN:VEVENT CATEGORIES:Green Category SUMMARY;LANGUAGE=en-us:Anniversary for John N - 2 Years BEGIN:VEVENT CATEGORIES:Orange Category SUMMARY;LANGUAGE=en-us:Happy Birthday to Amber T
Thanks.
But how do I get the categories to show up as styleable classes in my large calendar layout?
Forum: Plugins
In reply to: [Widget Logic] php scripting help with widget_contentsolved it with help from a friend. if anyone is interested.
add_filter('widget_content', 'ttftext_widget_title'); function ttftext_widget_title($content='') { return preg_replace("/(<a[^>]*>)([^<]+)/e", "\"$1\".the_ttftext(\"$2\", false, nav)", $content); }