harshitashivhare
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: PluginHi @giriga ,
There exists many such plugins for WooCommerce sites since zooming a product image on hover is a very necessary use case for page designers.
You can find the one that suits your requirements from this list: https://hoicker.com/woocommerce-image-zoom-plugins/Let me know which one works for you best!
Forum: Everything else WordPress
In reply to: Batch mailing listHi @rituais !
I came across this plugin which satisfies most of your requirements: https://wordpress.org/support/plugin/mass-email-to-users/
Let me know if you are able to achieve your goal using this.
Forum: Everything else WordPress
In reply to: Live slideshow/rotating header imageHi @rytiskat ,
I had used Gutenslider, so you can try that. The pro features will allow you to customize the parallax or animation effects. More details over here: https://gutenslider.org/
Also, since Kawi does offer a basic Gutenberg support, you can try this plugin.Another plugin I could find was: https://wordpress.org/plugins/smart-slider-3/
This has more features like autoplay, preview, on hover settings etc. in the free version itself.Although, I would suggest you can get in touch with the theme author to see which plugins are supported so that you don’t have to do trial and error.
Forum: Everything else WordPress
In reply to: Portfolio Navigation Arrow reverse “left” and “right”Hi @falkk ,
As @prabhatrai suggested you can contact the theme developers.Another way is to interchange the
portfolio_nextandportfolio_previn the navigation code and interchange thefa-angle-rightandfa-angle-left. The navigation code can be present in a separate file depending upon the theme that you are using.Hi @gsahmoune ,
So there are 2 ways in which you can add the hreflang in your backend- by editing the functions.php file in child theme or by using a plugin ‘Insert headers and footers’.
For the first part-
- Go to your wp-admin Dashboard > Appearance > Editor.
Select the correct theme or child theme from the top
Browse the file “Theme Functions” or “functions.php”
Add the hreflang code to the bottom of the functions.phpadd_action('wp_head', 'ava_add_your_stuff'); function ava_add_your_stuff() { ?> <link rel="alternate" hreflang="en" href="http://en.example.com/" /> <?php }Please adjust the code as needed for you to add the supported languages.
Second option-
Download and activate the Insert Headers and Footers plugin
From wp-admin dashboard, go to the plugin settings and paste your hreflang tags into Scripts in Header box area and click Save.Let know if any of these methods work for you. Here are links for more information and screenshots on the above methods:
https://kriesi.at/support/topic/hreflang-tag-inserted-into-header-google-still-says-error/
https://gobloggingz.com/add-hreflang-tags-in-wordpress-without-plugin/Hi @gsahmoune ,
I think these links might help resolve your query since this has to do with how Google views your multilingual site content. You can check the steps from this below page:
https://developers.google.com/search/docs/advanced/crawling/managing-multi-regional-sites#1You can find answers to some specific questions in this as well:
https://wpml.org/documentation/getting-started-guide/language-setup/automatic-redirect-based-on-browser-language/how-browser-language-redirect-affects-google-indexing/ - Go to your wp-admin Dashboard > Appearance > Editor.