I would like to have a responsive menu on the mobile version of the website (now it is just overlapping the line of the menu and is thus not working well). I tried to add additional CSS and to modify the html, but somehow I miss some crucial steps because I can’t make it work. Can somehone help??
]]>I added this to the function.php to enable menu location option:
function custom_multilingual_menu() {
$current_language = pll_current_language(); // Assuming you're using Polylang
if ($current_language == 'en') {
wp_nav_menu(array('theme_location' => 'menu-en')); // English Menu
} elseif ($current_language == 'it') {
wp_nav_menu(array('theme_location' => 'menu-it')); // Italian Menu
} elseif ($current_language == 'de') {
wp_nav_menu(array('theme_location' => 'menu-de')); // German Menu
}
And I registered the menus
function extendable_register_menus() {
register_nav_menus(array(
'menu-en' => __('Menu EN', 'extendable'),
'menu-it' => __('Menu IT', 'extendable'),
'menu-de' => __('Menu DE', 'extendable'),
));
}
add_action('init', 'extendable_register_menus');
But when I try to recall it in my header, I get an unexpected error
<?php custom_multilingual_menu(); // Call your custom function to display the correct menu based on language ?>
Can someone help with this????
]]>Opening up multiple tickets on their support page too can be frustrating, as they have Javascript errors that prevent you from looking at any tickets beyond the latest 10.
They seem to promise but not deliver.
]]>My client would like the following process to happen when a user checks out:
1) User checks out (Confirming there order)
2) An email containing the users order and the shops banking details is emailed to the user
3) Once user has completed the transfer they upload their proof of payment which will be linked to the order for later viewing by admin if needed
Is this sort of thing possible with wp e commerce ? I am quite new to wordpress plugins like this so do not know how extendable they are, and where I would even begin to change code in order to extend it
https://www.ads-software.com/plugins/wp-e-commerce/
]]>