Jump to content

hxd

Members
  • Posts

    124
  • Joined

  • Last visited

Profile Information

  • Activity
    Agency

hxd's Achievements

Newbie

Newbie (1/14)

53

Reputation

  1. Well, you can always remove the image directly from your hosting account. The path to it would be public_html/modules/editorial/homepage_logo_1.jpg. You can do that from the control panel of your hosting account or with an FTP client.
  2. You should be able to do this by modifying the file blocksearch.css. On your hosting account the path to the file would be public_html/modules/blocksearch/blocksearch.css. In that file find the code: #search_block_top { position:absolute; top:44px; left:0; } Play with the numbers for top and left a bit until you move the search bar to the position you want. Each time you make a change and you save the file, clear the browser cache before refreshing the frontend so that you can see the result. Hope this helps.
  3. Pretty much from the same place you changed the text. And that is from the settings of the Home Text Editor module. When you go to its settings in the admin panel you'll see the picture and a Delete button under it. On the same page you'll also see a Browse button with which you can upload another picture from your local computer. Hope this helps.
  4. In the admin panel go to Preferences>Products and set the option Display available quantities on product page to No.
  5. In the admin panel go to Preferences>Products and set the drop-down menu Default order by to Product price.
  6. Yes, of course. Just the wording is different. The reason for this is that the above answer is for PrestaShop 1.4 and you obviously use PrestaShop 1.5.
  7. You can do that from the settings of the Home text editor module. In your admin panel go to Modules>Modules, click on the Front Office Features button on the left, find the module Home text editor and click on its Configure button. On the page with the settings click on the small flag that's next to the built-in text editor, select the Spanish flag, then type the text you want and click on the Save button.
  8. Which area of the footer do you want to change? The light grey background (the one with the images) or the dark grey area under it (the one with the many links)? Because the files that you need to modify are different. If you want to change the light grey background you need to modify the file style.css of the reinsurance module. The path to the file on your hosting account should be public_html/modules/blockreinsurance/style.css. In that file you need to modify the following file: #reinsurance_block {background:url(../blockreinsurance/img/bg_reinsurance_block.gif) repeat-x 0 0 #c3c7cb} Notice that the grey background is actually an image repeated many times. To change this you can either upload a different image in public_html/modules/blockreinsurance/img and then just put the name of the image instead of the default one in the above code. Or if you want the background to be some color just modify the above code so that it looks like this: #reinsurance_block {background:#c3c7cb} Change #c3c7cb with the code of the particular color that you want. Note, however, that the round images in that area are actually not round; they have grey edges that are not visible with the default background color, but may be visible with other colors. If you want to change the dark grey background color (the area with the links) you need to modify the global.css file of the theme. The path to the file on your hosting account for the default theme would be public_html/themes/default/css/global.css. Find the following code in the file: #footer { color:#fff; background:#333 } and replace #333 with the code of the desired color. Then clear the browser cache and refresh the frontend of your site. As for ways you can edit CSS files, there might be such a functionality in the file manager of your hosting account's control panel. Another way is to download the file with an FTP client, edit it with a text editor (Notepad) and upload it back. Hope this helps.
  9. If you want people to be required to provide a phone number when registering and for the phone number fields to be visible on the registration page, in the admin panel go to Preferences>Customers, set the option Registration process type to Standard and the Phone number option to Yes.
  10. You can do that directly in the database by executing an SQL query using phpMyAdmin. Execute a query like this one: UPDATE `ps_category_product` SET `id_category` = 3 WHERE `id_category` = 7 Replace ps with the actual table prefix of your database and the category IDs with those of the categories for which you want to move products. In the above example all products from the category with ID 7 will be moved to the category with ID 3. You can check what the ID of a category is from the back office; the table that lists the categories also show the ID of each category. Hope this helps.
  11. You can do that by editing the settings of the top navigation module. In the back office go to Modules>Modules, on the page that opens click on the Front Office Features link on the left, find the module Top horizontal menu and click on its Configure button.
  12. As you have probably noticed on the contact form customers have the option to choose whether to send the email to the webmaster or customer service. In the back office from Employees menu>Contacts make sure you have the email address that you want assigned to the webmaster and customer service. Otherwise, does the email function of your store work at all? Have you tested it? You can do that from the back office from Preferences>E-mail.
  13. You can upload the newsletter module from the installation pack on your local computer to the installation on your hosting account. Just look in the modules folder to find the folder for the newsletter and upload it in the modules folder that's in the root PrestaShop directory on your hosting account. If you have deleted the installation pack, you can always download a new one from the download section of this site.
  14. In your admin panel go to Preferences>Store Contacts if you use Prestashop 1.5, or to Preferences>Contact Information if you use PrestaShop 1.4. On the page that opens in the field for Shop email type the email address that you want to appear in the From field of emails sent to customers. Note that's this is not the actual address from which the messages are sent (it's configured from the settings you've described).
×
×
  • Create New...