Jump to content

List of child pages not shown on language URL page


doolak
 Share

Recommended Posts

Hello everybody,

on a multilanguage job website I am using the following code to show up a list of job offers. 

The site structure is as follows:

- stellenangebote/
-- stellenangebote/stellenangebote_de/     
--- jobs as child pages

The jobs are located under /stellenangebote/stellenangebote_de/ as child pages and I want to show them up on /stellenangebote/ with the following template code:

$stellenanzeigen = $pages->get("/stellenangebote/stellenangebote_de/");

foreach($stellenanzeigen->children('stellenanzeige_kategorie=1') as $child) { ?>
	<h3 class="uk-text-primary"><?php echo $child->title ?></h3>
<?php } ?>

This works fine for the default language (german) on /stellenangebote/ but its does not work on the french url version of this page /fr/offres-demplois/ . 

I have no idea whats wrong - has anybody an idea?

Cheers Christian

Link to comment
Share on other sites

Hello again,

a very nice guy sent me a pm with some suggestions and of of them worked:

Quote

Perhaps one or two of your pages in the "/stellenangebote/stellenangebote_de/" path are not activated for french? Perhaps it's needed?

 And it wasn`t activated but needed... So it works fine now! Merci encore pour tout, C.!

Kind regards Christian

  • Thanks 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...