Armando
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [YITH Proteo] Change the number of products in mobile viewHi there,
please add the following few lines of additional CSS code to your site:@media (max-width: 600px) {
ul.products.columns-4 {
grid-template-columns: repeat(2,1fr);
}
}Forum: Themes and Templates
In reply to: [YITH Proteo] Sticky Header stops working if Widget area enabledHi there,
the issue was due to Ajax Search Premium, we sent you a fix in the ticket you opened in our support for that plugin.
Hi, what do you mean with “if I don’t use some block of the plugin”, to which block are you referring?
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Search] Search result images are not shownHi, try to add this code snippet at the end of your child theme functions.php file
add_filter('ywcas_searching_result_data','ywcas_searching_result_data_fix_thumb_size', 10, 5);
function ywcas_searching_result_data_fix_thumb_size( $search_result_data, $query_string, $lang, $post_type, $category ) {
foreach( $search_result_data as $item => $values ) {
if ( 'product' === $values['post_type'] ) {
if ( isset( $values['thumbnail']['big'] ) ) {
$search_result_data[$item]['thumbnail']['small'] = $values['thumbnail']['big'];
}
}
}
return $search_result_data;
}(You can add it also in php snippets plugin)
Forum: Themes and Templates
In reply to: [YITH Proteo] Remove space between header/footer and layoutHi, you can change that in **Appearance > Customizer > Miscellaneous > Layout > Global Layout Options**
Hi, I correctly see it is using Manroe. Have you fixed?
Forum: Themes and Templates
In reply to: [YITH Proteo] Weird behavior with button’s text in Cart pageHi, I see them good, have you managed to solve? However the theme not add br in that buttons.
Hi, I see that like in my screenshot, it seems good. https://snipboard.io/3F0O2g.jpg Maybe you can share a screenshot of what you are seeing?
- This reply was modified 4 months, 1 week ago by Armando.
Forum: Themes and Templates
In reply to: [YITH Proteo] dubble mini cart in top right cornerHi, can you share the correct url so we can see that?
Forum: Themes and Templates
In reply to: [YITH Proteo] Issue on image logoHi, can you please describe more clear what is the problem? Are you seeing an error message?
Ciao,
il tema non è responsabile del custom css ne vi è nessun codice che ne prevede l’eventuale cancellazione. Tali informazioni sono salvate nel database nella tabella
wp_posts
, come post type:custom_css
. Puoi quindi effettuare una ricerca per post type = custom_css nella tabella wp_posts e ottenere il post con il contenuto css custom.Forum: Themes and Templates
In reply to: [YITH Proteo] Add second menu inside header at bottomHi, you can go to **Appearance > Customizer > Footer Options > Footer Widgets** and Enable for example the Widget area #1, then set the width to 100% and the columns to 4. Then go in **Appearance > Customizer > Widgtes > Footer widget area 1** and add 4 menu widgtes
Salve, il CSS aggiuntivo incluso nel tema viene salvato direttamente nel database ed è collegato al tema, quindi se cambi il tema, ad esempio in un tema Child, questo CSS non sarà presente.?
Se hai cambiato tema di recente, devi semplicemente attivare il tema in cui è salvato il CSS e copiarlo nel nuovo tema.
Se non hai apportato alcuna modifica al tema, probabilmente il problema è dovuto al fatto che per qualche motivo quelle informazioni sono andate perse nel database, quindi l’unica soluzione è fare un backup per recuperare i dati.
Forum: Themes and Templates
In reply to: [YITH Proteo] How to deactivate Google FontsHi there, please add the following code in the functions.php of your child theme
if ( ! function_exists( 'yith_proteo_inline_style_disable_gfonts' ) ) { add_action( 'wp_enqueue_scripts', 'yith_proteo_inline_style_disable_gfonts', 10 ); function yith_proteo_inline_style_disable_gfonts() { wp_dequeue_style( 'yith-proteo-custom-google-fonts' ); } }
Salve, il tipo di pulsante è in generale gestito da woocommerce e può dipendere per esempio dal tipo di prodotto. Un prodotto semplice, generalmente mostra, il pulsante “Aggiungo al Carrello”, mentre nel caso di un prodotto variabile il pulsante è diverso e permette di accedere alla pagina del singolo prodotto.