joeldault
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Gravity FormsThanks Michael, The update your made has revolved this issue. Thanks again for the great plugin
Forum: Plugins
In reply to: [Contact Form DB] Gravity FormsThanks Michael. Just a reminder, you created a great plugin.
Forum: Plugins
In reply to: [Contact Form DB] Gravity FormsGood Afternoon
I am having the exact same issue. The orders are not going into the database. The fields are being created however the only fields that are populating are summited time, submitted from and submitted loginForum: Plugins
In reply to: [Contact Form DB] Column Will Not DeleteI am sorry, I not nit sure what I am supposed to do with that
Forum: Plugins
In reply to: [Contact Form DB] Link to detailpageGood Morning, Thanks for asking and for all your help.
Below is the first page and the landing page. Yes the extra space in the link is so that it will show so you can see it. The extra space is between “< a”First page:
[cfdb-datatable form=”PLACE AN ORDER: Title Order Request” show=”File Number,Property Address,City,State,File Status,submit_time”]
{{AFTER}}
<script type=”text/javascript”>// <![CDATA[
(function ($) {
$(‘td[title=”submit_time”] div’).each(
function () {
$(this).html(‘< a href=”http://ptia.net/?p=1308&submit_time=’ + $(this).html() + ‘” >Details’);
})
})(jQuery);
// ]]></script>
{{/AFTER}}
[/cfdb-datatable]The second page is the following (landing page):
[cfdb-html form=”PLACE AN ORDER: Title Order Request” show=”Submitted,File Number,File Status,Your Name (Submitters Name),Your Company Name,Company Address,Company State,Company City,Company Zip Code,Fax Number,Company Phone Number,Company Fax Number,Email Address (Submitters Email),Date,Property Address,City,State,Zip Code,County,TaxID #,” filter=”submit_time=$_GET(submit_time)”]
It is working fine. Thanks for your help.
There is one thing that I am noticing however.
When I view the page on my windows computer (internet explorer), the link called “Details” show fine. This is the same for safari (apple computer). It looks ok when I look at it on my Mac ComputerThe issue I am seeing is that when I look at the page on my ipad. The link does not show right and the link does not work. I have cleared the history and cookies. I am not sure why it is doing this. It is only on my ipad.
Any suggestions.Forum: Plugins
In reply to: [Contact Form DB] Link to detailpageFirst Let me say thanks for looking at my issue. This is the code and it is not working. I am stumped. Please can you tell me what I am going wrong
<script type=”text/javascript”>// <![CDATA[
(function ($) {
$(‘td[title=”submit_time”] div’).each(
function () {
$(this).html(‘< a href=”http://www.ptia.net/?p=1308&s=’ + $(this).html() + ‘” >Details’);
})
})(jQuery);
// ]]></script>Forum: Plugins
In reply to: [Contact Form DB] Link to detailpageSorry This is the details
< a href=”http://www.ptia.net/?p=1308s=’ + $(this).html() + ‘” rel=”nofollow”>DetailsForum: Plugins
In reply to: [Contact Form DB] Link to detailpageI am sorry to have to ask this again. The following is what I have done but it is not working. Please help
First Page has this
[cfdb-datatable form=”PLACE AN ORDER: Title Order Request” show=”File Number,submit_time,Borrower/Buyer,Property Address,City,State,Transaction Type,File Status,Submitted”]
{{AFTER}}
<script type=”text/javascript”>// <![CDATA[
(function ($) {
$(‘td[title=”submit_time”] div’).each(
function () {
$(this).html(‘Details‘);
})
})(jQuery);
// ]]></script>
{{/AFTER}}
[/cfdb-datatable]Second Page Has this
[cfdb-html form=”PLACE AN ORDER: Title Order Request” show=”File Number,File Status,Property Address,City,State,Zip Code,submit_time” filter=”filter=”submit_time=$_POST(s)”]
${submit_time}[/cfdb-html]
Please help. I have worked all day and can not get this to work
Forum: Plugins
In reply to: [Contact Form DB] Link to detailpageThanks for your answer but I am still doing something wrong.
Here is a link to the first page
Here is the code on that page:
<h6>Open Files</h6>
[cfdb-table form=”PLACE AN ORDER: Title Order Request” show=”submit_time,File Number,Submitted,Borrower/Buyer,Property Address,City,State,Transaction Type,File Status,File Details” filter=”Customer ID=PT0001&&File Status=Open”]
[/cfdb-table]
[line]
<h6>Closed Files</h6>
[cfdb-table form=”PLACE AN ORDER: Title Order Request” show=”submit_time,File Number,Submitted,Borrower/Buyer,Property Address,City,State,Transaction Type,File Status,File Details” filter=”Customer ID=PT0001&&File Status=Closed”]
[/cfdb-table]
[line]
<h6>Dead Files</h6>
[cfdb-table form=”PLACE AN ORDER: Title Order Request” show=”submit_time,File Number,Submitted,Borrower/Buyer,Property Address,City,State,Transaction Type,File Status,File Details” filter=”Customer ID=PT0001&&File Status=Dead”]
[/cfdb-table]<script type=”text/javascript”>// <![CDATA[
(function ($) {
$(‘td[title=”File Details”] div’).each(
function () {
$(this).html(‘Full Details‘);
})
})(jQuery);
// ]]></script>You can see the link in the rows next to the order information.
I click the link and I get an error
this is the second page or landing page
http://ptia.net/?p=903This is the short code
[cfdb-html form=”PLACE AN ORDER: Title Order Request” filter=”submit_time=$_POST(s)” limit=”10″ orderby=”File Number”]I cant figure out what I am doing wrong, It does not work. Please explain what I am doing wrong.
Forum: Plugins
In reply to: [Contact Form DB] is there a way to make websites clickable?Nevermind I found it
Forum: Plugins
In reply to: [Contact Form DB] is there a way to make websites clickable?Sorry to bother you, I used the code below and it works. Thanks I have one question. In the table the link appears as “www.//*****” Is there a way so what appears is different letters like the word “site” but have it still link to the page http://www.//***
[cfdb-table form=”myform”]
{{AFTER}}
<script type=”text/javascript”>// <![CDATA[
(function ($) {
$(‘td[title=”Website”] div’).each(
function () {
$(this).html(‘‘ + $(this).html() + ‘‘);
})
})(jQuery);
// ]]></script>
{{/AFTER}}
[/cfdb-table]