iisisrael
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Exception when multiple plugins use TwigHey @supsysticcom! The other plugin is a proprietary one, so nothing in the WP repository. But like I said in my follow-up comment, if you update Twig, you’ll see the same exceptions without any other plugin installed. Once updated and working, it will not conflict with any other plugin using the latest Twig.
- This reply was modified 6 years ago by iisisrael.
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Exception when multiple plugins use TwigActually, this is a result of the other plugin depending on a newer version of Twig (2.4.4), which has many classes extending base classes (after checking if the class has already been loaded), such as
Twig_SimpleFunction
extendingTwig_Function
. I disabled the other plugin, then copied the latest version of the Twig lib into this plugin, and the same exception was encountered.Please play nicely with other plugins that use Twig and update!
Forum: Plugins
In reply to: [Checklist in Post] Checkbox in FormsI can confirm – I have a “remember-me” checkbox input on a custom login page plugin. This styling in
checklist-in-post/css/checklist_in_post_frontend.css
is applying to all checkbox inputs:input[type="checkbox"]{ position:relative; height:0; width:0; opacity:0; top:0px; position:absolute; }
It simply needs the class prefix like so:
.checklist_in_post input[type="checkbox"]{...
Forum: Plugins
In reply to: [Checklist in Post] Allow HTML in list itemsEven better, to allow for nested lists:
jQuery(document).ready(function($){ //Edit .todo-list ul appearance
- $('.checklist_in_post > ul').wrap("<form id='todo-list'>");
+ $('.checklist_in_post > ul').wrap("<form class='todo-list'>");
$id = 1;
- $('.checklist_in_post ul li').each(function() {
- $text = $(this).text() ;
+ $('.checklist_in_post > form.todo-list > ul > li').each(function() {
+ $text = $(this).html() ;
Then in
checklist-in-post/css/checklist_in_post_frontend.css
:
- .checklist_in_post ul {
+ .checklist_in_post > form.todo-list > ul {
…
- .checklist_in_post ul li{
+ .checklist_in_post > form.todo-list > ul > li{
…
- #todo-list{
+ form.todo-list{
…
- #todo-list:before{
+ form.todo-list:before{
The whole script as modified:
[Excessive code mpderated. Please use a pastebin.]
Forum: Plugins
In reply to: [Redirection] [Plugin: Redirection] Unable to Switch off the Redirected link!This was happening when I was trying to delete or reorder my redirects. I opened another browser, and bingo, it worked.
Cleared the cache – changes take affect. Not the plugin’s fault.