|
How do I get the layout defaults installed. I’m not setting the installer.
Started by: Jamii Corley
in: Toolset Professional Support
Quick solution available
|
|
2 |
3 |
7 years, 4 months ago
Jamii Corley
|
|
How to change site width
Started by: Robert Campbell
in: Toolset Professional Support
Quick solution available
|
|
2 |
7 |
7 years, 4 months ago
Robert Campbell
|
|
How to change the existing parent header and footer layout to my own?
Started by: chrisG1876
in: Toolset Professional Support
|
|
2 |
6 |
7 years, 4 months ago
Noman
|
|
Cannot resize printed logo on woocommerce invoice
Started by: kelvinL-2
in: Toolset Professional Support
|
|
2 |
7 |
7 years, 4 months ago
Luo Yang
|
|
500 Server error
Started by: Macdonald Solupin
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 4 months ago
Minesh
|
|
Archive layout stopped working for non-admins
Started by: karenN
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 4 months ago
Luo Yang
|
|
I want to install the Classifieds theme I installed all plugins and WMLP but wil
Started by: David Arias
in: Toolset Professional Support
Quick solution available
Problem:
Demo theme Installation issue. I can not install the demo theme (reference site), I installed all the required plugins and the WPML as well but it does not allow me to install the demo theme.
Solution:
- WPML String Translation
- WPML Translation Management
1. Make sure that all required plugins must be installed and activated before the installation of Demo, in this case above WPML addons were not installed. These can be downloaded from here: https://wpml.org/account/downloads/
2. Then follow the below steps:
- Deactivated all plugins and switch to Default theme.
- Reactivate Toolset Framework Installer.
- Reset Demo Site.
- Now “Install” the demo / reference site again and it will work.
Relevant Documentation:
https://toolset.com/forums/topic/impossible-to-install-reference-site/
|
|
2 |
7 |
7 years, 5 months ago
Noman
|
|
Disable 'Run Installer?' Alert?
Started by: Evan Seplow
in: Toolset Professional Support
|
|
3 |
6 |
7 years, 5 months ago
Beda
|
|
Error 404 Page
Started by: sinisaB
in: Toolset Professional Support
|
|
2 |
10 |
7 years, 5 months ago
sinisaB
|
|
Using Toolset Starter with WooCommerce
Started by: AyubM9750
in: Toolset Professional Support
|
|
1 |
2 |
7 years, 5 months ago
AyubM9750
|
|
Roll Back Request
Started by: julieP
in: Toolset Professional Support
|
|
2 |
3 |
7 years, 5 months ago
julieP
|
|
translated widgets not in layout of 2nd language
Started by: tital
in: Toolset Professional Support
|
|
2 |
3 |
7 years, 5 months ago
tital
|
|
How does one add Google Analytics javascript code to the Toolset Starter Child
Started by: John
in: Toolset Professional Support
|
|
2 |
3 |
7 years, 5 months ago
John
|
|
I want to use English date
Started by: Junichiro Taira
in: Toolset Professional Support
|
|
2 |
5 |
7 years, 5 months ago
Junichiro Taira
|
|
name order in woocommerce customer dashboard.
Started by: Junichiro Taira
in: Toolset Professional Support
Quick solution available
Problem:
Want to change name order when customer login to customer dashboard.
Like this: Family name (Last Name) comes first and First name comes second.
Solution:
Please add this code in your theme’s or child theme’s functions.php file:
function wp_update_display_name ( $user_login, $user ) {
$user_info = get_userdata($user->ID);
$first_name = $user_info->first_name;
$last_name = $user_info->last_name;
wp_update_user(array('ID' => $user->ID, 'display_name' => $last_name . ' '. $first_name));
}
add_action('wp_login', 'wp_update_display_name', PHP_INT_MAX, 2);
Relevant Documentation:
More info: https://wordpress.stackexchange.com/a/214214
|
|
2 |
5 |
7 years, 5 months ago
Junichiro Taira
|