Hi there,
I'm running a marketplace plugin where the store name is stored as a user meta titled "marketking_store_name"
I'm trying to display products using toolset views, with the marketking_store_name value displayed as the creator of the product. As per my screenshot (the code is highlighted)
However, this is displaying nothing. There is definitely a value set in the db as per second screenshot.
Do you guys have an idea what I'm missing?
Hi there,
According to the documentation:
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#wpv-user
The "wpcf- " prefix is used only for types created user fields.
So you need to try without the prefix, but please consider that the shortcode should be used inside a loop to be able to find the correct user.
Please read the documentation and the examples for more details.
Thanks.
Hi, sorry I should have said. I actually tried both, with wpcf and without.
Still nothing..
Here's the page the view is on: hidden link
The shortcode I am using: [wpv-user field='marketking_store_name'] in a loop with the attached filter.
Hi there,
To make sure if the normal WordPress features can get the user at all, I suggest that you create a custom shortcode:
https://toolset.com/documentation/programmer-reference/adding-custom-code/how-to-create-a-custom-shortcode/
Then, use the get_user_meta native WordPress function to get the meta and see if it works or not:
https://developer.wordpress.org/reference/functions/get_user_meta/
If it works, you can use that custom shortcode instead of the wpv-user shortcode.
Thanks.