James W. Lane
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Accessing TablePress $dataYeah I figured out how to add the table like you did in your debug extension, I am getting better at this ??
I will look at pulling the data through that method
I will also look at JSON encoding the array for saving.
Those are my goals for this week. That and putting out other fires at work.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportThanks for all your help Tobias
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportEverything is working and this is good to go ??
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportDoh /facepalm Let me fix that
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportYou may want to double check because they have the following
$other_attr = apply_filters('tag_custom_attr', '', $this->table, $this->table['id'], $cell_content, $row_idx + 1, $col_idx + 1, $this->colspan[ $row_idx ], $this->rowspan[ $col_idx ] );
and
$tr_attr = apply_filters( 'tr_custom_attr', '', $this->table, $this->table['id'], $row_idx + 1, $this->table['data'][ $row_idx ] );
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportDo you use Skype, ScreenHero or Email? Maybe easier to debug, also have a few other questions that would be out of context of this thread.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportText editor and its local so it shouldn’t be running any caching “varnish” but to be safe I flushed it.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportTried that and it’s still not showing up on the front end, but it is working on the editors preview menu.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportWell I ran into a issue, Its working properly on the backend when you hit the preview. But it doesn’t seem to be working on the front end. Any idea on what may cause that?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportIt is complete sir TablePress Extension: Schema Data
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportI have it pulling all the data properly, I just need to go in and clean up my code. Maybe make it a little more DRY.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportAre you talking about tablepress_table_render_data?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportWhere is tablepress_render_data defined or located. I can’t seem to find it defined in the TablePress plugin?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportI like simple ?? I will try that out.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Schema Data SupportWell I have the rough code completed and working.
https://www.dropbox.com/s/6ld62sde0zwj26n/Screenshot%202014-03-14%2015.30.47.png
I am just hung up on one item, I am moving the code to its own render class to extend class-render.php and TablePress_Render with my own render class. I just can’t seem to find the best way to Initialized my class with yours. Without hooking into three separate functions where they are calling it. Any suggestions what would be the best way to extend TablePress_Render?
James