flytrapcare.com
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Pagination not workingThanks so much, Tobias!! That was an easy fix after all. Somehow the php-curl extension wasn’t enabled (per the errors printed). I enabled it and now the table pagination works again.
Best regards,
MattForum: Themes and Templates
In reply to: [Customizr] Long menu on iPhone & backgroundTurned out it was the inclusion of the bootstrap.js by Calendarize It plugin that was causing the issue. I simply commented out the line where it was being included and now the menu works as expected. I’m guessing that the bootstrap.js is already used with the Customizr theme and thus including it twice causes some sort of conflict.
Forum: Themes and Templates
In reply to: [Customizr] Long menu on iPhone & backgroundI had read somewhere that this error was normally caused by plugins so I went through and disabled each one, one-by-one, until I found the culprit. For me it was the Calendarize It plugin. Going to try to figure out how to fix it now.
Forum: Themes and Templates
In reply to: [Customizr] Long menu on iPhone & backgroundWas this ever resolved? I’m experiencing the same issue here:
https://www.swimoregon.orgIt took me a few hours, but I finally figured out how and where the HTML parsing is happening and was able to prevent it from being done.
For anyone else looking for this, it is being done in this file:
/wp-content/themes/nirvana/admin/sanitize.phpIn the function:
function nirvana_settings_validate($input)
look for the switch statement and locate:
case (preg_match("/.*(copyright|excerpt|customcss|customjs|slidertext|columntext|fronttext).*/i",trim($name)) ? $name: !$name): // long content fields
I added another case just for the fronttext fields to prevent them from being run through the wp_kses_post function:
case (preg_match("/.*(fronttext).*/i",trim($name)) ? $name: !$name): // Leave front-text fields as is -- Matt 2-4-2015