samjco
Forum Replies Created
-
WP NinjaTables do!!
- This reply was modified 5 years, 5 months ago by samjco.
Forum: Plugins
In reply to: [WP DataTable] How to make it work in PHP with do_shortcodeecho do_shortcode('[wp-datatable id=”mtable” fat=”1″] paging: true, responsive: true, ordering: true, buttons: [ ‘copy’, ‘csv’ ] [/wp-datatable]');
I would assume.
Forum: Plugins
In reply to: [WP Posts Table] Modifying the query@dicki Yes. Posts Table with Search & Sort. But it doesn’t use WP API like this one.
Forum: Plugins
In reply to: [Posts Table with Search & Sort] Show in templatesThanks for that explanation.
But the code above works just fine ??- This reply was modified 5 years, 6 months ago by samjco.
So I not sure if by me enable the USER REQUEST endpoint did anything. I used the WP REST CONTROLLER Plugin to enable it.
BUT so far, Ive got the Site A to write to Site B, BUT can’t get it the other way…
Site A has a public domain name.
Site B just has a public IP addressYou know it would be nice to have some sort of response from the remote server saying that it was a 200 Successful/ or Unsuccessful.
This will help users to diagnose the connection issues faster.
- This reply was modified 5 years, 7 months ago by samjco.
SO I LOGGED INTO YOUR TICKET SYSTEM
And it says that I am NOT ALLOW to submit a ticketSo it does use REST API via custom endpoints..
What are those endpoints? Perhaps I am not enabling them..How does this plugin work exactly?
Is it using REST API?
Is there any way I can check for errors or debug?
Here a function I wrote that might help:
add_action('init', 'get_statuses', PHP_INT_MAX); //PHP_INT_MAX is use to get all statuses, both built-in and custom registered. private function get_statuses() { global $wp_post_statuses; $choices = array('all' => 'All'); foreach($wp_post_statuses as $status): $choices[$status->name] = $status->label; endforeach; return $choices; }
Forum: Plugins
In reply to: [wp custom countdown] What is the “now” parameter’s format?Nevermind. I see it
Forum: Plugins
In reply to: [Code Snippets] BUG: using get_current_screen()Oops, my mistake. It was an Object ??
Forum: Plugins
In reply to: [Code Snippets] Unable to make changes to existing snippetsTry Checking your owner permissions on the “server” itself or check the wp user’s permissions of the admin role. Use User Role Plugin to see if you have caps for Snippet plugin.
If you make an error in the snippet itself and it causes the site to go blank, do this:
Access you DB using PHPMyAdmin. Find Wp-snippet table. edit the row of the last snippet you were working on, and change the “Active” column to “0”. This is most effective, as it allows you to keep any other working snippets.!
Forum: Plugins
In reply to: [Code Snippets] Website Can’t access after activating some code snippet code2 ways I’ve found to fix this…
1. Access your plugin folder and rename the snippets folder name. This will allow you to access your site, BUT deactivate snippets……
-OR-
2. Access you DB using PHPMyAdmin. Find Wp-snippet table. edit the row of the last snippet you were working on, and change the “Active” column to “0”. This is most effective, as it allows you to keep any other working snippets.!
- This reply was modified 5 years, 9 months ago by samjco.
Forum: Plugins
In reply to: [ACF PHP VARS] Won’t appear in WP Admin menuUnderstand.. SOrry for late support. WordPress Support emails don’t come in clearly identify support questions… I wish they would fix this. ??
Forum: Plugins
In reply to: [ACF PHP VARS] Won’t appear in WP Admin menuDo you see it in the ACF Custom Fields menu?