Jump to content

qroft

Members
  • Posts

    9
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Las Palmas
  • First Name
    carlos
  • Last Name
    pinto

Recent Profile Visitors

609 profile views

qroft's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Hi everyone, i made my firt p´Prestashop but don't think that i will keep on using it. The only reason i put it in here is to show others that based on the "Starter Theme" it is possible to mix Prestashop with any type of framework. Thanks Prestashop for this. PLEASE KEEP IN MIND: My shops is very very VERY seo and user-unfriendly (missing search, breadcrumbs etc.) My shop is "mobile only" - my aim was not to offer it via desktop, that's why it looks weird on PC. MY MAIN GOALS WHERE How good does Semantic UI work with Prestashop? How can a WhatsApp button increase customer service? How easy is it to adapt the Starter Theme to something different? Here is the link: http://shop.qroft.com Hope i can inspire some of you. Greetings, Carlos
  2. Thanks Daresh, but i had problems in getting the $p to be recognized (in 1.7) Greetings from this corner of the planet.
  3. I am new to Prestashop and theme development, so please bare if this workaround is more than dirty! My Wish I want to show the category description only on the first page of the category listing (Prestashop 1.7.x). My Solution In short: Check the current page of the pagination and if it is "1", then simply make jQuery hide the description. What i did is opening the pagination.tpl found under templates -> partials -> pagination.tpl There i added this code on top of everything: {if $pagination.pages[1].current != true} <script> $(document).ready(function() { $('#category-description').css('display','none'); }); </script> {/if} What this code does is this: Line 1: check the pagination page and if it is not the first page, then start the jQuery script once that the document is ready Line 4: hide the element with the ID #category-description As i said, i am new to the whole Prestashop stuff, so please bare if this is totally wrong, but it works for me.
  4. Hi, i am new to Prestashop and startet a total new theme based on the Starter Theme. I do understand and like the {block} and {hook} workflow that comes with Prestashop, but sometimes i ask myself if i simply can remove a block information or not. An example about what i mean, i have this inside the product.tpl file: {block name='product_thumbnail'} <a href="{$product.url}"><img src="{$product.cover.medium.url}" data-full-size-image-url="{$product.cover.large.url}"></a> {/block} Would it be a total mistake to remove the first and the third line and simply make it look like the following? <a href="{$product.url}"><img src="{$product.cover.medium.url}" data-full-size-image-url="{$product.cover.large.url}" class="ui fluid image"></a> Thanks in advance and have a nice weekend!
  5. While searching via Google i found several pages offering an overview of "standard" and template specific templates. I searched for "prestashop hook variables". I published some i found on my blog at http://www.cyberholic.es/index.php/item/4239-prestashop-1-7-variablen-fuer-templates @Andrej, is there something i might be able to help about with the overview-image i mentioned before? Greetings and thanks to all of you for your support.
  6. Coming from Joomla and Virtuemart, what i liked about most template sellers, is a preview of each module position within their template. Something like this: https://demo.gavick.com/joomla3/box/images/demo/module_positions.png Modules in Joomla are what a hook is for Prestashop. Does anyone know if this exists for the starter-theme? I am absolutely new to Prestashop so please bare with me if what i am saying sounds weird to you. But i think that such an overview would be helpfuel to understand where what hook is set, thoug in the backend those hooks are described like "Area above header". The point is, that i am creating my own template i have read in the documentation that i can create my own hooks, but i could not find out how to start this from within a blank page. As i said, i am new to PrestaShop Hugs and greetings and thanks for your help in advance.
  7. No, sorry for the misunderstanding. I mean here inside www.prestashop.com/forums have a new Topic just for the Starter Theme subject. So if people have special questions about the Starter Theme.
  8. Have you checked with the minium system recomendations? I had several problems for the last weeks to make a shop system work out of the box with my host. For a long time it looked like Arastta was going to be the one, but i had problems at the refreshing of the product quantity caused by my host. Now i am with Prestashop and so far it looks good. So: Do you have a link where we might be able to check it? Have you checked the developer console to see that everything is loaded correctly?
  9. Hi, for me the whole process works fine. Can you ask your friend what exactly he did / changed to make your problem work? I am asking as this coule relate to the theme, host, browser settings or something else. It even might be the payment module that contains the error. What did your friend change to make it work? Thanks in advance!
  10. I would like to know if the classes defined in the starter theme (like "module-title" for example) have any dependencies on the javascript / symfony system structure ? For example there is a class in notification.tpl called class="notification notification-success" If i remove that class, apart of the look / design, does any javascript depend on such a class? And though i like the fact that Prestashop follows the html5 HTML schema with header, section,articles, footer etc.... does any script depend on any one of these definitions? In other words: wouldn't it be "cleaner" for the starter theme, to have absolutely no classes and just a very minimum schema of DIVs ? Hugs and greetings from Canary Island, Carlos
  11. Good evening everyone. Based on the fact that i like the idea that Prestashop offers a "skeleton-like" theme (starter-theme) I just came up with an idea and would like to know what you think about it: Is it possible to have a forum just for the starter theme? Greetings, Carlos
  12. Maybe it should also be mentioned as "bug" as the content is shown as TEXT and not HTML (that's why we see the html tags in there)
  13. mmmh.... Gabdara, do you realy think that this is a bug? I am just asking because i am not sure. I am totally new to Prestashop and thought that this might be necessary, though i could not see why.
  14. I am developing a total new template based on the Semantic UI. Now i implemented a Semantic UI accordion and the result is that there are some design conflicts. I checked my source code and saw that jQuery-UI is loaded in the frontend with its CSS and JS files. How can i remove them? I now that i can use a jQuery unload code, but i would prefer the "clean way" if possible. Greetings and thanks, Carlos
  15. Have you solved this? At the moment i am only thinking about solving it via a javascript onclick function, but i think this is the wrong way.
×
×
  • Create New...