Dat Hoang
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] How to translate home pageWhat multilingual solution are you using?
Forum: Themes and Templates
In reply to: [Storefront] Custom Logo LinkIt’s determined at https://github.com/woocommerce/storefront/blob/version/2.1.5/inc/storefront-template-functions.php#L178, the
storefront_site_title_or_logo()
function.You might want to change
esc_url( home_url( '/' ) )
to'your-domain.com'
in 2 lines:* https://github.com/woocommerce/storefront/blob/version/2.1.5/inc/storefront-template-functions.php#L189
* https://github.com/woocommerce/storefront/blob/version/2.1.5/inc/storefront-template-functions.php#L206—
However, you should follow the guide at https://docs.woocommerce.com/document/storefront-faq/#section-5, and create a new function
storefront_site_title_or_logo()
in the custom plugin.You should copy the original function and change 2 lines above, then the new function will be used instead of the original function in the theme template.
It looks like you set up your site in Italian.
Take a look at this https://codex.www.ads-software.com/Installing_WordPress_in_Your_Language#Installing_Language_Files_from_the_Admin_Dashboard
You might need to change it back to English.
Forum: Themes and Templates
In reply to: [Storefront] Fatal error when adding payment gatewayFor this, I think you might call them at https://github.com/woocommerce/storefront
P/s: I’m not working at WooCommerce/Automattic.
Forum: Themes and Templates
In reply to: [Storefront] Ajax Add to Cart partially workingFor this issue, you might need to do something.
* Check browser consoles and see any issue? I think there might be a conflict with one of your plugins.
* Disable your plugins one-by-one and you see any error?
* Check wp-content/debug.log and see any issue? – See here https://codex.www.ads-software.com/Debugging_in_WordPress
Reference for browser consoles:
* https://developer.mozilla.org/en-US/docs/Tools/Web_Console
* https://developer.chrome.com/devtools/index#console