Show Posts


Messages - morrisr

Pages: [1]
1
Customization help / Re: Colour Theme for "ADD TO CART"
« on: January 29, 2017, 05:09:09 PM »
You need to download the file style.css from this folder
/storefront/view/default/stylesheet

change the background color in 2 lines where I noted the comment /* background color */ (2 more lines if you want to change the color of the hover)
  background: #000;   /* background color */

I picked #000 the color black, choose the hexa color code for the color you want

Then upload the file style.css back to the website.

Here is the result

2
Customization help / Re: Colour Theme for "ADD TO CART"
« on: January 29, 2017, 02:53:04 PM »
This is how I changed the background of the ADD TO CART button
a.   You want to make changes in the style.css file by default located here
Storefront\view\default\stylesheet\style.css
b.   For both views product list and product page, change the value of the property background in css classes productcart and productpagecart.
b.1. Product list view (style shown in category view, featured, latest products, specials & search results)
style.css around line 1015
.thumbnail a.productcart {
   background: #000;   /* background color */
   color: #fff;    /*Font color */
   float: right;
   padding: 8px 27px 8px 8px;
   font-size: 13px;
   text-transform: uppercase;
    position:relative;
}
The hover is a little after in line 1042:
.thumbnail a.productcart:hover {
   background: #0e5f86;   /* background color */
}
b.2. Product page view, in style.css line 1576
.productpagecart a {
    background: #000;          /* background color */
   color: #fff;                       /* Font color */
    border-radius: 5px;
    border-width: 1px 0 0;
    padding: 15px 15px 15px 60px;
   font-size: 18px;
    position:relative;
}
And the hover located in style.css line 1606
.productpagecart li a:hover {
   background-color: #0e5f86;     /* background color */
}


3
Templates / How to restore the template from the backup files
« on: January 06, 2017, 10:06:23 PM »
- I installed a fresh a copy of 1.2.9
- I restored the database & system\config.php to access it
- I restored the folders (extensions,image & resources)
- I wonder which files I should restore from the 1.2.8 to claim the look and functionality of the old template without missing with the new 1.2.9 setup
- I do not see the menu and Paypal is not registered

Trials:
- I tried the the extension developer tool before and did not find answers to the options needed
- I did not find no guide for the extensions developer tool


I am okay with creating a template as extension, but how?

Thanks

4
I did follow the steps and still only see 1 template in the template manager.
And the developer_tools_extension asks too many questions.
Is this a guide for the template extension tool?
Thanks

5
Support / Re: Unable to upgrade to 1.2.9
« on: January 04, 2017, 06:01:02 PM »
Same problem
upgrading from 1.2.8 to 1.2.9 keeps spinning.
Using ssl, disabled cloudflare caching. cleared all cache. tried few times.
Store side - works fine.
Admin side - does not run most 9 out 10
error Log attached

6
Tips and Tricks / Re: Sale price for certain categories and more.
« on: April 28, 2016, 10:00:47 PM »
looking for the same feature

7
General Support / Re: What is the PHP for the product images?
« on: April 17, 2016, 11:46:04 PM »
Similar to links, I created an array metalinks and functions getmetalinks(), resetmetalinks() & addmetalink()
made the changes into:
document.php, head.php, head.tpl
I used  $this->document->addMetaLink(array('property' => 'og:type',  'content'  => 'product' )); in product.tpl and metalinks() values do not show on head.tpl ?

8
SEO / Re: Meta Tag SEO Tips and Tricks
« on: January 19, 2016, 01:53:38 AM »
We need some sort of test to see if the page is product then, insert FB opengraph product meta in the header;
The product meta og tags typically are:

<meta property="og:type" content="product" />
<meta property="og:url" content="url to product page" />
<meta property="og:site_name" content="My web site name" />
<meta property="og:title" content="My product name" />
<meta property="og:image" content="image url" />
<meta property="og:image" content="image 2 url" />
<meta property="og:image" content="image 3 url" />
<meta property="og:price:amount" content="9,999.00" />
<meta property="og:price:currency" content="USD" />
<meta property="og:description" content="This is a great product" />

Can anybody help with inserting meta data in the header and yet access product info?
Thanks

9
Support / Re: Mail malfunction/ Send mail when new order is created.
« on: January 18, 2016, 11:39:00 AM »
I updated the contact.php, and I still can't send emails from contact form using SMTP & gmail.
I lowered security on the gmail did not help either;
The error is:
2016-01-18 6:21:52 - Error: Password not accepted from server!
2016-01-18 6:21:52 - Error: RCPT TO not accepted from server!
2016-01-18 6:21:52 - Error: DATA not accepted from server!
2016-01-18 6:21:52 - Error: DATA not accepted from server!
2016-01-18 6:21:52 - Error: QUIT not accepted from server!
2016-01-18 6:35:46 - Error: Password not accepted from server!
2016-01-18 6:35:46 - Error: RCPT TO not accepted from server!
2016-01-18 6:35:46 - Error: DATA not accepted from server!
2016-01-18 6:35:46 - Error: DATA not accepted from server!
2016-01-18 6:35:46 - Error: QUIT not accepted from server!

Help!

Pages: [1]

Powered by SMFPacks Social Login Mod