chriskar07
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Option filter /button filterim still trying with no succesful results, could you please give me a hint
on how to change the button filter to accept value on submit?var {$name} = {$command}; $( 'body' ).on( 'click', '.table-{$table_id}-filter', function() { {$name}.search( $( this ).data( 'filterterm' ) ).draw(); } );Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Shrink Table Cssi asked for the php table tag in case i make an iframe with the table in it and perhaps it will become smaller (maybe even a with a zoom factor on the page)
do you think it will make a difference?
im trying to replicate this
http://www.athensauthenticmarathon.gr/site/index.php/en/results-en/457-results-2016Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Shrink Table CssYes exaclty , i couldnt find the Template tag Function !!
i want to shrink the table and contents to be smaller than the page layout.
Its hard for me to give you a link because im trying localy before the table i move online.- This reply was modified 9 years, 3 months ago by chriskar07.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Option filter /button filterok cool i understand! thanks!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Option filter /button filterhey Tobias
thank you for your replycould you kindly give an example of what it would look like?
thank you for your time!
so i got it!i used the
$table = TablePress::$model_table->load( $table_id );<?php $row_id = $_GET['id']; $table_id = '#'; $table = TablePress::$model_table->load( $table_id ); // $table['data'] is now a two-dimensional array // rank infp $bib = $table['data'][$row_id][0]; $rank = $table['data'][$row_id][1]; $agegrouprank = $table['data'][$row_id][2]; $genderrank = $table['data'][$row_id][3]; etc.. ?>after passing the id from an href=”scores?id=$value i echoed it at a layout that i needed.
not the greatest way obviously but it works great!- This reply was modified 9 years, 3 months ago by chriskar07.
thank you so much for the fast reply !
to give you a better idea on what im trying to recreate thishttp://track.myrace.gr/resultsr.aspx?id=172
and when you click on the names it goes here
http://track.myrace.gr/bibcard/199228/results.html
i will try the hook you proposed!
thanks again