xucaen
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: custom plugin to add a link to footer?I found it. Posting here for anyone else who needs it.
function your_function() { echo 'This is inserted at the bottom'; } add_action( 'wp_footer', 'your_function' );
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Filter on specific column?I have it like:
[table id=123 filter=”Testing” filter_columns=”2″ /]
where column 2 contains only the word “Testing”.
However, when I view the page, I see all other rows where column 2 is not “Testing”. We do have a plugin called “TablePress Extension: Row Filtering” v1.2. Is that the correct plugin? Are there any other plugins I need to make this work? Are columns zero based or 1 based?
Thank you for your help.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] JSON formatI am using Newtonsoft, and I can not find any way to make it serialize the data like Tablepress wants it. It seems that Newtonsoft insists on using curley braces and objects rather than a simple array, so I wrote my own function that builds it.
Thanks,
I am looking at an existing installation of TablePress. For some reason, the dates in tablePress are formatted as dd-MM-yy, as in “20-Apr-14”. Is that format required or can the date be in any format I choose? And can I mix date formats? For example, can some rows be in “dd-MM-yy” and others in “mm/dd/yyyy”?
Forum: Fixing WordPress
In reply to: Issues with wp_options and redirectionThank for the link. The export worked OK. But when I tried to import to the new site, I got this error:
Warning: POST Content-Length of 434639654 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
Also, I see no way to export only one of site within the wordpress multisite so I think I exported all of them. How do I export only the one I want?
Forum: Fixing WordPress
In reply to: Issues with wp_options and redirectionYes, I spent several hours this morning doing that, but still the redirecting occurs. Is there a tool available that can separate a site from a multisite? I feel like I could spend a week on this and never get it working.