I have enabled AJAX pagination in a View and when viewing the second or subsequent “pages,” my WooCommerce Memberships restriction shortcodes do not work.
Solution:
The Views AJAX pagination is using WordPress file wp-admin/admin-ajax.php to load data, please make sure your "WooCommerce Memberships restriction shortcodes" works in WordPress AJAX feature.
You might check it with plugin author of the "WooCommerce Memberships restriction shortcodes"
Problem:
The user is using Gravity form and the "Post Creation" addon to create some custom post type. He would like to link the created post with a parent post that is collected from a Gravity form field.
Solution:
You will need to hook into the gravity form submit process and use the toolset_connect_posts function to link the posts with the Toolset relationship.
The user ended up using this custom code:
// Customer to Cut Sheet Relationship From GF Form Submit
add_filter( 'gform_advancedpostcreation_post_after_creation_4', 'apc_toolset_setparent', 10, 4 );
function apc_toolset_setparent( $post_id, $feed, $entry, $form ) {
toolset_connect_posts( 'customer-cut-order', $entry[21], $post_id );
}
// Customer to Cut Sheet Relationship From GF Form Submit
I have set up my view with a query using the constant "Alaska" for field Province/state. No results are returned.
Solution:
There are two custom fields with the same name "Province/state", but you are using wrong one in the view's filter, so it conducts the problem, you need to find and select the correct custom field "Province/state"
Problem:
cred-relationship-form-link do not display correct post title
Solution:
To display the correct post title with the [cred-relationship-form-link] shortcode, as a workaround, you can use the custom shortcode I shared which returns the correct post title.