yanggz
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] Single Login for multistoreHello,
I am not sure if I understand you question correctly. We installed the plugin with below modification so users can login from root site to their own subsite(s):
on .\wp\wp-content\plugins\wordpress-social-login\includes\services\wsl.authentication.php before the last line of function wsl_process_login_end():
$blog = get_active_blog_for_user($user_id);
$redirect_to = $blog->path . “wp-admin”;Hope this helps or ignore it.
Forum: Plugins
In reply to: [WordPress Social Login] Abandoned?@miled Just want to say thank you and how great product you have made!
All the best!Forum: Plugins
In reply to: [Advanced Editor Tools] Visual Editor Not ShowingI just figured it out.
I have created users by populating database directly which I missed adding the following to table wp_usermeta for each new user:
meta_key meta_value
rich_editing trueThe meta_value flag can be turned on/off at Users ->
Visual Editor Disable the visual editor when writingHope this might help others.
Roger
Forum: Plugins
In reply to: [Advanced Editor Tools] Visual Editor Not Showingsame problem here for site administrator but not super admin. We have WordPress 4.4.2
Found an answer at http://wordpress.stackexchange.com/questions/149797/web-config-breaks-the-themes-for-sub-directory-multisite
and the following web.config made my multisites working properly:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”WordPress Rule 1″ stopProcessing=”true”>
<match url=”^index\.php$” ignoreCase=”false” />
<action type=”None” />
</rule>
<rule name=”WordPress Rule 2″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?wp-admin$” ignoreCase=”false” />
<action type=”Redirect” url=”{R:1}wp-admin/” redirectType=”Permanent” />
</rule>
<rule name=”WordPress Rule 3″ stopProcessing=”true”>
<match url=”^” ignoreCase=”false” />
<conditions logicalGrouping=”MatchAny”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” />
</conditions>
<action type=”None” />
</rule>
<rule name=”WordPress Rule 4″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:1}” />
</rule>
<rule name=”WordPress Rule 5″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 6″ stopProcessing=”true”>
<match url=”.” ignoreCase=”false” />
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>