I need know how i can do to these options with the pagination:
1) Disable pagination on specific datatable. Example, i show 10 rows results, but i have a filter and would like that the user just use the filter to look results, because this i need hide the pagination on this table.
2) Change the pagination position to top on the table.
Hi Aleksandra, Using the first option I got a problem... I jave some tables on the same page but just one ID i need hide the pagination... how I can do?
Now, this will affect all tables, so if you want to hide it only from a single table, you need to put the code in between the tags on the page where the table's shortcode is:
Hi,
I need know how i can do to these options with the pagination:
1) Disable pagination on specific datatable. Example, i show 10 rows results, but i have a filter and would like that the user just use the filter to look results, because this i need hide the pagination on this table.
2) Change the pagination position to top on the table.
Hello
To hide the pagination, you can take a look at our documentation.
As for moving the pagination above the table, it cannot be done with CSS. You have to add this little function in functions.php file of your theme:
I hope this helps.
Best regards.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hi Aleksandra,
Using the first option I got a problem... I jave some tables on the same page but just one ID i need hide the pagination... how I can do?
Hi monoazulweb.
If you have multiple tables on a page, you can hide them by adding some code above the shortcodes when creating the page.
Please note that each table receives a new odd number #table_1_wrapper.
So if you have 4 tables on one page, it'll be:
#table_1_wrapper for the first table
#table_3_wrapper for the second table
#table_5_wrapper for the third table
#table_7_wrapper for the fourth table.
Let's say you want to hide pagination for the third table. You need to create the page like this:
I hope this helps.
Best regards.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hi Aleksandar,
How I can do to show just "<<" "<" ">" and ">>" on pagination without the numbers of page control?
Hi monoazulweb.
This should be done with some simple CSS:
This leaves the ... in between the < and >, so it looks like this:
I personally believe it's OK for the sake of how it looks, but if you want to delete that too, the code should be this:
Now, this will affect all tables, so if you want to hide it only from a single table, you need to put the code in between the tags on the page where the table's shortcode is:
I hope this helps.
Best regards.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Sorry, but not works!
The pagination still showing the numbers!
If i can apply for ALL tables that i have?
Sorry! But solved Aleksandar.
This is the code that use now and works:
div.dataTables_paginate > span > a.paginate_button {
display: none;
}
.wpdt-c span.ellipsis {
display: none;
}
with this all tables presente juste << < > >> on pagination without the numbers.
Excellent, monoazulweb.
Thanks for letting me know!
If you have any more issues or questions feel free to open a new ticket, we will gladly help.
Best regards.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables