Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
Hello gentlemen , if I could ever tell where the error it would be cool on the Site http://www.zlin-bazar.cz/ when you hover over any product so there you booted Zobrazit , and when you change the image in the window and POP UP appears even if I click on a different product but I figure there Delivers last product
Hi :)

Could you please post here the relevant part of the code where you are creating those popups?

Thanks.
Code: Select all
<cms:pages masterpage='bazar.php'>
      <div class="popup_wrap d_none" id="<cms:show k_page_name />">
         <section class="popup r_corners shadow">
            <button class="bg_tr color_dark tr_all_hover text_cs_hover close f_size_large"><i class="fa fa-times"></i></button>
            <div class="clearfix">
               <div class="custom_scrollbar">
                  <!--left popup column-->
                  <div class="f_left half_column">
                     <div class="relative d_inline_b m_bottom_10 qv_preview">
                        <img src="<cms:show pp_product_relativee />" width="360" height="360" class="tr_all_hover" alt="<cms:show k_page_title />">
                     </div>
                     <!--carousel-->
                     <div class="relative qv_carousel_wrap m_bottom_20">
                        <button class="button_type_11 t_align_c f_size_ex_large bg_cs_hover r_corners d_inline_middle bg_tr tr_all_hover qv_btn_prev">
                           <i class="fa fa-angle-left "></i>
                        </button>
                        <ul class="qv_carousel d_inline_middle">
                           <li data-src="<cms:if k_is_page ><cms:show gg_tthumb /></cms:if>"><img src="<cms:if k_is_page ><cms:show gg_thumb /></cms:if>" width="90" height="90" alt="<cms:show k_page_title />"></li>
                           <li data-src="<cms:show gg_tthumbb />"><img src="<cms:show gg_thumbb />" width="90" height="90" alt="<cms:show k_page_title />"></li>
                           <li data-src="<cms:show gg_tthumbbb />"><img src="<cms:show gg_thumbbb />" width="90" height="90" alt="<cms:show k_page_title />"></li>
                           <li data-src="<cms:show gg_tthumbbbb />"><img src="<cms:show gg_thumbbbb />" width="90" height="90" alt="<cms:show k_page_title />"></li>
                           <li data-src="<cms:show gg_tthumbbbbb />"><img src="<cms:show gg_thumbbbbb />" width="90" height="90" alt="<cms:show k_page_title />"></li>
                        </ul>
                        <button class="button_type_11 t_align_c f_size_ex_large bg_cs_hover r_corners d_inline_middle bg_tr tr_all_hover qv_btn_next">
                           <i class="fa fa-angle-right "></i>
                        </button>
                     </div>
                  </div>
                  <!--right popup column-->
                  <div class="f_right half_column">
                     <!--description-->
                     <h3 class="m_bottom_10"><a href="<cms:show k_page_link />" class="color_dark fw_medium"><cms:show k_page_title /></a></h3>
                     <div class="m_bottom_10">
                        <!--rating-->
                        <ul class="horizontal_list d_inline_middle type_2 clearfix rating_list tr_all_hover">
                        </ul>
                        <a href="#" class="d_inline_middle default_t_color f_size_small m_left_5"></a>
                     </div>
                     <hr class="m_bottom_10 divider_type_3">
                     <table class="description_table m_bottom_10">
                        <tr>
                           <td>Zboží:<cms:show k_page_title /></td>
                           <td></td>
                        </tr>
                     </table>
                     <cms:pp_product_form >
                     <p class="fw_medium m_bottom_10">Popis zboží</p>
                     <table class="description_table m_bottom_5">
                        <tr>
                           <cms:show prop_desc />
                        </tr>
                     </table>
                     <hr class="divider_type_3 m_bottom_10">
                     <p class="m_bottom_10"><cms:excerpt count='10'><cms:show product_desc /></cms:excerpt></p>
                     <hr class="divider_type_3 m_bottom_15">
                     <div class="m_bottom_15">
                        <span class="v_align_b f_size_big m_left_5 scheme_color fw_medium"><cms:number_format pp_price decimal_precision='0' decimal_character='.' thousands_separator='.' /> Kč</span>
                     </div>
                     <table class="description_table type_2 m_bottom_15">
                        <tr>
                           <td class="v_align_m"></td>
                           <td class="v_align_m">
                              <div class="custom_select f_size_medium relative d_inline_middle">
                                 <ul class="select_list d_none">
                                 <cms:pp_option_values>
                                    <option value="<cms:show k_count />">
                                       <cms:show option_val />
                                       <cms:if option_price >
                                          [<cms:show option_price_sign /><cms:pp_config 'currency_symbol' /><cms:show option_price />]
                                       </cms:if>
                                    </option>
                                 </cms:pp_option_values>
                                 </ul>
                              </div>
                           </td>
                        </tr>
                        <tr>
                           <td class="v_align_m">Počet:</td>
                           <td class="v_align_m">
                              <div class="clearfix quantity r_corners d_inline_middle f_size_medium color_dark">
                                 <input type="text" name="" readonly value="1" class="f_left">
                              </div>
                           </td>
                        </tr>
                     </table>
                     <div class="clearfix m_bottom_15">
                        <input class="product-quantity" type="hidden" name="qty" min="1" step="1" value="1" title="Quantity">
                        <button class="button_type_12 r_corners bg_scheme_color color_light tr_delay_hover f_left f_size_large" type="submit" value="Add to Cart">Přidat do košíku</button>
                     </cms:pp_product_form >
                     </div>
                  </div>
               </div>
            </div>
         </section>
      </div>
</cms:pages>
3 posts Page 1 of 1