thasnes
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Booking Calendar] No calendar only formI wanted several scripts to run. Tried removing jquery loading script in my header.php and then only the calendar worked. Not the other scripts …
Found a solution:
– Removed the <script src=”…..jquery.js”> in header.php in my child theme and in the main theme (don’t know if this had any effect)
– Installed the Jquery Updater plugin, activated, and both scripts worked!
Forum: Plugins
In reply to: [Sideways8 Private Pages] Link to private pageUse this:
https://www.ads-software.com/plugins/s8-custom-login-and-registration/It’s from the same developer.
Forum: Themes and Templates
In reply to: [Spasalon] How To remove READ MORE labelNo, it’s the theme that causes the “Read more” labels.
Using Grid Products plugin, I tried to change to twenty twelve theme, and the text disappeared.In wp-content/themes/spasalon/functions/Excerpt/excerpt_length.php I removed ‘Read More’,’sis_spa’ on line 89 and it was gone.
Forum: Plugins
In reply to: [Sideways8 Private Pages] Private page on menu?Forum: Plugins
In reply to: [Sideways8 Private Pages] Link to private page.. Now I only miss the Change-Name-and-Password option..
Anyone knows?Forum: Plugins
In reply to: [Sideways8 Private Pages] Link to private pageI found out that
s8_pp_redirect is what I’m looking for here.That means the full url is: yourdomain/url-endpoint-of-your-private-pages?=s8_pp_redirect
for example: https://yourdomain.com/private-pages?=s8_pp_redirectThat leads you to a user’s private page. Now the part for only show that link when user is logged in.
I use the S8 login widget in my header. Which means I want to have it horizontally. The code in s8-login-widget.php, line 99 (approx.) will be:
elseif($instance['show_logout'] == 'yes') { echo '<div style="display:inline-block;list-style:none;padding:0 0 0 1rem;> <ul> <li><a href="https://mypage.com/private-pages?=s8_pp_redirect">My Page</a></li> <li><a href="https://mypage.com/login/?action=logout&redirect=http%3A%2F%2Fmypage.com">Log out</a></li> </ul> </div>'; }
Forum: Plugins
In reply to: [Sideways8 Private Pages] Link to private pageI also want a page where users can change their names and passwords. Just not the standard WP, but on a private page for that user.
Summary:
I want a menu showing: My page. When a user is logged on. With profile change page and that user’s private pages.