Which capabilities are available in Gravity Forms Salesforce plugin? [closed]

Found the capabilities, most are self explanatory. <?php array( ‘vxg_salesforce_read_feeds’ => true, ‘vxg_salesforce_edit_feeds’ => true, ‘vxg_salesforce_read_logs’ => true, ‘vxg_salesforce_export_logs’ => true, ‘vxg_salesforce_read_settings’ => true, ‘vxg_salesforce_edit_settings’ => true, ‘vxg_salesforce_send_to_crm’ => true, ‘vxg_salesforce_read_license’ => true, ‘vxg_salesforce_uninstall’ => true, ); ?>

Value of Query string [closed]

If those values are in your query then you can use the following if( get_query_var(‘total’) ) { $total_value = floatval( str_replace( ‘$’, ”, get_query_var(‘total’) ) ); } or else if( isset( $_GET[‘total’] ) ) { $total_value = floatval( str_replace( ‘$’, ”, $_GET[‘total’] ) ); }

Hide gravity forms

Try this; <?php $user = wp_get_current_user(); if ( count_user_posts( $user->ID ) >= 1 ) { // echo your text snippet } else { // echo your form } ?> 1) wp_get_current_user() returns the WP_User object which includes many properties for that user. 2) Since we only want the ID of the current user, we assign … Read more

How to add to a user_meta field (append)

Use get_user_meta(): $original = get_user_meta( $user->ID, ‘purchase_history’, TRUE ); echo $original . ‘ Pancake Breakfast 05/15/2005’; To update the value use update_user_meta(): update_user_meta( $user->ID, ‘purchase_history’, $original . ‘Pancake Breakfast 05/15/2005’ );

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)