aenea
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Can I update custom fields through php?Sorry, didn’t make my original query clear. I am using WP-Members to create custom fields for users. I was wondering whether there were any WP-Member specific functions that would enable me to retrieve and update these fields through PHP scripts.
Have solved the problem for myself, using
$wpmem_fields=get_option( ‘wpmembers_fields’ )
to get the indices of the WP-Member fields. It is this step that makes it a WP-Members query. Once I have this data, I am then able to use the standard Worpress functions to retrieve and update the relevant fields.get_user_meta( $user_id,$wpmem_fields[$x][2],’true’)
retrieves the current vale of a particular field (where $x is the index of the field I want to get), andupdate_user_meta($user_id, $wpmem_fields[$x][2],$newvalue)
will update the field.Hi Kevin
Many thanks for sending me the private build. It has fixed my problem – the ‘Unsupported browser’ warning message no longer appears.
Cheers
AeneaI am having the same problem with GDE, getting the message:
“You are using an unsupported browser. Some features may not work correctly. Upgrade to a modern browser, such as Google Chrome.Dismiss”
regardless of which browser is used. I was hoping your workaround of adding a line to style sheet might solve the problem but so far have not had any luck. Can you be more precise as to where to find the relevant style sheet?
Forum: Plugins
In reply to: [Google Doc Embedder] Google doc Embedder and internet explorer 10-11No, IE 11 still has a problem.
Following bschmidttraub’s comment above ‘Looks like IE 11 works now!’, I tried removing the IE 10 emulation meta tag from my header and the viewer just hung. Have restored the meta tag and the viewer works.Forum: Plugins
In reply to: [Google Doc Embedder] Google doc Embedder and internet explorer 10-11Thanks for this workaround. Do you know if the insertion of this line into the header will have any effect on users still using earlier versions of IE?
Please can you let us know (via this forum) when Google and Microsoft resolve this issue.
Forum: Plugins
In reply to: [User Access Manager] Redirect doesn't work, only shows 404 error pageI just ran into this problem, too.
The redirect works for some pages but for others just gives the ‘404’.
I’m going crazy trying to work out what’s causing this. Any help or suggestions gratefully received.