khairul-azmanA
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Featured image not consistently shown in View
Started by: khairul-azmanA in: Toolset Professional Support |
1 | 2 | 4 months, 3 weeks ago | ||
Standard Post Content field and some others do not show up in view
Started by: khairul-azmanA in: Toolset Professional Support |
3 | 9 | 6 months, 2 weeks ago | ||
How to hide Taxonomy that has no related post
Started by: khairul-azmanA in: Toolset Professional Support |
2 | 7 | 8 months, 1 week ago | ||
Create View for most viewed custom post
Started by: khairul-azmanA in: Toolset Professional Support |
2 | 2 | 2 years, 2 months ago | ||
Toolset content template not displayed for custom post
Started by: khairul-azmanA in: Toolset Professional Support |
3 | 4 | 3 years, 2 months ago | ||
Show substring of custom field value
Started by: khairul-azmanA in: Toolset Professional Support |
2 | 5 | 3 years, 6 months ago | ||
Most pages with Views not appearing after creating new Taxonomy
Started by: khairul-azmanA
in: Toolset Professional Support
Problem: The issue here is that the user is unable to register his plugins. Solution: In this case the user had a WPML subscription and was trying to use his WPML key with Toolset. This won't work as you will need to generate a separate key for your toolset plugins from our site at the link below. |
2 | 2 | 6 years, 3 months ago | ||
Send CRED form values to another 3rd party website in URL
Started by: khairul-azmanA
in: Toolset Professional Support
Problem: http://smkphp.ukm.my/epayment/pay/get_url/?kod_epay=%5Bvalue from toolset field1]&amount=880.00&id_trans=[value from toolset field2]&bill_email=[value from toolset field3]&bill_desc=[value from toolset field4] Solution: add_action('cred_submit_complete', 'my_success_action',10,2); function my_success_action($post_id, $form_data) { // I have corrected the ID if ($form_data['id']==7696) { $field1 = ''; $field2 = ''; // I just changed it this way to make me understand better if(isset($_POST['wpcf-field1-slug'])) { // I added this opening bracket $field1 = $_POST['wpcf-field1-slug']; }; // I added this closing bracket and the semi-colon if(isset($_POST['wpcf-field2-slug'])) { $field2 = $_POST['wpcf-field2-slug']; }; header('location: http://thedirectedpage.something/?field1='.$field1.'&field2='.$field2.''); // I added the necessary apostrophe(s) exit; } } Relevant Documentation: |
2 | 5 | 7 years, 1 month ago |