Layout questions

Matthijs

Member
Hi, I use Dadabik within wordpress using the wrapper.
I use a tabel where the 'public' user (nobody logged in) has the following access:
Table: only Create (see screen shot below)
Fields: only Insert for some fields (see screen shot below)

In the wordpress page, I use this wrapper:
[dadabik_wrapper url=[URL]https://www.mslb.nl/dadabik/index.php?function=show_insert_form&insert&tablename=mslb__new_don[/URL]]
(I want the user only to be able to insert a new record)

This is the screen I get:
1690316944246.png
Two questions:
1) How can I remove the left column?
2) How can I change the text "Nieuw record toevoegen" (=add new record)

Thanks for any help!

1690316608272.png

For the fields, only Insert active for some fields:
1690316681578.png

Your current DaDaBIK version​

You are using DaDaBIK version 11.10-Elba monthly, installed on 13-07-2023 (installation code: 18828644e443ac0e33), the latest version of DaDaBIK is 11.10-Elba released on 13-07-2023

You are running the latest release of DaDaBIK

In case you want to upgrade to a more powerful edition (from Pro to Enterprise/Platinum, from Enterprise to Platinum) please contact us.

System info​

PHP Version: 8.1.19

mysql version: 10.6.13-MariaDB

Web server: Apache/2

Client: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

URL installation: https://mslb.nl/dadabik/
 

Attachments

  • 1690316845609.png
    1690316845609.png
    66.6 KB · Views: 0

juergen_mueller

DaDaBIK Guru
1) I guess this might be not trivial as this is the main table. However, a deeper look into the CSS file could bring some enlightenment

2) You can do that by editing the dutch.php file in include/languages

best
 

juergen_mueller

DaDaBIK Guru
1) Try the following setting in your CSS file:

Code:
.td_left_menu {
    width: 180px; /* hack, was 200 */
    vertical-align: top;
    display: none;
}
 

eugenio

Administrator
Staff member
There is also an alternative menu style, check the config parameter $menu_type and try to set it to 'drop_down_menu'.

Best,
 
Top