Sam
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] Nginx serversWhat kind of problem are you have? Can you share a screen capture or log? I was using this plugin on several MGINX servers and didn’t notice any error.
- This reply was modified 4 years, 11 months ago by Sam.
Forum: Plugins
In reply to: [WebP Express] Self testing – INDEX failed version Version 0.16.0Coffee on me – enjoy it
Forum: Plugins
In reply to: [WebP Express] Self testing – INDEX failed version Version 0.16.0Great
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablesPress via XML-RPCOk,
Thank you, for quick answer,
I like your implementations you done a great job on this plugin.
But as I say we need to find solutions to post tables from the external application and add/display them to existing posts.Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablesPress via XML-RPCXML-RPC: If you are using any development language you can access to some of the functionality of WordPress remotly.
One of the few interfaces is to get/add/update posts based on the types.
As far as I can see you using custom post the internal data is not relevant, (JSON or any other kind)MySQL Select: select post_type from wp_posts group by post_type Results: post_type attachment fw_backup fw-portfolio fw-slider fw-testimonials nav_menu_item page post product revision <strong>tablepress_table</strong> ufaq wpcf7_contact_form
As you can see it’s there, but it’s set as private not public this mean you can only post using WordPress take few sec to look on:
add_action( ‘init’, ‘create_post_type’ );
function create_post_type() {
register_post_type( ‘acme_product’,
array(
‘labels’ => array(
‘name’ => __( ‘Products’ ),
‘singular_name’ => __( ‘Product’ )
),
‘public’ => true,
‘has_archive’ => true,
)
);
}Thank you for your time