selenasmith
Forum Replies Created
-
I’m displaying the 3 most recent posts in the widget. If the sticky post is one of the three it displays it at the top of the list correctly. However, if it’s after the first 3 posts it doesn’t display.
Hope that helps.
Thanks!
Selena SmithPerfect! Thanks for the quick response! ??
Still not working. I also have the widget display 3 posts, so i’m not sure if that’s causing an issue or not. My sticky post is from May, and there are several posts since then. I’ll also check if there’s a plugin conflict.
Thanks for your response! Do you have an estimated release date for the feature?
Thanks for the quick response! ??
Can someone respond please?
Thanks!
Selena SmithDone.
Thanks!
Selena SmithI have a similar request. My client wants to receive an email showing what fields the user changed. How can I capture this information?
Thanks!
Selena SmithPerfect! Thanks again for your quick response!
I changed this line:
$time = now();
to
$time = time();
and that appears to fix the issue …
thanks, but it didn’t work – it just kept spinning instead of going to the “check your email” message.
Thanks, @raster02… I have the Pro version of PB and I set a Custom Redirect as follows:
Global Redirects
After Login
<my domain>/client-pageBut I’m still going to the login page with the text “You are currently logged in as John Smith”. On my login page I’m using the [passwordless-login] shortcode. I was hoping there would be a redirect attribute like there is with the [wppb-login] shortcode.
Thanks!
Selena Smith- This reply was modified 7 years ago by selenasmith.
Thanks – appears to be an issue with our firewall. ??
Thanks for the reply. That’s pretty much what I assumed. I’ll work with the CSS rules.
Forum: Networking WordPress
In reply to: CSS not workingThanks for your response. My WP multisite is installed on a Windows 2008 server using Microsoft Web Platform Installer and updated to WP 4.8, so i’m using web.config instead of .htaccess. The site is set up as subdirectory, not subdomain.
Here’s the code added to wp-config.php (Domain_Current_Site blocked out intentionally):
/* Multisite */
define(‘WP_ALLOW_MULTISITE’, true);define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘****’);
define(‘PATH_CURRENT_SITE’, ‘/WPMulti/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);define(‘ADMIN_COOKIE_PATH’, ‘/’);
define(‘COOKIE_DOMAIN’, ”);
define(‘COOKIEPATH’, ”);
define(‘SITECOOKIEPATH’, ”);And here’s the web.config:
<?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=”^WPMulti/([_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=”^WPMulti/([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)” ignoreCase=”false” />
<action type=”Rewrite” url=”WPMulti/{R:1}” />
</rule>
<rule name=”WordPress Rule 5″ stopProcessing=”true”>
<match url=”^WPMulti/([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
<action type=”Rewrite” url=”WPMulti/{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>Thanks for your help!
Selena Smith