Armando
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [YITH Proteo] Header disappeared on Mobile devicesHi, I see the header on mobile too. I suppose you managed.
Forum: Themes and Templates
In reply to: [YITH Proteo] Can’t create an user?Hi, when I click on the user icon here https://gorillabeans.es/ I am redirect to my account page where you can both login or register new account
Hi, have you updated to YITH Proteo v1.9.7?
Forum: Themes and Templates
In reply to: [YITH Proteo] Button undo selectionHi if you want to show as simple text you can add this codes to your Custom Css section
.single-product form.variations_form .reset_variations {
background-color: transparent;
border: none;
color: var(--proteo-button_1_bg_color, #448a85);
}- This reply was modified 1 year, 4 months ago by Armando.
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 1 year, 10 months 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.