Search found 10 matches

by clarityproductions
Sat Jul 11, 2009 3:05 pm
Forum: Bug reports
Topic: All articles not showing when browsing by category or tag
Replies: 10
Views: 6858

Re: All articles not showing when browsing by category or tag

Is there a way I can fix it in version 2.0.15?
by clarityproductions
Fri Jul 10, 2009 2:32 pm
Forum: Bug reports
Topic: All articles not showing when browsing by category or tag
Replies: 10
Views: 6858

Re: All articles not showing when browsing by category or tag

I just confirmed when I add a new article the date is set add 00 once it inserts. Does this happen on your end also?

Here is the code in my FAQ.php

function addRecord($data, $new_record = true)
{
if (!is_array($data)) {
return false;
}

if ($new_record) {
$record_id = $this->db->nextID ...
by clarityproductions
Fri Jul 10, 2009 1:54 pm
Forum: Bug reports
Topic: All articles not showing when browsing by category or tag
Replies: 10
Views: 6858

Re: All articles not showing when browsing by category or tag

Thank you that did fix the problem. I did not set the dates on any of those articles though. Is it possible thre is something wrong during the ADD/INSERT of a new article?
by clarityproductions
Fri Jul 10, 2009 5:26 am
Forum: Bug reports
Topic: All articles not showing when browsing by category or tag
Replies: 10
Views: 6858

Re: All articles not showing when browsing by category or tag

sure i just sent you a pm with the username and password. Please let me know what you find out.
Because I am clueless :(
by clarityproductions
Thu Jul 09, 2009 9:20 pm
Forum: Bug reports
Topic: All articles not showing when browsing by category or tag
Replies: 10
Views: 6858

All articles not showing when browsing by category or tag

Click on the second category Naot at Leathersandals.com. Notice there should be over 30
it shows only 4 four articles. I have checked the other articles are active and should
be showing up but they are not. Can you advise what the problem is and how to fix it?

http://www.leatherbelts.com/faq/index ...
by clarityproductions
Thu Jul 09, 2009 1:44 pm
Forum: General discussions
Topic: Add a new field to an article
Replies: 7
Views: 5505

Re: Add a new field to an article

There ar eall the changes so far I have made for adding a new field short_title.

!!!!! OPEN admin/record_edit.php !!!!!!

REPLACE:


$faqData['keywords'] = $_REQUEST["keywords"];


WITH:


$faqData['keywords'] = $_REQUEST["keywords"];
$faqData['short_title'] = $_REQUEST["short_title"];


ADD ...
by clarityproductions
Thu Jul 09, 2009 5:31 am
Forum: General discussions
Topic: Add a new field to an article
Replies: 7
Views: 5505

Re: Add a new field to an article

Ok I have it working as far as the Creation/Insert of a new article. I cant get it to work on the update of an article.
When I edit an article i have it showing up in the form and in preview hidden form variables but when i click save
it does not work. In faq.php in the updateRecord function i added ...
by clarityproductions
Wed Jul 08, 2009 1:50 pm
Forum: General discussions
Topic: Add a new field to an article
Replies: 7
Views: 5505

Re: Add a new field to an article

Thanks. Could you point me to what lines relate to the article add,edit,view,and delete? I do know php and
need to add a new field to all those areas of the script. Is there any documentation that might explain how
to do this or do I just have to dig thru the code?
by clarityproductions
Tue Jul 07, 2009 11:33 pm
Forum: General discussions
Topic: Add a new field to an article
Replies: 7
Views: 5505

Add a new field to an article

Can anyone tell me what needs to be done to add a new field to an article?
I need to add a few new fields to accomodate our requirements but I am not sure
where to start. Is there any documentation or can someone tell me how to do this.