javierpiedra
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Terms & Conditions Per Product] Change target=”_blank” for “_self”Thank you for creating this plugin Giannis!
I managed to program this filter with the little knowledge I had and it worked!
add_filter( 'gkco_custom_product_terms_text', 'gkco_filter_custom_product_terms_text' ); // Filter: quitar el target=_blank de los terminos y condiciones para que abra en la misma ventana function gkco_filter_custom_product_terms_text( $terms_text ) { $search = 'target="_blank"'; $replace = ''; $terms_text = str_replace( $search, $replace, $terms_text ); return $terms_text; }
- This reply was modified 2 years ago by javierpiedra.
Forum: Themes and Templates
In reply to: [OceanWP] “Search Results for” translate titleHola @willymunoz23,
sería cuestión de ver el código que usaste en el archivo functions.php, un screenshot o enlace a tu página de archivo y también el código de la función del plugin Elementor que altera este pedazo de código.
quizás en la versión actual de Elementor ya no es necesario hacer este ajuste de esta manera.
Forum: Themes and Templates
In reply to: [OceanWP] “Search Results for” translate titleor use this filter in your functions.php based on the function found in elementor-pro utils.php:
add_filter('elementor/utils/get_the_archive_title', 'titulo_pagina_de_busqueda'); function titulo_pagina_de_busqueda($title){ if ( is_search() ) { /* translators: %s: Search term. */ $title = get_search_query(); if ( get_query_var( 'paged' ) ) { /* translators: %s is the page number. */ $title .= sprintf( __( ' – Page %s', 'elementor-pro' ), get_query_var( 'paged' ) ); } } return $title; }
Viewing 3 replies - 1 through 3 (of 3 total)