Skip Navigation

[Resolved] during edit customer's url is appended with my url/the post name

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 2 replies, has 2 voices.

Last updated by Rich 1 year, 1 month ago.

Assisted by: Minesh.

Author
Posts
#2573845

I am trying to:
change data in a url field
Link to a page where the issue can be seen:
hidden link
I expected the link to the customer's website to be:
hidden link
Instead, the link is:
hidden link

The link worked correctly when I added the customers originally.
This also happened with another customer I tried to correct because I misspelled their domain:
hidden link
Thank you

#2574167

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

You see the output as for your website link field: hidden link

Its because the website link is not started with http:// or https:// protocol.

To solve that I've added the following custom code to "Custom Code" section offered by Toolset:
=> hidden link

function func_check_http_for_url($attr,$content) {
  
    ///checking http:// protocol is available or not website
    if(strpos($attr['field'], '<em><u>hidden link</u></em>') !== 0) {
        return '<a href="<em><u>hidden link</u></em>'.$attr['field'].'" target="_blank">'.$attr['field'].'</a>';
    } 
    return '<a href="'.$attr['field'].'" target="_blank">'.$attr['field'].'</a>';
         
}
add_shortcode( 'check_http', 'func_check_http_for_url');

And called the above shortcode as given under from your content template:
=> hidden link
[php]
[check_http field="[types field='website' output='raw'][/types]"]
</coce>

More info:
- https://toolset.com/documentation/programmer-reference/adding-custom-code/using-toolset-to-add-custom-code/#adding-custom-php-code-using-toolset

You can replicate the above changes and shortocde wherever required with any of your site.

#2574573

My issue is resolved now. Thank you!

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.