Forum Replies Created
-
Author
-
November 28, 2013 at 17:33 in reply to: Register on Landing page but no search page on member site #7427vanailaParticipant
Hi, what have we to put to remove register form.
I tried this, but it doesn’t work:
add_action('after_setup_theme','remove_registration_form',11);
function remove_registration_form() {
remove_action('after_header_content','render_registration_form');
}
I tried with render_registration_user too
vanailaParticipantI think that I may have the same problem.
Is there a way to check that they did active theit account, or to activate automatically the account?
vanailaParticipantThis code give that with sweetdate theme :
What is bad for me is that :
I want it to be like this :
Maybe I don’t put class=”custom” at the good place.
vanailaParticipantthanks for your help.
I did it like that :
<form class=”custom” action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"><input type="hidden" name="hosted_button_id" value="LQRE83265WCME" />
<table>
<tbody>
<tr>
<td><input type="hidden" name="on0" value="Options de soutien" />Options de soutien</td>
</tr>
<tr>
<td><select name="os0"><option value="Votre nom sur la page des soutiens pour 1an">Votre nom sur la page des soutiens pour 1an €10,00 EUR</option><option value="1 an en + et votre nom sur la page des soutiens pendant 1 an">1 an en + et votre nom sur la page des soutiens pendant 1 an €20,00 EUR</option><option value="3 ans en + et votre nom sur la page des soutiens pendant 3 ans">3 ans en + et votre nom sur la page des soutiens pendant 3 ans €35,00 EUR</option><option value="1 an en + et votre lien sur la page des soutiens pendant 1 an">1 an en + et votre lien sur la page des soutiens pendant 1 an €50,00 EUR</option><option value="Votre nom dans le footer du site pendant 1 an">Votre nom dans le footer du site pendant 1 an €100,00 EUR</option><option value="Votre lien dans le footer du site pendant 1 an">Votre lien dans le footer du site pendant 1 an €300,00 EUR</option></select></td>
</tr>
</tbody>
</table>
<input type="hidden" name="currency_code" value="EUR" />
<input type="image" alt="PayPal - la solution de paiement en ligne la plus simple et la plus sécurisée !" name="submit" src="http://s17.postimg.org/lruenqwl7/soutien.png" /></form>
But it doesn’t work.
November 5, 2013 at 17:18 in reply to: How to hide part of profil that are display in the header #5972vanailaParticipantOk. Thanks a lot.
If I found out something I’ll post it here. 🙂
vanailaParticipantHi!
Thanks for your help.
I don’t find this : WP Admin – Sweetdate – Styling options – Quick css
in WP Admin, I don’t have Sweedate folder.
And in my folder WP content / Themes / Sweetdate … I don’t have Styling otpions folder either.
So I will try to create it.
I’ll be back 🙂
vanailaParticipantThe slider worked well in homepage.
But I whish that logged in people don’t see it. Only visitors, logout people (sorry for my bad english)
vanailaParticipantfind out what to change.
For those who are interested.
You have to uncomment this part in custom_buddypresse/bp-functions.php:
if (! function_exists('bpfr_datebox_year_ranges')):
/**
* Filter year field only to allow minimum 18 year old members
*/
function custom_bp_datebox($html, $type, $day, $month, $year, $field_id, $date) {
$current_year = date("Y");
$allowed_year = $current_year - 18;
if($type == 'year'){$html = '<option value=""' . selected( $year, '', false ) . '>----</option>';
for ( $i = $allowed_year; $i >= 1920; $i-- ) {
$html .= '<option value="' . $i .'"' . selected( $year, $i, false ) . '>' . $i . '</option>';
}
}
return $html;
}
endif;
add_filter( 'bp_get_the_profile_field_datebox', 'custom_bp_datebox',10,7);vanailaParticipantAs for me,
Cannot chose if people can acces profile, send private messages, downloads images or not, etc…
How can we fix it ?
-
AuthorPosts