rcwdm
Forum Replies Created
-
Agreed, me too.
Thanks.
WS Form and any form builder really. The testing email also fails to send HTML as well.
Theme is irrelevant.
- This reply was modified 2 years, 3 months ago by rcwdm.
Forum: Plugins
In reply to: [Yoast SEO] Remove Zapier notice on posts and productsadded this CSS to the admin and it worked for me.
div.misc-pub-section.yoast.yoast-seo-score.yoast-zapier-text {
display: none;
}Forum: Plugins
In reply to: [Wallet for WooCommerce] Stop wallet being used for certain productsAlso, is it possible to remove topup altogether and only apply cash back on product sales?
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce – Bayna] Mark as paidThanks.
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce – Bayna] Mark as paidRight thanks. And that won’t effect those that pay by card?
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formThanks for your help. I’ll look into it.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formLooks like I may need to.
But, what I meant was as the user submits the form, the users role such as ‘subscriber’ changes to ‘contributor’.
It would open up far simpler hide/show condition options for me.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formWhat about changing the users role, after then publish a form?
Can you do that?
I can then setup conditions to the div to hide/show forms based on user role.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formWill do, thank you.
Forum: Plugins
In reply to: [Theme My Login] Remover ‘lost password’ on register page onlyCheers
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formNo, I understand, thanks for your time.
That hasn’t worked for me on this occasion, think I review other options.
Forum: Plugins
In reply to: [Theme My Login] Remover ‘lost password’ on register page onlySo to remove lost password from the register form you’?
function remove_register_from_tml_login_form( $form ) { if ( 'login' == $form ) { tml_get_form( 'register' )->remove_link( 'lostpassword' ); } } add_action( 'tml_registered_form', 'remove_register_from_tml_login_form' );
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formI appreciate your time on this.
I have done that and it hides the form for everyone not just the user role.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Limit ability to publish formSorry, I’m lost again.
Have got the shortcode added in a div within a page.
Where and I putting this:
add_filter('acfe/form/load/form=MY-FORM-SLUG', 'my_form_settings', 10, 2); function my_form_settings($form, $post_id){ // check for current user role CUSTOMER if(in_array('CUSTOMER', (array) $user->roles)){ // get posts of the current user (by post_author) $check_posts = get_posts(array( 'post_type' => 'POSTTYPENAME', 'post_author' => get_current_user_id(), 'posts_per_page' => -1, 'fields' => 'ids' )); // count posts and display form if the user has less than 2 posts if(count($check_posts) < 2){ // display the form return $form; } } // hide the form in any other case return false; }