aseliot
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: personal_options_update hook not workingOkay nevermind apparantly using die() prints my test echo and here i can also print the $_POST variable. I do find however that this seems to work very differently from adding and saving something to the my sites page, feels a little inconsistent.
Forum: Fixing WordPress
In reply to: Plugins and button goneIt appears that somehow my code breaks whole wordpress 😮
Any idea what is wrong with this?
http://pastebin.com/heipSYyZForum: Fixing WordPress
In reply to: Plugins and button goneTried that didn’t work. Upfront is still working.
I reinstalled the whole thing (copied back from zip) but it still doenst work.
Forum: Hacks
In reply to: Add files from path to load alongside others in medialibraryWe have concluded this is not possible without changing the source code of WP itself, and even might take a lot of work. So we are going to go with an alternative solution.
Forum: Plugins
In reply to: Jqueryui in plugin not recognizedWe had to use jquery-ui-core and then jquery-ui-dialog instead of every example we found that said to enqueue jquery-ui. Also changed all the $ to JQuery for non-conflict mode.
the enqueue hook still does nothing for us, we just put the enqueue’s into a script and included that into the index which also seems to work.
Forum: Plugins
In reply to: Jqueryui in plugin not recognizedWe’ve already disabled all the plugins and tried multiple things but nothing seems to work for us for some reason.
Forum: Fixing WordPress
In reply to: wpdb syntax error?Woops i forgot a ) at the end of the line 🙁
Forum: Fixing WordPress
In reply to: wpdb syntax error?I have an index file for a plugin the moment this is loaded I want to create a new table and insert some data.
The error i got was a syntax error on the last line where I am trying to insert data into the table I just made. Making the table works fine but the insertion does not.
To test I just copied the code from this (https://codex.wordpress.org/Creating_Tables_with_Plugins) example into the page, but I as of now I can also not get the insertion working. The table is made but the data is not inserted for whatever reason (no error/notice and debugging is on).