Blog switch wpml string translation (multi-site)
Blog switch wpml string translation (multi-site)
Blog switch wpml string translation (multi-site)
It may sound stupid but I’d go to dashboard>settings>permalinks and just hit “save changes” before digging too deep.
Hook into wp_login and use oAuth from the rest-api to validate against the other site. I’m sure keeping the user info the same between the two sites would be tough though
Multisite /files/ URLs broken after server move
This happened because WPMU has an admin account that defaults to the same URL as the install. So my admin user, who is also the default user, let’s call him “adminUser”, could log in at http://www.example.com/blog/ He could update, add new posts, whatever and his posts show up at: http://www.example.com/blog/ But when new user, let’s … Read more
hmm this is called responsive web design. Being responsive doesn’t mean the UI has to be 100% the same. Have your JS detect that you are in webview, maybe via user agent, and then set some appropriate class on the body element. design your webview design around that class.
WP has very good support for this. You will be Internationalizing and then Localizing your theme. Internationalization is often abbreviated as “i18n” because there are 18 letters between the ‘i’ and the ‘n’. The Codex provides a great reference on what needs to be done here: https://codex.wordpress.org/I18n_for_WordPress_Developers Much of the work involves wrapping strings with … Read more
You might have missed the right configuration in your hosts file. Assuming you are using Apache on a Linux server and vi editor, open this file: sudo vi /etc/apache2/sites-available/example.com.conf Since you have installed Multsite as subdomains, adjust your directives to include these: Listen 80 <VirtualHost *:80> DocumentRoot “/var/www/example” ServerName example.com ServerAlias *.example.com </VirtualHost> Note that … Read more
Themes All themes are installed for the entire network. If you edit the code of one theme, you edit it for all sites using that theme. You can install the plugin WordPress.com Custom CSS to allow each site to tweak their own CSS without affecting anyone else. You can activate themes for the entire network, … Read more
How can you have a site at http://angelcard.example.com/logmein? The address isn’t invalid. For the other link you provided http://angelcard.com.au/logmein DNS does not resolve, at least from my connection. It also does not resolve from AWS in N. Virginia. /usr/home/bill/> nslookup angelcard.com.au Server: 216.92.61.41 Address: 216.92.61.41#53 ** server can’t find angelcard.com.au: NXDOMAIN Were DNS records recently … Read more