Akhil
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Force Strong Password in User Forms
Gestartet von: peterS-14
in: Toolset Professional Support
Problem: I would like to see password strength meters in CRED. WordPress offers a way to use their password strength meters, and it makes sense that CRED would offer the same feature. Solution: A feature request to implement these strength meters has been submitted to our developers. |
|
5 | 7 | vor 3 Jahre, 5 Monate | |
Enforce strong passwords
Gestartet von: julieP
in: Toolset Professional Support
Problem: The issue here is that the customer wanted to enforce a strong password on users who are registering for their site. A feature request to implement these strength meters has been submitted to our developers. |
|
2 | 5 | vor 4 Jahre, 9 Monate | |
Display parent post url using post reference
Gestartet von: vimalS
in: Toolset Professional Support
Problem: I have two CPTs, "Landing Pages" and "Services". on the Landing Page CPT, I have a post reference field to link to a Service post. I have created a View of all Services, and I would like to display a link to the related Landing Page. Solution: Use the post selection tab of the post link dialog to select the reference post. Modify the shortcode to select the proper relationship reference: [wpv-post-url item="@eh-linked-service-or-service-provider.child"] |
|
2 | 3 | vor 4 Jahre, 9 Monate | |
How to use accordions in a View output with the first accordion open
Gestartet von: Ljuba
in: Toolset Professional Support
Problem: Solution: The changes required so that the first accordion is open when the page loads are described here: https://toolset.com/forums/topic/split-displaying-terms-in-accordion-style-list-with-embedded-view/#post-959872 |
|
2 | 6 | vor 4 Jahre, 10 Monate | |
Customising Search Form Using Maps Distance Filter (Q1)
Gestartet von: 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 | vor 4 Jahre, 10 Monate | |
Social Share Button duplicated everywhere in the page
Gestartet von: Miranda in: Toolset Professional Support |
|
3 | 9 | vor 4 Jahre, 12 Monate | |
Relevanssi allows users to see other users private posts
1
2
Gestartet von: rayG-2
in: Toolset Professional Support
Problem: Relevanssi doesn’t actually check the what the capability to read private posts is called, but instead assumes it’s read_private_slugs, where slug is the name of the post type. Solution: |
|
3 | 17 | vor 5 Jahre, 2 Monate | |
Displaying image, link, and name of a taxonomy
Gestartet von: lauraC2426
in: Toolset Professional Support
Problem: The issue here is that the user had his custom meta image field for his taxonomy but wanted to make that image clickable on the frontend. Solution: To do this just follow the method in the example. <a href='[wpv-taxonomy-url]'> [types termmeta='image' title='%%TITLE%%' size='full'][/types]</a> |
|
2 | 5 | vor 5 Jahre, 2 Monate | |
Auto-generate Post Title from custom field values
Gestartet von: larryB-3
in: Toolset Professional Support
Problem: Solution: /** * Auto-generate post title */ function tssupp_autogenerate_title( $post_id, $post ){ if ( 'owner' == $post->post_type ) { $first_name = get_post_meta( $post_id, 'wpcf-first-name', true ); $last_name = get_post_meta( $post_id, 'wpcf-last-name', true ); $new_title = $first_name . " " . $last_name; $new_title = sanitize_text_field( $new_title ); $new_slug = sanitize_title( $new_title ); $args = array( 'ID' => $post_id, 'post_title' => $new_title, 'post_name' => $new_slug ); wp_update_post( $args ); } } add_action( 'save_post', 'tssupp_autogenerate_title', 10, 2 ); Relevant Documentation: |
|
2 | 7 | vor 5 Jahre, 4 Monate | |
remove Archive: from wpv-archive-title
Gestartet von: paulG-5
in: Toolset Professional Support
Provided custom filter hook to solve client's problem. |
|
4 | 5 | vor 5 Jahre, 4 Monate | |
Auto detect CPT for widget.
Gestartet von: Akhil
in: Toolset Professional Support
Problem: Solution: You can find proposed solution with the following reply. Relevant Documentation: |
|
2 | 8 | vor 5 Jahre, 6 Monate | |
Font Awesome not working after update
Gestartet von: nereaD in: Toolset Professional Support |
1 | 2 | vor 5 Jahre, 7 Monate | ||
custom code to hide a accordion depending on selection
Gestartet von: Akhil
in: Toolset Professional Support
Problem: Solution: //display tenure only when select 'For Sale' function display_tenture(){ $("div[data-target='#collapse-tenure']").parent('div.panel-info').hide(); //hide Tenure $('select[name="property-type"]').change(function(){ if(this.value == 'For Sale') { $("div[data-target='#collapse-tenure']").parent('div.panel-info').show(); //show Tenure } else{ $("div[data-target='#collapse-tenure']").parent('div.panel-info').hide(); //hide Tenure } }); //display tenure when select 'for Sale' on page loaded if($('select[name="property-type"]').val() == 'For Sale'){ $("div[data-target='#collapse-tenure']").parent('div.panel-info').show(); //show Tenure } } |
|
2 | 7 | vor 5 Jahre, 7 Monate | |
Modify a pagination script
Gestartet von: Rune Brynestad in: Toolset Professional Support |
|
2 | 12 | vor 5 Jahre, 8 Monate | |
The no_protocol property does not work with image fields
Gestartet von: DM in: Types Community Support |
|
2 | 9 | vor 5 Jahre, 9 Monate |