Stiofan O'Connor

Forum Replies Created

Viewing 15 posts - 181 through 195 (of 324 total)
  • Author
    Posts
  • in reply to: Not being able to upload Avatar #1209

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Thanks for your understanding!

    Stiofan

    in reply to: Not being able to upload Avatar #1207

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hi Mark,

    I have done some testing, we are using the WP function “wp_handle_upload” and it is returning what looks to be a correct url on but its not resolving correctly as per ur example above.

    I see on their plugin page they are having problems and only really say images uploaded via the wp media uploader will work correctly.

    We are doing everything correctly and the “WordPress way” i would suggest you take this up with the author of that plugin, mention we are using “wp_handle_upload”

    Thanks,

    Stiofan

    in reply to: select Role from Register page #1202

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    You would need to add a hook after registration to change user role to the custom field you have added.

    Stiofan

    in reply to: WPInvoicing integration #1198

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Yes, or u can charge per post or per category.

    Stiofan

    in reply to: WPInvoicing integration #1196

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    This is not something that can be achieved easily at the moment, WPI needs the user to be registered to send them an invoice/pay, but what might be possible is having them “upgrade” their user type or pay to access parts of the site. We have done basic stuff with this but we plan on doing more in future.
    See: https://wpinvoicing.com/looking-for-beta-tester-for-paid-members/

    Thanks,

    Stiofan

    in reply to: Geodirectory Add-on #1187

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hi Fred,

    It does not. If you are a GD member then you get the GD addon for free but if you are a UWP member you dont get the GD membership for free.
    (i hope u understood your questions right?)

    Thanks,

    Stiofan


    Stiofan O’Connor
    Site Admin
    Post count: 22956
    This reply has been marked as private.

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hello Sadddam,

    Is your email address in your general setting the same as your domain? (like [email protected])
    /wp-admin/options-general.php

    Some hosts won’t let you send email from any domain apart from your own one.

    If you still have problems please open your own topic and we will help further.

    Thanks,

    Stiofan

    in reply to: not able to register #1161

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    UWP recaptcha was active but there were no settings added, i have deactivated it, if u reactivate it please add the api settings.

    Thanks,

    Stiofan

    in reply to: not able to register #1148

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    triple password fields is not right… is everything up to date?

    Stiofan

    in reply to: GeoDirectory Add-On #1137

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    You might be best just hiding this with CSS for now, we are working through GDv2 so anything i give you will be obsolete when that is released. (it might even be possible to remove from setting then)

    Thanks,

    Stiofan

    in reply to: WooCommerce Integration Question #1131

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hi Joy,

    It will show you your orders and any products you might have but it does NOT let you add them from the frontend at this time.

    Thanks,

    Stiofan

    in reply to: users page design #1122

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    You did not have the users-1 page set as the users apge in the UWP settings, so it was not loading the UWP CSS, please check now.

    Stiofan

    in reply to: UsersWP Default Value for Gravity Forms #1120

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    I have added the following snippet but not tested it, please test it and let us know.
    For example if you have a custom field with html_var of “gender” then you would add a GF field of “uwp_account_gender” and that should work.

    Please let us know how u get on.

    Stiofan

    
    
    add_filter( 'gform_field_value', '_gf_populate_uwp_fields', 10, 3 );
    function _gf_populate_uwp_fields( $value, $field, $name ) {
     
         $user_id = get_current_user_id();
      if(!$user_id){return $value;}
      
      $values = array();
      
    	 $usermeta = uwp_get_usermeta_row($user_id); 
    	  if(!empty($usermeta)){
    		foreach($usermeta as $key=>$meta){
    		  if (strpos($key, 'uwp_account_') === 0) {
    				$values[$key] = $meta;
    		  }
    		}
    	  }
    
     
        return isset( $values[ $name ] ) ? $values[ $name ] : $value;
    }
    in reply to: users page design #1118

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Please provide wp-admin details and i will take a look.

    Stiofan

Viewing 15 posts - 181 through 195 (of 324 total)