wpdevboy
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Filterable Posts/Custom Posts] Order of categoriesForum: Themes and Templates
In reply to: [One Page Scroll] Sidebar not closing on mobileHopefully its obvious but if youre using this code just edit the pixel width you want to add the click to close option (mines set to 1000px)
Forum: Themes and Templates
In reply to: [One Page Scroll] Sidebar not closing on mobileAll good fixed it, adding this to the footer
<script> jQuery(document).ready(function() { jQuery('.home_page_sidebar_menu li').click(function() { if(jQuery(window).width() < 1000){ jQuery(this).parents(".sidebar").addClass("hide-sidebar"); jQuery('#panel-cog i').removeClass('fa-chevron-left').addClass('fa-chevron-right'); jQuery('section.content_wrap').css({'margin-left':'0px'}); } }); }); </script>
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Speeding up large datasets@meitar how much $$ to find the motivation to update the plugin with partial fetches?
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Speeding up large datasetsthanks @meitar, will keep that in mind. do you know how to disable/enable the https://datatables.net/reference/option/deferRender option? can you do it via the table shortcode?
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Speeding up large datasetsbtw im not using the no-datatables class option so customizing the table options should have some effect
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Responsive table for mobile?the table is no longer responsive – you need to downgrade the version of datatables js to 2.0.0 in inline-gdocs-viewer.php (edit the plugin)
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Only first 100 rows loadyou can add a filter to your functions.php – see here for an example – https://www.ads-software.com/support/topic/qdoc-query-under-other-notes-bottom-of-screen-example-request/
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] How to load just some entries at first?you can add queries as part of the shortcode – see https://maymay.net/blog/projects/inline-google-spreadsheet-viewer/ for examples or create a filter – see https://www.ads-software.com/support/topic/qdoc-query-under-other-notes-bottom-of-screen-example-request/
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] Responsive layout not working properlythanks, switching back to v2.0 worked for me as well
Forum: Plugins
In reply to: [Responsive Filterable Posts/Custom Posts] Order categoriesfigured it out. edit the rfp-class to change it from orderby=count to orderby=description. this will reorder the categories in the admin screen. now create (or update) a new shortcode with the categories in the correct order and it will display correctly
Change:
orderby=count&offset=1&hide_empty=0&fields=all
To:
orderby=description&order=ASC&offset=1&hide_empty=0&fields=all
- This reply was modified 8 years, 1 month ago by wpdevboy.