Search found 16 matches

by grimblefritz
Fri Apr 28, 2023 5:21 pm
Forum: Plugins
Topic: MOD: Include subpages in SimpleSEO
Replies: 0
Views: 25405

MOD: Include subpages in SimpleSEO

The way I'm using WCMS, I have a hidden top-level menu item that does nothing but hold subpages I don't want in the menu. I would, however, like to have the subpages (that are not themselves hidden) in the sitemap. SimpleSEO doesn't descend into the subpages. It only looks at the top level. So, this...
by grimblefritz
Wed Apr 26, 2023 5:39 pm
Forum: Themes
Topic: Footer editor toolbar overlays main content area
Replies: 1
Views: 7390

Re: Footer editor toolbar overlays main content area

I hacked around this by adding this in theme.php before the <footer> <?php // add a margin so footer doesn't overlap content if ( $this->loggedIn ) { echo '<div style="margin-top:150px">&nbsp;</div>'; } ?> There might be a more elegant way, but this hack smoothed things out for me quit...
by grimblefritz
Wed Apr 26, 2023 3:18 am
Forum: Support
Topic: [SOLVED] logoutAction to last page being viewed
Replies: 3
Views: 6595

[SOLVED] logoutAction to last page being viewed

I fiddled with this a bit more and found a not too difficult solution, but it does require fiddling in the main index.php Find function logoutAction(). Change: $this->redirect('login'); To this: if (! empty($_GET['to'])) { // logout to the page you were viewing $this->redirect($_GET['to']); } else i...
by grimblefritz
Wed Apr 26, 2023 12:34 am
Forum: Support
Topic: [SOLVED] logoutAction to last page being viewed
Replies: 3
Views: 6595

[SOLVED] logoutAction to last page being viewed

Logout takes one to the login screen. I would prefer to go to the last page being view when logout was initiated. Going to the 'home' page is easy enough: $this->redirect($this->get('config', 'defaultPage')); Specifying 'defaultPage' instead of 'login'. But how, let's say if I was viewing 'About' an...
by grimblefritz
Tue Apr 25, 2023 1:37 pm
Forum: Themes
Topic: Clean theme - dropdown menu for subpages
Replies: 5
Views: 9548

Clean theme - dropdown menu for subpages

I'm not much good with CSS and JS stuff. I usually recognize with a thing is possible. I just don't know how to go about doing it.

Has anyone implemented, or can someone help me how to implement, dropdown menus for subpages in the Clean theme?
by grimblefritz
Tue Apr 25, 2023 1:29 pm
Forum: Themes
Topic: Footer editor toolbar overlays main content area
Replies: 1
Views: 7390

Footer editor toolbar overlays main content area

Clean theme SummerNote editor When the main content/editable area grows to screen height or more, the editor toolbar for the footer overlays it. I cannot manually resize the edit area because it is behind the footer and cannot be selected. The same problem occurs with the sidebar if it grows >= scre...