Help! Quick View not working!

Here is the link

http://v2.bicomplex.md/index.php/romanian/usi/mdf.html

Can anybody help me please?! thank you

p.s. i did not do anychanges to Js or what so ever

6 answers

Profile photo of Alexandru Gorbenco 240.00 $tone March 19, 2014
Public

I did it!!!

THe problem occured because in the design set while creating the configurable product i choose "1 Column" and that was the problem

Attachment 35009

I replaced it it back to "No Layout Updates" and the quick-view started to work! This is a lil bit of a good new! i knwo in what the problem is. But it still need to be solved! cause it has to work no matter what view i choose.

#4
Profile photo of Sherlock 0.00 $tone March 20, 2014
Public

You could try the following to get this fixed:
1) Open the app\code\local\Wavethemes\Jmquickview\etc\config.x ml file, find this code block:

HTML Code:

  <global>
        <helpers>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Helper</class>
            </jmquickview>
        </helpers>
        <blocks>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Block</class>
            </jmquickview>
        </blocks>
        
    </global>

Change it to:

HTML Code:

  <global>
        <helpers>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Helper</class>
            </jmquickview>
        </helpers>
        <blocks>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Block</class>
            </jmquickview>
        </blocks>
        <events>
            <catalog_controller_product_init_after>
                <observers>
                    <wavethemes_jmquickview>
                        <class>Wavethemes_Jmquickview_Model_Observer</class>
                        <method>productinit</method>
                    </wavethemes_jmquickview>
                </observers>
            </catalog_controller_product_init_after>    
        </events>
    </global>

2) Go to the folder app\code\local\Wavethemes\Jmquickview\Model (create it if it does not exist) and create a file named Observer.php and add this code:

PHP Code:

      <?php
class Wavethemes_Jmquickview_Model_Observer
{
     function 
productinit($observers){
         
$product $observers["product"];
         
$controller $observers["controller_action"];
         if(
$controller->getFullActionName() == "jmquickview_index_index"){
             
$product->setPageLayout("");
         }
     }
}



Then, let me know how this goes.

#5
Profile photo of Alexandru Gorbenco 240.00 $tone March 21, 2014
Public

You could try the following to get this fixed:
1) Open the app\code\local\Wavethemes\Jmquickview\etc\config.x ml file, find this code block:

HTML Code:

  <global>
        <helpers>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Helper</class>
            </jmquickview>
        </helpers>
        <blocks>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Block</class>
            </jmquickview>
        </blocks>
        
    </global>

Change it to:

HTML Code:

  <global>
        <helpers>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Helper</class>
            </jmquickview>
        </helpers>
        <blocks>
            <jmquickview>
                <class>Wavethemes_Jmquickview_Block</class>
            </jmquickview>
        </blocks>
        <events>
            <catalog_controller_product_init_after>
                <observers>
                    <wavethemes_jmquickview>
                        <class>Wavethemes_Jmquickview_Model_Observer</class>
                        <method>productinit</method>
                    </wavethemes_jmquickview>
                </observers>
            </catalog_controller_product_init_after>    
        </events>
    </global>

2) Go to the folder app\code\local\Wavethemes\Jmquickview\Model (create it if it does not exist) and create a file named Observer.php and add this code:

PHP Code:

      <?php
class Wavethemes_Jmquickview_Model_Observer
{
     function 
productinit($observers){
         
$product $observers["product"];
         
$controller $observers["controller_action"];
         if(
$controller->getFullActionName() == "jmquickview_index_index"){
             
$product->setPageLayout("");
         }
     }
}



Then, let me know how this goes.

Thnx! works with any Layout update.. GOood! thank you very much!

#6

Please login or Register to Submit Answer

Written By

Comments