Cody
Forum Replies Created
-
You need to add…
"AND p.post_status = 'publish'" .on lines 347 and 426 of helper/class-ai1ec-calendar-helper.php (before the lines starting
" AND " .Forum: Plugins
In reply to: [Availability Calendar] Doesn't seem to work with wp v3.1.3Forum: Plugins
In reply to: [Availability Calendar] Settings Page Is BrokenJust noticed calendar.php has the same problem. You’ll want to do the same find and replace there as well.
Forum: Plugins
In reply to: [Availability Calendar] Settings Page Is BrokenThe plugin is using both the short_open_tag for PHP and shorthand for echo, (i.e., =). Neither are implemented consistently across web hosts.
To fix the plugin, open up manage.php and replace all instances of
<?=
to
<?php echoForum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] doulequote escaping pbYou need to add stripslashes() around any places the values are printed off.
Line 23 of functions/admin/textarea.php
echo $settings[$value->item_id];
becomes
echo stripslashes($settings[$value->item_id]);Line 29 of functions/get-option-tree.php
$content = $options[$item_id];
becomes
$content = stripslashes($options[$item_id]);