Jump to content
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • First Name
    Jimmy Ray
  • Last Name
    Warren Jr.

Recent Profile Visitors

162 profile views

[email protected]'s Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Hey Everyone, I found a really cool development platform that I would like to tell you all about and it is totally free or I wouldn't be using it myself Cloud 9. The website is https://c9.io and is a cloud based development platform based on one of your git clones (Github or BitBucket). All you do is sign-up and then clone one of your repositories. The cloud development environment then creates a small vps (virtual private server) for you to use as a development platform. The vps includes a project workspace front-end that includes a pretty cool code editor that supports many different coding languages, terminal access to your vps that you can sudo and control, point and click file access and browser access. You have several options to choose from for vps platform software, I am developing Prestashop so I chose the LAMP(Ubuntu). The vps that is created is a (1CPU, 1G-RAM, 5G-HDD) perfect for module and theme development. This is all offered for free forever and they even state that very same thing (free/forever). There doesn't appear to be any advertising either (at least not at this time). You are limited to one private workspace for free but you you can have unlimited public workspaces. You can upgrade your account and have unlimited private workspaces (vps development machines), I'm sticking with the free forever as I am only working on one project at a time and currently that is Prestashop Add-on development. To get an ideal take a look at the two screen shots that I have provided. Remember if you need access to Prestashop's Class Documentation please see http://api.gmp.business/prestashop/ If interested check out Cloud 9 - development environment in the cloud https://c9.io I think you'll be impressed. Just to let you know I am not affiliated with Cloud 9 in any way. I have been trying for quite some time to put together a development environment that is integrated and addresses all my needs. I think I found what I am looking for with thee Cloud 9 development platform and wanted to share my find with you. Jimmy Warren Jr. GMP Prestashop Division Domain Technician
  2. Hey Everyone, I found a really cool development platform that I would like to tell you all about and it is totally free or I wouldn't be using it myself Cloud 9. The website is https://c9.io and is a cloud based development platform based on one of your git clones (Github or BitBucket). All you do is sign-up and then clone one of your repositories. The cloud development environment then creates a small vps (virtual private server) for you to use as a development platform. The vps includes a project workspace front-end that includes a pretty cool code editor that supports many different coding languages, terminal access to your vps that you can sudo and control, point and click file access and browser access. You have several options to choose from for vps platform software, I am developing Prestashop so I chose the LAMP(Ubuntu). The vps that is created is a (1CPU, 1G-RAM, 5G-HDD) perfect for module and theme development. This is all offered for free forever and they even state that very same thing (free/forever). There doesn't appear to be any advertising either (at least not at this time). You are limited to one private workspace for free but you you can have unlimited public workspaces. You can upgrade your account and have unlimited private workspaces (vps development machines), I'm sticking with the free forever as I am only working on one project at a time and currently that is Prestashop Add-on development. To get an ideal take a look at the two screen shots that I have provided. Remember if you need access to Prestashop's Class Documentation please see http://api.gmp.business/prestashop/ If interested check out Cloud 9 - development environment in the cloud https://c9.io I think you'll be impressed. Just to let you know I am not affiliated with Cloud 9 in any way. I have been trying for quite some time to put together a development environment that is integrated and addresses all my needs. I think I found what I am looking for with thee Cloud 9 development platform and wanted to share my find with you. Jimmy Warren Jr. GMP Prestashop Division Domain Technician
  3. Hi All, I'm a new add-on developer and just getting started. I generated class documentation for the prestashop/classes directory. I would like to share this documentation with the community as I hope to become a valuable member and contributor. You can find Prestashop 1.6.1.4 Class Documentation at http://api.gmp.business/prestashop/ . Anyone that takes a look please feel free to reply with comments and suggestions. Thank you, Jimmy Warren Jr. GMP Domain Technician
  4. Hi All, I'm a new add-on developer and just getting started. I generated class documentation for the prestashop/classes directory. I would like to share this documentation with the community as I hope to become a valuable member and contributor. You can find Prestashop 1.6.1.4 Class Documentation at http://api.gmp.business/prestashop/ . Anyone that takes a look please feel free to reply with comments and suggestions. Thank you, Jimmy Warren Jr. GMP Domain Technician
  5. Hi, just to add I deleted the /cache/class_index.php file and Prestashop regenerated it but still didn't add the displayBanner hook to the available hooks for the Quick search block.
  6. Hi gabdara, Thanks for your help I did as you posted but the the 'displayBanner' hook still isn't available in the 'Transplant to' drop-down. Is there a process that I need to run in order to recompile the module. I tried to reset the module but Prestashop returned an error 'Cannot uninstall this module'. Please advise if you get a chance to.
  7. Move the shopping cart to the right. Open the following file in your text editor: /themes/default-bootstrap/css/modules/blocksearch/blocksearch.css On lines 4 and 60 change the following: #search_block_top { padding-top: 50px; } #search_block_top #searchbox { float: left; width: 100%; } TO #search_block_top { padding-top: 50px; } #search_block_top #searchbox { float: right; width: 100%; } AND form#searchbox input#search_query_block { margin-right: 10px; max-width: 222px; margin-bottom: 10px; display: inline-block; float: left; } form#searchbox input#search_query_block { margin-right: 10px; max-width: 222px; margin-bottom: 10px; display: inline-block; float: right; } See if modifying this will get you were you need to go. Jimmy Warren Jr.
  8. Hi, thanks for your response. I attempted to do that but the hook that I wanted to transplant to was not available in the drop-down, that hook was 'displayBanner'. Do you know how to make the 'displayBanner' hook available in the drop-down to facilitate the transplant?
  9. Header Hook This hook adds additional elements in the head section of your pages (head section of html). I have 49 modules loaded in this hook and one of them is the 'Quick search block'. How do I code the call to the 'Quick search block' and which .tpl file and/or other files do I call it from? I am looking specifically for correct file(s) for the call and proper code and syntax syntax. Note: I'm trying to call the module from the header.tpl and place the 'Quick search block' to the right side of my Banner block. Any help would greatly be appreciated! Jimmy Warren Jr. Domain Technician GMP Fashion Division
  10. This is for the Prestashop 1.6.1.3 basic install using the default theme (default-bootstrap). All these paths are from the web root of your store. Move the phone number to the right. Open the following file in text editor. /themes/default-bootstrap/css/modules/blockcontact/blockcontact.css On line 2 you will find the following: Change the second line as follows: .shop-phone { float: left; TO .shop-phone { float: right; Save the file to your web server. Move the shopping cart to the right. Open the following file in your text editor: /themes/default-bootstrap/css/modules/blockcart/blockcart.css On line 28 change the following: @media (max-width: 1200px) { .shopping_cart { margin: 0 auto; float: none; width: 100%; } } TO @media (max-width: 1200px) { .shopping_cart { margin: 0 auto; float: right; width: 100%; } } Do not change any of the other @media tags so your responsive design will still work properly. Move the Search Block to the right. Open the following file in text editor. /themes/default-bootstrap/css/global.css On line 638 change the following: .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 { float: left; } TO .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 { float: right; } Save the file to your web server. Go to your back-office menu -> Advanced Parameters -> Performance. At the top click on the radio button -> Force compilation, move the Cache toggle to -> No and click save. Time to test. This change may effect your responsive design so you'll need to test the resposiveness of your theme and a good place to do that is at the following website. https://www.responsinator.com - enter the URL of your store and check the different devices for functionality and cosmetics. To answer the other question: I added the Cart module to the displayNav block but positioning is all out of wack. You can add a module to a hook at the back-office menu -> Modules and Services -> Positions and then in the upper right click on 'Transplant a Module'. On the page that comes up choose the module you want to attach to a different hook-check it out and you'll see what I mean. Choose the hook you need if it is available and click save. Check your front-office for changes. I extracted this information without any testing from my local files as my theme has changed dramatically since the beginning so if you have problems reply back. Jimmy Warren Jr. Domain Technician GMP Fashion Division
  11. Hi AquaHuang, Thank you for the work you put into your response but you slightly mis-understood what I was requesting. I am desiring to put the "shopping_cart" element and the "search_block" element directly over the right side my header banner. I have attached two images in a zip file to show you exactly what I am talking about. Thank you for help what you replied with so far is a learning opportunity for me and even if this doesn't get resolved I appreciate gleaning some of your knowledge. Also I attached an image of the result of your header.tpl modification so you can see what that looks like as well, file name is HeaderTPL_Mod_ScreenShot.png. Thank you AquaHuang, Jimmy Warren Jr. Domain Technician GMP Fashion Division lingerie_gmp_fashion_cart_search_positioning.zip
  12. Hi, I'm a new Prestashop user and really love the software so far. I have purchased some really great modules as well. I would like to move the Cart and Search to my header over the right side of my banner image and was hoping for a little guidance. If too much maybe a developer would like to make a quick buck. Please let me know. My Front-Office is located at https://lingerie.gmp.fashion/index.php if you would like to take a look. I have also attached a screen shot of my landing page. Jimmy Warren Jr. Domain Technician GMP Fashion Division
×
×
  • Create New...