If you need to upgrade your PGV installation, then hopefully you will also consider that you can conveniently move to webtrees with our PGV-to-webtrees wizard. It will move ALL your users, news, favorites and family trees to webtrees in a matter of minutes.
Solved Menu order
- Luenissla
- Topic Author
- Offline
- Senior Member
Less
More
8 years 7 months ago #1
by Luenissla
Best regards / Viele Grüße
Hans-Joachim (Lünenschloß)
Menu order was created by Luenissla
Hello,
I try to replicate the menu order from PGV with vytux_menu2:
How can I get the Item "zurück zum BVfF" (= back to the BVfF) to the first position?
PGV: www.bvff.de/PhpGV/index.php?ctype=gedcom...&NEWLANGUAGE=english
WT: bvff.de/PoolWT/index.php?ctype=gedcom&ge...CHLOSS-1806_UTF8.ged
I try to replicate the menu order from PGV with vytux_menu2:
How can I get the Item "zurück zum BVfF" (= back to the BVfF) to the first position?
PGV: www.bvff.de/PhpGV/index.php?ctype=gedcom...&NEWLANGUAGE=english
WT: bvff.de/PoolWT/index.php?ctype=gedcom&ge...CHLOSS-1806_UTF8.ged
Best regards / Viele Grüße
Hans-Joachim (Lünenschloß)
Please Log in or Create an account to join the conversation.
- fisharebest
- Offline
- Administrator
8 years 7 months ago #2
by fisharebest
Greg Roach - greg@subaqua.co.uk - @fisharebest@phpc.social - fisharebest.webtrees.net
Replied by fisharebest on topic Menu order
You could modify the menu very easily in webtrees using a custom theme.
For example, save this file as themes/bvff/theme.php
For example, save this file as themes/bvff/theme.php
Code:
<?php
use Fisharebest\webtrees\Menu;
use Fisharebest\webtrees\Theme\XeneaTheme;
class BvffTheme extends XeneaTheme {
public function themeId() {
return 'bvff';
}
public function themeName() {
return 'BVfF';
}
protected function primaryMenu() {
$primary_menu = parent::primaryMenu();
$bvff_menu = new Menu('BVfF', 'http://www.bvff.de/', 'menu-tree');
return array_merge(array($bvff_menu), $primary_menu);
}
}
return new BvffTheme;
Greg Roach - greg@subaqua.co.uk - @fisharebest@phpc.social - fisharebest.webtrees.net
Please Log in or Create an account to join the conversation.
- Luenissla
- Topic Author
- Offline
- Senior Member
8 years 7 months ago #3
by Luenissla
Best regards / Viele Grüße
Hans-Joachim (Lünenschloß)
Replied by Luenissla on topic Menu order
Super, thank you very much!
Best regards / Viele Grüße
Hans-Joachim (Lünenschloß)
Please Log in or Create an account to join the conversation.
- Luenissla
- Topic Author
- Offline
- Senior Member
8 years 7 months ago #4
by Luenissla
Best regards / Viele Grüße
Hans-Joachim (Lünenschloß)
Replied by Luenissla on topic [SOLVED] Menu order
Problem solved.
Best regards / Viele Grüße
Hans-Joachim (Lünenschloß)
Please Log in or Create an account to join the conversation.