Page 1 of 1

Ask questions for particular product

Posted: Wed Oct 05, 2011 9:53 pm
by dimko
I couldn't find thru the extensions, so that's why I'm writing it here.

Is there any way to add a contact form for every product. When you click on some product, and at the bottom there is Description, Specification, Reviews, so can there be another tab for Ask Questions, so if someone wants to get some info about that particular product, he/she will fill the form, ask the question, and when the admin/owner of the site opens the email, will know for which product the question is asked.

I found this ones:

http://www.opencart.com/index.php?route ... on_id=1328

http://www.opencart.com/index.php?route ... on_id=3096

but it posts the Q&A on the product's page, and what I ment was just to send email, more like a contact form, but with the product's name, link, etc. included in that email.

Thanks in advance.

EDIT: I took a look at the second one, and I think it can do what I asked for. If you have something else, please feel free to share it.

Re: Ask questions for particular product

Posted: Thu Oct 06, 2011 11:15 pm
by affect
If you need something more simple than Product Questions you can take a look at my other module, Price Match Lite: http://www.opencart.com/index.php?route ... on_id=3134

Basically it's meant for price match requests, but you can call it "Ask a question" or something like that. It doesn't store or display anything anywhere, just forwards the form data submitted to your email.

Re: Ask questions for particular product

Posted: Sun Dec 25, 2011 7:06 pm
by GoGo OpenCart

TOtal Quantity problem in product info page

Posted: Mon Jun 04, 2012 7:15 pm
by urace
I hv two option for quantity and now i want these both quntity add after filling this than disply in QTY.
see this link for more info
http://lensbazaar.ws/index.php?route=pr ... duct_id=46
Somebody plz help me.

Re: Ask questions for particular product

Posted: Mon Jun 04, 2012 11:08 pm
by labeshops
I just added an email link to my description tab that includes the product info like this:

in my template product.tpl

after

Code: Select all

  <?php echo $description; ?>
I added:

Code: Select all

  <br><br>
          <a href="mailto: youremail@domain.com?subject=question about <?php echo $model; ?>"><b>Ask a Queston About This Item</a></b> <br />
  </div

Re: Ask questions for particular product

Posted: Fri Oct 12, 2012 6:41 pm
by giacomoprimo
@ labeshops hello, I entered the code that you write here, I'm using OC 1.5.1.1, It insert the link on all pages produced, but loses all alignments and puts me in the reviews page immediately after the description of the product.
Can you help me?
thank you very much

Re: Ask questions for particular product

Posted: Fri Oct 12, 2012 7:26 pm
by labeshops
Sounds like you put it in the wrong place. Just move the code wherever you want it to appear.

Re: Ask questions for particular product

Posted: Tue Oct 23, 2012 2:49 am
by giacomoprimo
Thanks, now works perfectly!
In the object can I have the name of the product and not the model?
thanks

Re: Ask questions for particular product

Posted: Tue Oct 23, 2012 4:02 am
by labeshops
Sure. just change the <?php echo $model; ?> to <?php echo $heading_title; ?>

Re: Ask questions for particular product

Posted: Sat Oct 27, 2012 4:13 am
by abhishek0990
affect wrote:If you need something more simple than Product Questions you can take a look at my other module, Price Match Lite: http://www.opencart.com/index.php?route ... on_id=3134

Basically it's meant for price match requests, but you can call it "Ask a question" or something like that. It doesn't store or display anything anywhere, just forwards the form data submitted to your email.
nice one.

Re: Ask questions for particular product

Posted: Thu Nov 29, 2012 12:04 am
by giacomoprimo
labeshops wrote:Sure. just change the <?php echo $model; ?> to <?php echo $heading_title; ?>
hello,
I would like to insert the URL of the product in the email, you can?
thank you very much again for your help

Re: Ask questions for particular product

Posted: Thu Nov 29, 2012 1:18 am
by labeshops
Yes, though the customer could edit and remove it. You can add anything easily that is already on your product page - just look for the <?php echo x> and copy it to where you want it.

Try this:

Code: Select all

<a href="mailto: email@yourdomain.com?subject=question about <?php echo $model; ?>&body=Link to product - <?php echo $breadcrumb['href']; ?>"><b>Ask a Queston About This Item</a></b>

Re: Ask questions for particular product

Posted: Thu Nov 29, 2012 1:58 am
by giacomoprimo
Thank you very much!!

Order status is getting the missing after checkout

Posted: Mon May 16, 2016 6:29 pm
by rajeev
Hello to all,
We are using the opencart 2.0.2.0 and we use the payumoney gateway .After payment order status is getting the missing status.We set default status is pending but it's getting missing status .can any one provide the answer for me.

Mail is not working

Posted: Sun Oct 08, 2017 3:33 am
by Prakash144
Mail is not working in opencart.
Image

Opencart 2.3 Admin panel menu over entire page

Posted: Wed Mar 07, 2018 2:25 am
by paulbothma
Hi, i installed OC 2.3 and the menu view is totally messed up and over the entire page, cannot access other areas. I cannot find other posts for assistance, closest i came to a similar error solution was to reload the Stylesheet - which i already did, no improvement.
i deleted all files via FTP and i loaded entire OC again, same result.

Any advice?

syntaxerror json.parse unexpected character at line 1 column 1 of the json data undefine property in Opencart 3.0.2.0?

Posted: Fri Dec 07, 2018 2:47 am
by mourin516@gmail.com
using opencart version 3.0.2.0. while confirming order this message pop up. where shows message like below:
SyntaxError: JSON.parse: unexpeded character at line 1 column 1 of the JSON data
OK
<b>Notice4b, Undefined properly: Proxy:SendOrderEmainSeller in <biltorage/modification/systemienginelaction.php413.. on line ..79.11,
order confirm not being done, here is the code where the 79 number showing the error

Code: Select all

if ($reflection->hasMethod($this->method) && $reflection->getMethod($this->method)->getNumberOfRequiredParameters() <= count($args)) { 
    return call_user_func_array(array($controller, $this->method), $args); 
} else { 
    return new \Exception('Error: Could not call ' . $this->route . '/' . $this->method . '!'); 
}
where the 79 number line code is

Code: Select all

return call_user_func_array(array($controller, $this->method), $args);
How to solve this problem?