paolofranzetti
Forum Replies Created
-
Forum: Plugins
In reply to: [Permalink Manager Lite] Duplicated polylang slugsI disabled the “Fix language mismatch” option; same behaviour.
The website is in development and it is password protected; may I send you the login informations in some “private” way ?
Thank you,
PaoloForum: Plugins
In reply to: [Permalink Manager Lite] Duplicated polylang slugsSorry Maciej,
what do you mean by “the sample permalinks” ?
Paolo
Forum: Plugins
In reply to: [Permalink Manager Lite] Duplicated polylang slugsHi Maciej.
If I use the first solution (remove the it/ from permalink) the english version redirects on the italian one.
It I use the second solution (the code snippet) is the italian version that redirects on the english one.
Kind regards,
PaoloForum: Plugins
In reply to: [Permalink Manager Lite] GET argumentsTrying to setup a staging website for you, I realized that your solution actually works if I use the “real” page. I am not sure why… perhaps the “test” slug is some kind of reserved name…
Anyway it works!
Thank you again very much,
PaoloForum: Plugins
In reply to: [Permalink Manager Lite] GET argumentsI added the code in my “functions.php” (is this the right place?) but the direct URL still does not work.
Paolo
Forum: Plugins
In reply to: [Permalink Manager Lite] GET argumentsDisabled, but still not working.
Kind regards,
PaoloForum: Plugins
In reply to: [Permalink Manager Lite] GET argumentsThis is the main page:
https://test.lambrate.inaf.it/test/
and this is the URL that does not work (it redirects on the main page)
https://test.lambrate.inaf.it/test/paolo.franzetti
The “explicit” URL works fine;
https://test.lambrate.inaf.it/index.php?pagename=test&account=paolo.franzetti
Below I attached the “test” page source.
This is the new site of my institute and it is password protected. I have created a temporary account for you;
Username: test
Password: ioNChiThank you very much,
Paolo————————————————————————
<?php /** * Template Name: Staff Page Template * * Displays the Personal Page Template. * * @package ThemeGrill * @subpackage Spacious * @since Spacious 1.0 */ get_header(); ?> <?php do_action( 'spacious_before_body_content' ); ?> <div id="primary"> <div id="content" class="clearfix"> <?php $name = get_query_var( 'account' ); if (strlen($name)!=0) { print "This will be the page for the " . $name . " account"; } else { print "This will be the full staff page"; } ?> </div><!-- #content --> </div><!-- #primary --> <?php spacious_sidebar_select(); ?> <?php do_action( 'spacious_after_body_content' ); ?> <?php get_footer(); ?>
- This reply was modified 5 years, 9 months ago by paolofranzetti.
- This reply was modified 5 years, 9 months ago by paolofranzetti.