Same issue here, any idea anyone?
I never found an answer, or got any help. I ended up having to redo the whole table.
It could be a js conflict with your other plugin you using there. Try deactivating other plugins
Thanks for replying.
I am using it on a fresh site. The only plugins I have are askimet and hello dolly(deactivated).
which theme are you using there
Same here, any idea? I can’t delete the feature and I really don’t want to redo the whole matrix.
Also, how do you get rid of the circle for the grey theme?
same problem to, I have to publish, then come out the table, then back into the table, then delete. Least try this before deleting whole table. ouch!
Same here, no deletion possible whatsoever.. too bad. Had high hopes here.
I can not delete package or feature. Could you please fix this issue?
I’ve noticed this too, I believe it’s to do with certain characters not being escaped in the ajax .post on deleting a feature.
An ampersand in the feature title (&) will cause this for example. In firebug this causes an error with…
Error: Syntax error, unrecognized expression: .FraudProtection&Security
http://..../wp-admin/load-scripts.php?c=0&load%5B%5D=jquery,utils&ver=3.5.1
Line 2
@estuffs – if you want the remove the circle in the grey theme, just edit the css creating that. It’s in the grey template file… pricing-table/tpls/price_table-gray.php – you can edit this within the wordpress gui.
OK, pretty sure I’ve fixed this. Problem was with certain un-escaped chracters.
In file
metabox-feature-options.php
You need to replace all instances of
str_replace(" ","",$str);
with
preg_replace("/[^A-Za-z0-9]/","",$str);
This is a bit stricter and strips out other characters which could cause jQuery some trouble.
You of course have to ‘Update’ the table each time as this performs the save!
I have something like this str_replace(” “,””,$value);
I replaced them with preg_replace(“/[^A-Za-z0-9]/”,””,$str);
and still cant delete anything.
@reynock, if possible, send a temporary wp-admin login info to [email protected] to check your issue.