vroom66
Forum Replies Created
-
Forum: Plugins
In reply to: [EntryWizard] very narrow notice boxMBSharp it doesn’t appear to be NextGen. Do you have Elementor, it’s not on your list?
Forum: Plugins
In reply to: [EntryWizard] very narrow notice boxOut of those the only ones I have are Duplicator and NextGen. Maybe Nextgen is a good place to start.
Forum: Plugins
In reply to: [EntryWizard] Error message [U011]Hello checked this mine is already set at 64mb. Am having trouble attaching images to a page, getting a php memory error so was hoping this would solve it but alas it won’t. Anyone has any ideas they’d be gratefully received. Already have php memory set to 256mb.
Forum: Plugins
In reply to: [EntryWizard] very narrow notice boxI have this problem too – it was fine when I first installed but now I have the skinny vertical box too. Mine is centred not against the right edge though. Will try disabling all the plugins but will need to find an opportunity when nobody is using it – so if anyone finds the answer in the meantime hopefully they’ll post it! I don’t have peepso.
You absolute legend! That worked! If you had any idea how long I’ve spent on this – thank you so very much!
- This reply was modified 7 years, 5 months ago by vroom66.
Hello thanks for your help but unfortunately this still doesn’t work. Following is what I have:
public function __construct( $user_id ){
$this->custom1 = get_user_meta(get_current_user_id(), ‘grade_19’, true);It’s creating the column in the spreadsheet and on the forms just fine but not pulling the data in for some reason.
Any clues?
Forum: Plugins
In reply to: [EntryWizard] EW EXTRA with Ultimate MemberWhat about calling the data straight from wp_usermeta as that’s where Ultimate Member stores it – is there a way to do that? Thanks.
Forum: Plugins
In reply to: [EntryWizard] EW EXTRA with Ultimate MemberJosie thanks so much – I’m getting so close it’s adding the columns but just not pulling the data in.
The Ultimate Member people told me to use the below:
um_fetch_user( get_current_user_id() );
echo um_filtered_value(‘grade’);or for raw data with no formatting:
echo get_user_meta(get_current_user_id(), ‘grade’, true);
The plugin saves the data in the wp usermeta database so it could be pulled from there also as above I think.
Is there anyone that can help me? Happy to pay?
What I have at present:
);
public function __construct( $user_id ){
$this->custom1 = um_fetch_user( get_current_user_id() );
um_filtered_value(‘membership_number’);$this->custom2 = um_fetch_user( get_current_user_id() );
um_filtered_value(‘grade_19’);This creates the data fields but doesn’t pull the data through.
Most other things I have tried say there’s an error on Line 76, with an unexpected { or } [sorry can’t remember which way the bracket goes].
Forum: Plugins
In reply to: [EntryWizard] EW EXTRA with Ultimate MemberI found the below:
<?php
um_fetch_user( get_current_user_id() );
echo um_user(‘display_name’); // returns the display name of logged-in user
?>I think that might be what I’m needing? It’s adding the columns happily enough and generating the spreadsheet but the fields are blank.
Or maybe this still isn’t the right thing!
Anybody who wants to help am happy to pay, would be great to get this working as it it’s a fabulous plugin.