Guillaume
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
| Status | Debate | Supporter | Voces | Mensajes | Caducidad |
|---|---|---|---|---|---|
|
CRED Auto Draft : More than 400 draft per day.
Iniciado por: Guillaume en: Toolset Professional Support |
|
2 | 3 | 3 years, 8 months ago | |
|
Media Libary blocken with Toolset form
1
2
Iniciado por: Guillaume en: Toolset Professional Support |
|
2 | 22 | 4 years, 1 month ago | |
|
Add notification bubble counter in Admin
Iniciado por: Guillaume en: Toolset Professional Support |
|
2 | 3 | 4 years, 4 months ago | |
|
Encode URL in View Template
Iniciado por: Guillaume
en: Toolset Professional Support
Problem: The issue here is that the user wanted to encode their URL on the frontend. Solution: This can be done by using the following custom shortcode.
// Add Shortcode
function wpc_encode_url( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'url' => '',
),
$atts
);
return urlencode($atts['url']);
}
add_shortcode( 'wpc_encode_url', 'wpc_encode_url' );
Then be triggered like below. [wpc_encode_url url='[types field="url-produit" output="raw"][/types]'] Add the function to your Toolset custom code settings at Toolset -> Settings -> Custom Code. |
|
2 | 5 | 4 years, 7 months ago |