Iris M
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Content Shortcode] Display Member since regsitered dateclosing
Forum: Plugins
In reply to: [Custom Content Shortcode] Display Member since regsitered dateThank you! works like a charm.
Forum: Plugins
In reply to: [Custom Content Shortcode] Display Member since regsitered datehelp anyone?
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Sync does not pass other fieldsHi – never got a response – can you please help me so I can pass all fields necessary through to mailchimp?
Forum: Plugins
In reply to: [Custom Content Shortcode] You can also specify a custom user field nameI found som other forum entry that states:
I fixed this issue by adding the code:
$wpdb->flush();As a hashmap is being built it is somewhat redundant to have the query results cached as well. A limit to the number of lines called might be handy in some cases.
in meta.php function update_meta_cache() as follows:
// Get meta info $id_list = join(',', $ids); $cache = array(); $meta_list = $wpdb->get_results( $wpdb->prepare("SELECT $column, meta_key, meta_value FROM $table WHERE $column IN ($id_list)", $meta_type), ARRAY_A ); $wpdb->flush(); if ( !empty($meta_list) ) {
Forum: Plugins
In reply to: [Custom Content Shortcode] You can also specify a custom user field nameHi Eliot – as soon as I de-activated your plug-in the problem went away. The error only occurred on the home page, I was able to access all others. Any idea?
Forum: Plugins
In reply to: [Custom Content Shortcode] You can also specify a custom user field nameFatal error: Allowed memory size of 103809024 bytes exhausted (tried to allocate 32 bytes) in /nfs/c08/h04/mnt/171251/domains/classhoppers.com/html/wp-includes/meta.php on line 808
This happens when I go to the site’s home page
Forum: Plugins
In reply to: [Custom Content Shortcode] You can also specify a custom user field nameEliot – I am getting a fatal error on meta.php on my home page. Could this be caused by the plug-in?
https://www.classhopper.comPlease help!
Forum: Plugins
In reply to: [Custom Content Shortcode] You can also specify a custom user field nameThis works great! Thanks so much for your quick responses and expert help!
Forum: Plugins
In reply to: [Custom Content Shortcode] You can also specify a custom user field nameThanks for your help and quick response!
I am using the events manager plug-in that allows me to define additional user fields for bookings and reservations. https://wp-events-plugin.com/
So I have address, gender, age and more fields that are required to use my site to search for events.
Your plug- in is great and easy to use and mad it finally possible for me to create the page I wanted. Thank you!
I have another question: If I want to redirect if the zip code is empty to require them to enter it, how would I do that? I tried [if empty] but that seems to only work in a loop?
I would like to say
[if empty user dbem_zip_code]
Display form to enter zip code
[else]
Do something else
[/if]Is that possible?
Iris