Masino Sinaga
Forum Replies Created
-
Forum: Plugins
In reply to: Wp-Table Reloaded – large table problemHi rawdolphe,
Do you mind me asking, how did you remove the padding/margin below the table?
I did not customize anything regarding the padding/margin below the table as you mentioned above. Perhaps it has been handled by the theme I am using. Hope this helps.
Hopefully this following article will help you to change the default maximum record value per page for the pagination in WP-Table Reloaded plugin:
How to Change The Default Selected Record Count in WP Table Reloaded Plugin of WordPress
Forum: Fixing WordPress
In reply to: Download PagePerhaps the Download Manager plugin will help you.
Forum: Plugins
In reply to: My pluggin not appear in pluggin pageHave you already selected “All” to display all the plugins?
Did you see the default plugin such as “Hello Dolly” or “Akismet”?
If so, did you see any error message when you display the plugin page?Forum: Plugins
In reply to: My pluggin not appear in pluggin page1. Make sure that your plugin folder is located under the /wp-content/plugins/ subdirectory. For example, your plugin name is “my-plugin” and all files that belong to “my-plugin” have already been located under “wp-content/plugins/my-plugin/” subdirectory.
2. Make sure the main file of that plugin is located under “/wp-content/plugins/my-plugin/” subdirectory, and not under another subdirectory inside the “my-plugin” subdirectory.
Forum: Plugins
In reply to: Wp-Table Reloaded – large table problemHi everyone,
I am also having the same problem, and it seems I have found the solution to fix it.
Well, the closest approach to workaround this problem is by importing the records from .csv file to the table. Please avoid to add row by row from the table edit mode. In addition it will cause the slow access to the page in your wp-admin, it also causes the losing of your new records that you have just added when you save the changes (mostly).
This is the example usage of the large table:
https://www.ikalima.com/reuni/daftar-peserta-acara-hut-emas-dan-reuni-akbar-sma-negeri-5-medan-tahun-2011/Currently, I have 590 records in that table! Can you imagine it? Before I used the import from file method, I always failed whenever I added some new rows/records into the table or editing the certain records via the table edit mode. But since I used the import from .csv file method, it always succeed to edit my table, especially when adding many records at a time. I even cannot imagine how fast the import process is done! ??
Hope it helps for those of you who are still facing that problem.
Try to remove (+/-) text. Does it work?
Forum: Plugins
In reply to: [WP-Table Reloaded] .wp-table-reloaded: can not change column width1. Assuming your table-id is one (1), then add this following code to your “Custom CSS” in “Plugin Options” of that plugin:
.wp-table-reloaded-id-1 .column-2 { width: 55px; }
2. In order to specify the certain table (not for all tables), you need to add the id table prefix (-id-1) to the related css (see the code above).
Assuming your table id is 1 (one), then add this to your “Custom CSS” in “Plugin Options” of WP Table Reloaded plugin:
.wp-table-reloaded-id-1 .row-1 .column-1, .row-1 .column-2, .row-1 .column-3, .row-1 .column-4, .row-1 .column-5, .row-1 .column-6, .row-1 .column-7, .row-1 .column-8, .row-1 .column-9 { font-family: verdana, arial, sans-serif; font-size: 11px; text-align: center; }
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] format centred textHave you tried with this following order?
.wp-table-reloaded-id-7 td { font-family: verdana, arial, sans-serif; font-size: 11px; color: #180E4A; vertical-align: middle; text-align: center; }
Here is the link you ask for it:
https://www.ikalima.com/reuni/fundraising-ikalima-di-sarimande-jakarta-17-september-2011/Currently, I have not implemented the solution I found. You can see the existing condition, the data type in the fourth column is text instead of numeric or money.
Never mind. I have found the answer by myself. Will write the article regarding it on my blog and post it to you.
Hi Tobias and everyone,
Just want to let you know that I have just edited my article in my blog, based on this thread. There is another trick how to change the selected record count or rows in the table, by adding additional code in the “Custom Commands” textfield in the “DataTables JavaScript Features” section on the “Edit” screen of the table. Even this trick will overide the changes I made previously into the core file. ??
That is the best approach I think, since we don’t have to worry losing the modification in the plugin core file anymore (as the solution I wrote previously), after updating this plugin to the latest version in the future.
You can see the link to my article at the second post above. Hope it helps to anyone who need it and read this thread some other time.
Hi Tobias,
Thanks for pointing it out to us. I have tried it, and it works perfectly. Will update my post by adding that trick, too. ??
The closest approach to implement “Show All” option at the moment is by adding the biggest value into the “Show entry” options, for example: 999, afterwards select this value to show all rows in the table.
Here is the trick how to implement it. Hope it helps you.