3.3.x Extensions Database 3.2 / 3.3 ⇒ Custom index page
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArraySniper_E
- VIP

- Status: Offline
- User theme: Dark
- Posts: 1160
- Joined: Oct 14th, '14, 17:01
Re: Custom index page
This is a Google translation... EN to FR
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArrayAlpha
- Users

- Status: Offline
- User theme: Dark
- Posts: 21
- Joined: Feb 14th, '23, 14:13
Re: Custom index page
Hi, super nickel, thank you friend. Solved for me.Sniper_E wrote: Apr 10th, '23, 04:22 This is a Google translation... EN to FR
customindexpage_fr.zip

-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arrayssl
- Users

- Status: Offline
- User theme: Dark
- Posts: 139
- Joined: Aug 19th, '20, 10:54
Re: Custom index page
In customindexpage.php replace this
by this
In French there is always a space before the question mark, contrary to English
Code: Select all
'CUSTOMINDEXPAGE_ACCOUNT' => 'Vous n`avez pas encore de compte?',Code: Select all
'CUSTOMINDEXPAGE_ACCOUNT' => 'Vous n`avez pas encore de compte ?',In French there is always a space before the question mark, contrary to English
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArrayAlpha
- Users

- Status: Offline
- User theme: Dark
- Posts: 21
- Joined: Feb 14th, '23, 14:13
Re: Custom index page
Hi ssl it was fixed thanks to Sniper_E thank youssl wrote: Apr 10th, '23, 21:25 in customindexpage.php replace this
by thisCode: Select all
'CUSTOMINDEXPAGE_ACCOUNT' => 'Vous n`avez pas encore de compte?',
Code: Select all
'CUSTOMINDEXPAGE_ACCOUNT' => 'Vous n`avez pas encore de compte ?',
In French there is always a space before the question mark, contrary to English
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArraySniper_E
- VIP

- Status: Offline
- User theme: Dark
- Posts: 1160
- Joined: Oct 14th, '14, 17:01
Re: Custom index page
Duly noted. Google translate had that space before the ? and I ignorantly removed it. I understand that now.ssl wrote: Apr 10th, '23, 21:25 In French there is always a space before the question mark, contrary to English
A question...
I use French Vanilla creamer in my coffee. Do you Frenchman just call that Vanilla creamer over there?
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArrayAlpha
- Users

- Status: Offline
- User theme: Dark
- Posts: 21
- Joined: Feb 14th, '23, 14:13
Re: Custom index page
Hi and again me, I managed to create this (image) but I can't do it for the line and create a button on "Contact us" and go down a little more please help me lol thank you
Sorry for my English, I'm French

Sorry for my English, I'm French

-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arraydmzx
- Founder

- Status: Offline
- User theme: Dark
- Posts: 6485
- Joined: Jan 13th, '14, 20:45
Re: Custom index page
Post the url of your forum to checkAlpha wrote: May 10th, '23, 18:01 Hi and again me, I managed to create this (image) but I can't do it for the line and create a button on "Contact us" and go down a little more please help me lol thank you
Sorry for my English, I'm French
![]()
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArrayAlpha
- Users

- Status: Offline
- User theme: Dark
- Posts: 21
- Joined: Feb 14th, '23, 14:13
Re: Custom index page
dmzx
Hi, sorry i forgot, i managed to fix it, but now i'm stuck inserting my admin contact link, i manage to put it in the code, but when you click on it, it doesn't don't open
I installed Contact Admin, but nothing, I click of course. Contact us, but the contactadmin link does not open, I am lost, please help me
Hi, sorry i forgot, i managed to fix it, but now i'm stuck inserting my admin contact link, i manage to put it in the code, but when you click on it, it doesn't don't open
I installed Contact Admin, but nothing, I click of course. Contact us, but the contactadmin link does not open, I am lost, please help me
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arrayclight77
- Donator

- Status: Offline
- User theme: Dark
- Posts: 507
- Joined: Sep 24th, '15, 14:23
Re: Custom index page
This is how I added the button. In ACP/Extentions/Custom Index Page/Settings
Will add a few images also..
HTML:::: add this
Use your own email address.....
CSS:::: add this at the bottom.
language..... Add this at the bottom.




I am sure DM or Martin have other ways of doing this :)
Will add a few images also..
HTML:::: add this
Code: Select all
<div class="contact">
{{ lang('CONTACT_HELP') }}
<a href="mailto:clight77@shaw.ca?subject=General board assistance"><button class="button button1">{{ lang('CONTACT_US') }}</button></a>
<br><br><br>CSS:::: add this at the bottom.
Code: Select all
.button {
margin-top: 10px;
padding: 6px 25px;
background: #373E4A;
color: #C1C3C6;
font-weight: bold;
cursor: pointer;
border-radius: 3px;
border: 1px solid #494e61;
}
.button:hover {
border: 1px solid #288cfb;
}Code: Select all
'CONTACT_HELP' => 'Need help?<br>',
'CONTACT_US' => 'Contact Us.',




I am sure DM or Martin have other ways of doing this :)
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arraymartin
- Admin

- Status: Offline
- User theme: Dark
- Posts: 5123
- Joined: Apr 6th, '14, 14:12
Re: Custom index page
Like this ?
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arrayclight77
- Donator

- Status: Offline
- User theme: Dark
- Posts: 507
- Joined: Sep 24th, '15, 14:23
Re: Custom index page
That must be something you put together.. LOL
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArrayAlpha
- Users

- Status: Offline
- User theme: Dark
- Posts: 21
- Joined: Feb 14th, '23, 14:13
Re: Custom index page
Hi it's cool, but I don't have this option in the mdr extension
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arrayclight77
- Donator

- Status: Offline
- User theme: Dark
- Posts: 507
- Joined: Sep 24th, '15, 14:23
Re: Custom index page
What is mdr extention?
Forget what Martin has posted it does not apply.
Forget what Martin has posted it does not apply.
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Arraymartin
- Admin

- Status: Offline
- User theme: Dark
- Posts: 5123
- Joined: Apr 6th, '14, 14:12
-
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
ArrayAlpha
- Users

- Status: Offline
- User theme: Dark
- Posts: 21
- Joined: Feb 14th, '23, 14:13
Re: Custom index page
Friend, this would be a good addition to the extension, easier
Subscribers
