Jonm511
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] How to remove name requirement from reg form?I have uploaded a csv with people’s names and email addresses. When I make an event that requires an invitation then send out the registration email, the email has a link generated just for each user. When the user clicks on it, it will bring them to the registration page with the email field already filled out with their email.
If you look at line 1592 in the plugin file ’eme_formfields.php’ you’ll see it’s set to prefill that section by using the email information from the URL sent to the user. This is also the same file I was able to eventually edit so I could bypass a user needing to insert their last name in order to submit a registration.
Forum: Plugins
In reply to: [Events Made Easy] How to remove name requirement from reg form?Thank you for the fast reply. If that is not possible can the name section be autofilled as it does for the email section when sending a registration link to a non-wordpress user? These are users who already have a name and email placed in the ‘peoples’ section of the plugin.
- This reply was modified 3 years, 8 months ago by Jonm511. Reason: added more information
Forum: Plugins
In reply to: [Automatic Upload Images] file url not correctIn the plugin file
ImageUploader.php
look for a section of code that is:$image['path'] = $image['base_path'] . DIRECTORY_SEPARATOR . $c . '_' . $image['filename']; $image['url'] = $image['base_url'] . '/' . $c . '_' . $image['filename']; $c++;
You might need to add
.'/'.
right before the part$image['filename']
Forum: Plugins
In reply to: [Automatic Upload Images] Can this work with PDFs?Seems it can by adding:
$mime = 'application/pdf';
to the file
ImageUploader.php
and commenting out the warning error for non-image files.Forum: Plugins
In reply to: [Category and Taxonomy Meta Fields] Text is not displayedYou have to paste this code into the .php file which displays the information on your site:
if (function_exists('wp_get_terms_meta')) { $MetaValue = wp_get_terms_meta($category_id, $meta_key ,true); //where $category_id is 'category/term id' and $meta_key is 'meta key' } //meta value for meta key $meta_key echo $MetaValue;
You can replace
$category_id
with$current_term->term_id
to get the current ID of the page you are viewing.$meta_key
gets replaced with the name of the meta field you created and is wrapped in single quotesLast updated in Feb 2020
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] DO NOT BUY THISSmart Slider is pretty heavy on load speed for a site, but if you’re making a site using a builder instead of using code then it will be slower anyway. The pro forums for Master Slider is where the help is, not the free forum.
Master Slider was last updated 3 months ago. Probably a couple weeks after you made this post.
Just replace the image in the slider with your own image from the media library. The slider was still made, it just has a broken background image.
Forum: Themes and Templates
In reply to: How do I remove the gray box under hero image?I don’t think you understand what it means when it says “not ready for public viewing”. That doesn’t mean it can’t be viewed, that just means it isn’t linked to any search engines. Whatever your web address is (minus the “wp-admin”) anyone can copy and paste that link into their browser and view your site.