Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checkbox com default 1 retorna undefined index #364

Closed
romuloctba opened this issue Oct 27, 2015 · 4 comments
Closed

Checkbox com default 1 retorna undefined index #364

romuloctba opened this issue Oct 27, 2015 · 4 comments
Labels

Comments

@romuloctba
Copy link
Contributor

Se criarmos uma checkbox com default 1, embora ela apareça checada nas theme options, ao solicitar ela pelo php, recebemos undefined index, já que ela não é definida.

Para solicitar corretamente no front precisamos usar um fallback com isset(), ou salvar a checkbox desmarcada, e depois marcando novamente ela.

@romuloctba romuloctba added the bug label Oct 27, 2015
@romuloctba
Copy link
Contributor Author

$configs = get_option('minha_section');
$texto_instagram = $configs['texto_instagram']; //funciona pq é um texto
$exibe_instagram  = $configs['exibe_instagram']; // retorna undefined index, pq o default dela é 1
$exibe_instagram  = isset($configs['exibe_instagram']) ? $configs['exibe_instagram'] : false; // assim vai de boas

@romuloctba
Copy link
Contributor Author

é que não achei a linha ainda pra poder editar no class-metabox.php, mas pretendo fazer.. por isso abri a issue. caso alguem faça antes, td bem, por enqnto to usando o isset().

@fdaciuk
Copy link
Contributor

fdaciuk commented Oct 27, 2015

@romuloctba já tem um bug aberto pra isso em #124.

Tem algumas ideias de solução lá, mas ainda não foi testado.

@romuloctba
Copy link
Contributor Author

ih carai, foi mal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants