geronimo108
Forum Replies Created
-
Forum: Plugins
In reply to: [J Cart Upsell and Cross-sell for WooCommerce] PHP error on cart pageHello,
I try to save again upsells and the warnings are still there : https://snake-elegance.com/panier/
Can you help me please ?
Forum: Plugins
In reply to: [Google for WooCommerce] How to disable GTIN and MPNhere is the screenshot : https://drive.google.com/file/d/1DAnIRJQYWx8pt7jvXmnDLeMY8ZQVOsBG/view?usp=sharing
Good morning !
Thank you for your reply !
I checked the plugin settings and everything is ok. This is a conflict with my theme. Is there a way to embed the plugin with a shortcode? I will be able to do this by adding it directly by hand.
THANKS
Forum: Plugins
In reply to: [Prisna GWT - Google Website Translator] Can’t refer a translated pageHello,
Yes I translated it manually. I managed to index a translated page but not the others. I just restarted the manual indexing for the other pages.
Also, on my site, I have strange url changes. For example, https://vueltacostatropical.cc/?a8aeac-Ryyhn4w9i.BU by hundreds. Has Prisna to do with it?
THANKS !
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Main menu & select current languageProblem solved ! He have to clear his navigator’s cache ! ??
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Main menu & select current languageHey edo888 !
I have made your adjustement and it’s working absolutly fine ! But my client says that it doen’t work for him… He is ussing Microsoft Edge. Maybe doas he need to clear his navigator’s cache ? Or this code doesn’t work well with this navigator ?
what is you opinion ?
Thank you ! ??
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Main menu & select current languageGreat ! It’s working absolutly fine !
I have also an issue with Gtranslate. I want to have my language selector just in my navbar. But it appears in my secoundary menu as well. In Gtranslate, I have selected “show in my primary menu”. I checked in my wordpress settings, apparance / menus and I have just my navbar in “Primary menu”. How can I fix this ?
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Main menu & select current languageHello !
Thanks for your reply !! ??
I tried to insert this code in my body but it doesn’t work…
<script> jQuery( document ).ready(function() { var main_language = 'fr'; var current_language = document.getElementsByTagName('html')[0].getAttribute('lang'); // change dropdown language var my_selectors = document.querySelectorAll('#gtranslate_selector [value="fr|'+current_language+'"]'); my_selectors[0].selected = true; }); </script>
I just want to have one selector on each page ??
Thanks in advance !
Forum: Plugins
In reply to: [WooCommerce] Show category, label, description on Shop PageThank you very much for taking the time to help me !!
Impressive!
I just found a code this morning to help me do this and I’m sharing it in case anyone is interested.
function wpa89819_wc_single_product(){ $product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' ); if ( $product_cats && ! is_wp_error ( $product_cats ) ){ $single_cat = array_shift( $product_cats ); ?> <h3 itemprop="name" class="product_category_title" style="font-size:20px"><span><?php echo $single_cat->name; ?></span></h3> <?php } } add_action( 'woocommerce_after_shop_loop_item_title', 'wpa89819_wc_single_product', 2 );
I didn’t konw about child theme so thank you also about that !
Take care ??