Moraima R.
Forum Replies Created
-
I found this page that help me to find a solution, hope this page help for you guys
plugin helpHello thank you for your response, i try all that you suggest before i post the other day with no luck ??
Forum: Themes and Templates
In reply to: [Toolbox] Adding Widgets to Toolbox Theme as a child ThemeMy toolbox child theme function.php is blank, and the only code is the one you gave to me, i don’t know why is not working.
Forum: Themes and Templates
In reply to: [Toolbox] Adding Widgets to Toolbox Theme as a child ThemeThank you very much Lance, but the only way that is working, is adding this to the parent function.php, i was unable get running this code on the child theme.
Forum: Themes and Templates
In reply to: [Toolbox] Adding Widgets to Toolbox Theme as a child ThemeHey hi, thank you for your response and advice, I will review my html code. But this option unfortunately still not working.
I’m using the toolbox theme as a parent and using toolbox-child theme, and still can not get it to work, I can not see a way to add custom widgets to this child theme, without modifying the parent theme.
Thanks in advance.
Ohhhh i see, thank you for your help and time, now it’s working. ??
Hello, first thanks for this pluggin is excelent, the only thing with this issue is, I only want to redirect to a thank you page when the member login the first time or when the register process finish. I can do that doing what you said here?
I try but still not working, what function you refer on member area/register pages?
Thank you very much, in advance for your support and time.
Best Regards.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] phone number validationThanks for the code cutescar2nis, it was really helpfull. ??
@frankschrijvers i had the same problem and get it working like this, hope that it work for you too:
if ( ‘digit’ == $type || ‘digit*’ == $type ) {
if ( ” == $_POST[$name] ) {
$result[‘valid’] = false;
//$result[‘reason’][$name] = $wpcf7_contact_form->message( ‘invalid_required’ );
$result[‘reason’][$name] = wpcf7_get_message( ‘invalid_required’ );
} elseif ( ” != $_POST[$name] && ! is_telnum( $_POST[$name] ) ) {
$result[‘valid’] = false;
//$result[‘reason’][$name] = $wpcf7_contact_form->message( ‘invalid_digit’ );
$result[‘reason’][$name] = wpcf7_get_message( ‘invalid_digit’ );
}
}Forum: Plugins
In reply to: [Plugin: Contact Form 7] Full country list as drop-down menuThanks all ??