julieP
Support threads created in the last 30 days: 2
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
How do I populate user field with permalink?
Started by: julieP
in: Toolset Professional Support
Problem: I have a Form that is used to create a new post. I also have a custom field on the User's profile that will be used to hold a URL. I would like to take the permalink URL of the new post and save it in the User URL field using the Forms API cred_submit_complete. Solution: Use update_user_meta to set the value of a User custom field. Use get_permalink to get the permalink of the new post that was just created. add_action('cred_submit_complete', 'after_save_data_form_529',10,2); function after_save_data_form_529($post_id, $form_data) { if ($form_data['id']==529) { $user_id = get_current_user_id(); $permalink = get_permalink($post_id); update_user_meta( $user_id, 'wpcf-post-slug', $permalink); } } Relevant Documentation: |
2 | 5 | 6 years, 3 months ago | ||
Which CRED API hooks execute last?
1
2
Started by: julieP
in: Toolset Professional Support
Problem: Solution: cred_success_redirect Relevant Documentation: |
2 | 21 | 6 years, 4 months ago | ||
Check Logged In Status of other users
Started by: julieP
in: Toolset Professional Support
Problem: Solution: |
2 | 5 | 6 years, 4 months ago | ||
Customize Maps on Forms
Started by: julieP
in: Toolset Professional Support
Problem: Solution: |
2 | 7 | 6 years, 4 months ago | ||
Customising toolset-google-map-container class on Post Forms
Started by: julieP
in: Toolset Professional Support
Problem: I would like to customize the address custom field display on a Form. I would like to remove the map and hide the "Show / Hide coordinates" and "Use my location" links. Solution: There is no API to turn these items off, so you would have to use custom CSS to hide them. .toolset-google-map-inputs-container { font-size: 0; } .toolset-google-map-inputs-container input { font-size: 12px; } |
2 | 5 | 6 years, 4 months ago | ||
Class 'Litespeed_Cache_ESI' not found errors in log
Started by: julieP in: Toolset Professional Support |
2 | 7 | 6 years, 4 months ago | ||
How to customize use my location button text with maps distance filter
Started by: julieP
in: Toolset Professional Support
Problem: jQuery(document).ready(function($){ $('.js-toolset-maps-distance-current-location').val('Use my location'); }); Relevant Documentation: |
2 | 5 | 6 years, 4 months ago | ||
How to set default distance and unit using toolset maps distance filter
Started by: julieP
in: Toolset Professional Support
Problem: Solution: For example: [wpv-control-distance default_distance="20" default_unit="mi" compare_field="town" distance_center_url_param="toolset_maps_distance_center" distance_radius_url_param="toolset_maps_distance_radius" distance_unit_url_param="toolset_maps_distance_unit" inputs_placeholder="Within 20 miles of %%CENTER%%"] Relevant Documentation: |
3 | 4 | 6 years, 4 months ago | ||
How do I customise the placeholder text Enter a location inside the toolset-maps-distance-center input field
Started by: julieP
in: Toolset Professional Support
Problem: Solution: jQuery(document).ready(function(){ $('#toolset-maps-distance-center').attr('placeholder',' add your place holder text'); }); Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
Customising Search Form Using Maps Distance Filter (Q1)
Started by: julieP
in: Toolset Professional Support
Problem: Solution: #toolset-maps-distance { display: none !important; } Currently there is no native feature available to change the mi option value but as a workaround you can use the following javascript code and add it to JS box and try to resolve your issue. jQuery(document).ready(function($){ $('#toolset-maps-distance option[value=mi]').text('Miles') }); Relevant Documentation: |
2 | 6 | 6 years, 4 months ago | ||
Server Side Google Maps API Key
Started by: julieP
in: Toolset Professional Support
Problem: Solution: The intention is that you create the main API key with URL referrer restrictions for your site (for exposed front-end requests) and the second key with no such restrictions which we will use for the unexposed server-based requests. If your site has a fixed IP address you could add IP-based restrictions to the second key. Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
Toolset Starter Theme
1
2
Started by: julieP
in: Toolset Professional Support
Problem: Solution: you can find proposed solution, in this case, with the following reply: Relevant Documentation: |
6 | 16 | 6 years, 4 months ago | ||
tags being added to Access shortcodes
1
2
Started by: julieP
in: Toolset Professional Support
Problem: The issue here is that the user is getting the p tags being added to the access shortcode on the frontend. Solution: This can be resolved by adding the raw="true" attribute to the shortcode. |
2 | 21 | 6 years, 4 months ago | ||
Make Field Required Depending on Value of A Custom Field
Started by: julieP in: Toolset Professional Support |
2 | 3 | 6 years, 4 months ago | ||
Using With Posts With Relationships
Started by: julieP
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | 6 years, 4 months ago |