Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1269482

    Hi there, I would like to start selling on my website – https://www.goettling.me/
    Further to that, I would like to understand:
    1. Can I convert my existing website to an E-com site?
    2. What is the process to do so?

    Thank you.

    #1269500

    You could install WooCommerce, which is a free plugin and compatible with enfold

    see

    // https://kriesi.at/documentation/enfold/woocommerce-shop/
    // https://kriesi.at/themes/enfold-shop/

    #1270633

    Hi there, I installed WooCommerce.

    But because of WooCommerce the Polylang plugin is not working.
    I have 2 languages – English & Arabic

    Please help.

    Thank you.

    #1270635

    New update on the Polylang issue – the button has shifted to the header tab.
    It is ideally supposed to be on the right corner of the metaheader and the landline number is supposed to be on the left corner.

    Please assist.

    Thank you.

    #1271049

    Hi,

    You have to install another plugin in order to properly integrate Woocommerce with Polylang, and make the translations work. Please check the following link for more info about the integration.

    // https://polylang.pro/downloads/polylang-for-woocommerce/

    For further assistance with the integration, please contact the plugin authors or their support team.

    Best regards,
    Ismael

    #1271202

    Hi Ismael,

    In the case where I do not want WooCommerce shop webpage to be translated in the second language, can I continue with the already installed Polylang?

    Thank you.

    #1271786

    Hi,

    Yes, that should work if you are not planning to translate Woocommerce pages to another language. You should be able to translate default pages and posts using Polylang without the extra plugin. However, if you are having issue with the plugins, you may need to contact the plugin developers for further assistance.

    Thank you for your patience.

    Best regards,
    Ismael

    #1272176

    Thank you Ismael.
    I have raised a complaint with Polylang, but they replied saying their support is for Polylang Premium customers.
    Users of the free version of Polylang plugin need to get support from theme provider.

    So help please.

    Thanks.

    #1272596

    Hi,

    What exactly is the issue that you have with the plugin? Please explain the issue further and provide links to the pages displaying the problem so that we could check it properly.

    Best regards,
    Ismael

    #1278246

    Hi Ismael,

    The language option button used to be visible on our metaheader (Orange bar) right corner and the left corner had our phone number.

    But now the language button has been pushed to the header bar.

    I want the original setting to be reverted where the ENG or AR language buttons are visible on the right top corner on the meta header.

    https://www.goettling.me/

    Thank you.

    #1279010

    Hi,

    Have you tried enabling the secondary menu from the Enfold > Header > Extra Elements panel? This should also enable the language switcher.

    We could also use the following snippet in the functions.php file to prevent the default language selector from showing up and display a custom language switcher in the top bar or header_meta container.

    // disable language switcher
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }
    
    // Render the default language switcher (activate header meta)
    add_action('avia_meta_header', 'ava_icl_language_selector');
    function ava_icl_language_selector(){
    	do_action('icl_language_selector');
    }

    Best regards,
    Ismael

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.