shelkunov Posted March 30, 2012 Share Posted March 30, 2012 Имеется маленький баг на странице "Возврат товара", он виден при нажатии на кнопку "добавить товар! Баг заключается в том, что часть ссылки "Удалить" закрыто почему-то куском тёмного фона, кто знает, из-за чего это? Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Подскажите, как избавиться от этого, кто знает? :( Прямая ссылка для просмотра бага: http://themeglobal.c...t/return/insert Link to comment Share on other sites More sharing options... ravilr Posted April 1, 2012 Share Posted April 1, 2012 Подскажите, как избавиться от этого, кто знает? :( а спросить у разработчика?? Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSS 1 Link to comment Share on other sites More sharing options... Yesvik Posted April 1, 2012 Share Posted April 1, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 а спросить у разработчика??Писал уже, тишина...Тем более шаблон бесплатный, разработчик заморачиваться не стал! Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSSСпрашивается, зачем изменяли стандартный стиль кнопок на убогие, которые нормально так и не отображаются, не пойму!!!Просидел весь день ломая голову, как исправить, так и не получилось, испробовал все на свете Просто так даже менял stylesheet.css на стандартный, копался в return_form.tpl, чего только не делал, тоже самое! Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка..Если бы, было так просто!Даже пробовал удалить папку template, тоже самое, кнопка продолжила отображаться с данным багом. Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Решил выложить сам шаблон. tg_themeglobal_1.5.x_version_1.0.zip Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options... Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Подскажите, как избавиться от этого, кто знает? :( Прямая ссылка для просмотра бага: http://themeglobal.c...t/return/insert Link to comment Share on other sites More sharing options... ravilr Posted April 1, 2012 Share Posted April 1, 2012 Подскажите, как избавиться от этого, кто знает? :( а спросить у разработчика?? Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSS 1 Link to comment Share on other sites More sharing options... Yesvik Posted April 1, 2012 Share Posted April 1, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 а спросить у разработчика??Писал уже, тишина...Тем более шаблон бесплатный, разработчик заморачиваться не стал! Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSSСпрашивается, зачем изменяли стандартный стиль кнопок на убогие, которые нормально так и не отображаются, не пойму!!!Просидел весь день ломая голову, как исправить, так и не получилось, испробовал все на свете Просто так даже менял stylesheet.css на стандартный, копался в return_form.tpl, чего только не делал, тоже самое! Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка..Если бы, было так просто!Даже пробовал удалить папку template, тоже самое, кнопка продолжила отображаться с данным багом. Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Решил выложить сам шаблон. tg_themeglobal_1.5.x_version_1.0.zip Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options... Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
ravilr Posted April 1, 2012 Share Posted April 1, 2012 Подскажите, как избавиться от этого, кто знает? :( а спросить у разработчика?? Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSS 1 Link to comment Share on other sites More sharing options... Yesvik Posted April 1, 2012 Share Posted April 1, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 а спросить у разработчика??Писал уже, тишина...Тем более шаблон бесплатный, разработчик заморачиваться не стал! Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSSСпрашивается, зачем изменяли стандартный стиль кнопок на убогие, которые нормально так и не отображаются, не пойму!!!Просидел весь день ломая голову, как исправить, так и не получилось, испробовал все на свете Просто так даже менял stylesheet.css на стандартный, копался в return_form.tpl, чего только не делал, тоже самое! Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка..Если бы, было так просто!Даже пробовал удалить папку template, тоже самое, кнопка продолжила отображаться с данным багом. Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Решил выложить сам шаблон. tg_themeglobal_1.5.x_version_1.0.zip Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options... Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Yoda Posted April 1, 2012 Share Posted April 1, 2012 Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSS 1 Link to comment Share on other sites More sharing options...
Yesvik Posted April 1, 2012 Share Posted April 1, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 а спросить у разработчика??Писал уже, тишина...Тем более шаблон бесплатный, разработчик заморачиваться не стал! Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSSСпрашивается, зачем изменяли стандартный стиль кнопок на убогие, которые нормально так и не отображаются, не пойму!!!Просидел весь день ломая голову, как исправить, так и не получилось, испробовал все на свете Просто так даже менял stylesheet.css на стандартный, копался в return_form.tpl, чего только не делал, тоже самое! Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка..Если бы, было так просто!Даже пробовал удалить папку template, тоже самое, кнопка продолжила отображаться с данным багом. Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Решил выложить сам шаблон. tg_themeglobal_1.5.x_version_1.0.zip Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options... Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 а спросить у разработчика??Писал уже, тишина...Тем более шаблон бесплатный, разработчик заморачиваться не стал! Вам перепилили шаблон и изменили стандартный стиль кнопок, но криво - все вопросы к тому кто менял. или учите CSSСпрашивается, зачем изменяли стандартный стиль кнопок на убогие, которые нормально так и не отображаются, не пойму!!!Просидел весь день ломая голову, как исправить, так и не получилось, испробовал все на свете Просто так даже менял stylesheet.css на стандартный, копался в return_form.tpl, чего только не делал, тоже самое! Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка..Если бы, было так просто!Даже пробовал удалить папку template, тоже самое, кнопка продолжила отображаться с данным багом. Link to comment Share on other sites More sharing options... shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Решил выложить сам шаблон. tg_themeglobal_1.5.x_version_1.0.zip Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options... Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
shelkunov Posted April 1, 2012 Author Share Posted April 1, 2012 Решил выложить сам шаблон. tg_themeglobal_1.5.x_version_1.0.zip Link to comment Share on other sites More sharing options... Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options... Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Yoda Posted April 1, 2012 Share Posted April 1, 2012 О да, печенька!!!! Link to comment Share on other sites More sharing options...
Yesvik Posted April 2, 2012 Share Posted April 2, 2012 Если бы, было так просто!В файле catalog\view\theme\themeglobal\template\account\return_form.tpl, строка 121, отсутствует <span> <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div> надо добавить <span>... вот так: <div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div> И что тут сложного? 1 Link to comment Share on other sites More sharing options... shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
shelkunov Posted April 2, 2012 Author Share Posted April 2, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Link to comment Share on other sites More sharing options... Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Yesvik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". Не верю! Link to comment Share on other sites More sharing options... snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
snastik Posted April 3, 2012 Share Posted April 3, 2012 Yesvik, к сожалению все также, без изменений! По этому изначально и написал так "Если бы, было так просто!". ну вот даже в фаербаге просто меняю на<span>Remove</span> и кнопка становится нормальной Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 В том то и дело, вписывая <span> через firebug проблема с отображением исчезает, но если прописать в return_form.tpl баг остётся :( Yesvik, snastik, зачем мне врать?! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
fabrikator Posted April 3, 2012 Share Posted April 3, 2012 shelkunov есть мысль что вам стоит свои изменения внести в строчку html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; Link to comment Share on other sites More sharing options...
shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 fabrikator, к сожалению не помогло! Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Думаю изменения какие-то сделать нужно в stylesheet.css Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
fabrikator Posted April 3, 2012 Share Posted April 3, 2012 если честно, у меня была та же проблема и решилась как раз таки изменением в строчке html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><?php echo $button_remove; ?></a></div>'; на html += ' <div class="return-remove"><a onclick="$('#return-product-row' + return_product_row + '').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>'; Link to comment Share on other sites More sharing options...
shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Не помогло! Link to comment Share on other sites More sharing options... fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options... shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар" Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax
fabrikator Posted April 3, 2012 Share Posted April 3, 2012 Магия, что тут скажешь ;) Link to comment Share on other sites More sharing options...
shelkunov Posted April 3, 2012 Author Share Posted April 3, 2012 Эт точно.. :( Link to comment Share on other sites More sharing options... shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Общие вопросы Баг на странице "Возврат товара" при нажатии на "добавить товар"
shelkunov Posted April 4, 2012 Author Share Posted April 4, 2012 Поступил чуть иначе, в stylesheet.css заменил button на другой, немного передел чтобы кнопки не использовали графику. Заменил это: a.button { display: inline-block; padding-left: 6px; padding-right: 16px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; display: inline-block; background: url('../image/button-right.png') top right no-repeat; font-size: 12px; letter-spacing: 1px; line-height: 14px; padding: 7px 12px 8px 9px; text-transform: lowercase; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } /* ThemeGlobal.com - OpenCart Templates Club. Unlimited access to all of our themes for only $49. */ a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } на это: a.button { background: repeat-x scroll 0 0 #4a4f48; border: 1px solid #4a4f48; border-radius: 4px 4px 4px 4px; color: #F8F8F8; display: inline-block; font-size: 11px; font-weight: normal; line-height: 1em; padding: 8px 15px; text-decoration: none !important; } a.button span { } a.button:hover { opacity: 0.8; } a.button:hover span { } .buttons { background: #FFFFFF; overflow: auto; padding: 6px; margin-bottom: 20px; } .buttons .left { float: left; text-align: left; } .buttons .right { float: right; text-align: right; } .buttons .center { text-align: center; margin-left: auto; margin-right: auto; } Всем большое СПАСИБО что помогали! Link to comment Share on other sites More sharing options... 4 weeks later... Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options... Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content На страницу возврат товара добавить возможность описания условий возврата. By Rastafarian, February 21 5 replies 198 views Etegro February 21 Политика возвратов By Support, January 19, 2021 22,312 views Support March 7 SEO URL и возврат товара By filog, December 21, 2019 5 replies 1,558 views chukcha January 9 Не работает возврат товара в ЛК By tart, July 16, 2015 возврат товара покупатель (and 1 more) Tagged with: возврат товара покупатель история заказов 17 replies 2,691 views wink0808 January 9 Почему не работает поиск по нажатию на enter? By lusin, March 21 4 replies 156 views LiLu March 22 Recently Browsing 0 members No registered users viewing this page.
Alina Posted May 3, 2012 Share Posted May 3, 2012 Нарушена вестка... в частности потерян <span> если <a class="button" onclick="$('#return-product-row0').remove();">Remove</a>исправить на <a class="button" onclick="$('#return-product-row0').remove();"><span>Remove</span></a>получится нормальная кнопка.. Скажите а где эта строчка находится по какому пути смотреть? Link to comment Share on other sites More sharing options...
Yesvik Posted May 3, 2012 Share Posted May 3, 2012 Скажите а где эта строчка находится по какому пути смотреть?На 3 сообщения ниже цитируемого - всё подробно написано Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0
Recommended Posts