37
Forum Replies Created
-
Understood and appreciated. I have changed my review and gave you 5 stars. It’s rare to get such great support.
Forum: Plugins
In reply to: [Gravitate Encryption] Issue with Gravity Forms Signatures add-onFYI, I’m getting the same error and I do not have the Gravitate Encryption Add-on installed, so it’s not an issue with your plugin…
Forum: Plugins
In reply to: [Gravity PDF] Update LaggingNevermind, I found another thread that suggested to uninstall and install again. It worked…
Forum: Fixing WordPress
In reply to: Profile Field Expiration DateThank you, Bryan. I already reached out to Ultimate Member and they told me to find a developer to write the code for me. ??
Forum: Plugins
In reply to: [WPeMatico RSS Feed Fetcher] Feed format not workingThank you. I have submitted a new ticket with the debug log.
Forum: Plugins
In reply to: [WPeMatico RSS Feed Fetcher] Feed format not workingIt shows an error:
ERROR: The feed https://www.incapsula.com/blog/feed cannot be parsed. Simplepie said:
Is there a setting that I need to change?
Also, even the xml links that do work only show one sentence. Not full content.
Forum: Plugins
In reply to: [W4 Post List] Custom Meta FieldsNevermind, I figured it out. Thanks.
[post_meta key=”eg-rfpstartdate” multiple=”0″]
Yes, and it doesn’t work with my theme apparently. The options don’t show up where they’re supposed to and I am not getting any support on it.
Forum: Plugins
In reply to: [Post Notification by Email] Include an Excerpt of Post?Did you ever get an answer to this?
I would like to do the same thing. The bottom of my posts have a button that the users click to acknowledge the post, but in the email it shows up as code. I would like to just include what I want in the email.
Good to know. This is very important to me. Unfortunately I cannot use your plugin without this option. Hopefully you get it updated soon. Thanks.
Forum: Plugins
In reply to: [Participants Database] Automatically Add as Site Users and 2 Databases?Hey, I really appreciate your help and timely response! Though, I’m not very familiar with jQuery and all that. Do you have any resources you can point me to to help guide me through the process?
Forum: Plugins
In reply to: [Participants Database] Automatically Add as Site Users and 2 Databases?Thank you. As for adding users as site users, do you have any suggestions? I was thinking maybe adding a hidden input tag or something to my current form? Here is the form I’m using:
<script language="Javascript" type="text/javascript"> var fieldstocheck = new Array(); fieldnames = new Array(); function checkform() { for (i=0;i<fieldstocheck.length;i++) { if (eval("document.subscribeform.elements['"+fieldstocheck[i]+"'].value") == "") { alert("Please enter your "+fieldnames[i]); eval("document.subscribeform.elements['"+fieldstocheck[i]+"'].focus()"); return false; } } return true; } function addFieldToCheck(value,name) { fieldstocheck[fieldstocheck.length] = value; fieldnames[fieldnames.length] = name; } </script> <form enctype="multipart/form-data" method="post"><input type="hidden" value="signup" name="action"></input><input type="hidden" value="participants-database" name="subsource"></input><input type="hidden" value="?page_id=70" name="shortcode_page"></input><input type="hidden" value="https://nmvolunteer.org/?page_id=78" name="thanks_page"></input> <input size="10" id="volformleft" type="text" name="first_name" value="first name" onfocus="if (this.value=='first name') this.value='';" onblur="if(this.value == ''){this.value='first name';}"><script language="Javascript" type="text/javascript">addFieldToCheck("first_name","first name");</script><input size="10" id="volform" type="text" name="last_name" value="last name" onfocus="if (this.value=='last name') this.value='';" onblur="if(this.value == ''){this.value='last name';}"><script language="Javascript" type="text/javascript">addFieldToCheck("last_name","last name");</script><input size="23" id="volform" type="text" name="email" value="email" onfocus="if (this.value=='email') this.value='';" onblur="if(this.value == ''){this.value='email';}"><script language="Javascript" type="text/javascript">addFieldToCheck("email","email address");</script><input size="12" id="volform" type="text" name="phone" value="phone" onfocus="if (this.value=='phone') this.value='';" onblur="if(this.value == ''){this.value='phone';}"><script language="Javascript" type="text/javascript">addFieldToCheck("phone","phone number");</script><input size="12" id="volformright" type="text" name="city" value="city" onfocus="if (this.value=='city') this.value='';" onblur="if(this.value == ''){this.value='city';}"><script language="Javascript" type="text/javascript">addFieldToCheck("city","city");</script> <input type="hidden" name="submit" value="VOLUNTEER" /> <input id="volformsubmit" type="submit" name="submit" value="VOLUNTEER" onClick="return checkform();"> </form>