Show Posts


Messages - shawnlg777

Pages: [1] 2
1
Support / Re: hide price tag if product price is zero?
« on: October 30, 2018, 01:36:55 AM »
Glad I could help. Its nice when I can give back a little. Many of you have been great when I needed help!

Shawn Larson

2
Customization help / Re: Image Background On Homepage
« on: October 10, 2018, 06:31:58 PM »
Will I need to make adjustments to the CSS then, for a novice can you give me a few more details.  Thanks!

Shawn

3
Customization help / Re: removing the price 0.00 from product listing
« on: October 10, 2018, 05:42:51 PM »
For the Product page

FIND
<div class="productfilneprice">
<?php echo $price . $tax_message; ?>
</div>
                       
REPLACE WITH

<div class="productfilneprice">
<?php if ($displayprice == 0) {
echo "Call for Price";
} else {
 echo $price . $tax_message;
 } ?>
</div>

4
Support / Re: hide price tag if product price is zero?
« on: October 10, 2018, 05:40:09 PM »
For the Product page in the Default Template for 1.2.13 in the

storefront/view/default/template/pages/product/product.tpl

FIND
<div class="productfilneprice">
<?php echo $price . $tax_message; ?>
</div>
                        
REPLACE WITH

<div class="productfilneprice">
<?php if ($displayprice == 0) {
echo "Call for Price";
} else {
 echo $price . $tax_message;
 } ?>
</div>

AND
For the Product listing page in the Default Template for 1.2.13
product_listing.tpl

FIND

<div class="oneprice"><?php echo $product['price'] . $tax_message; ?></div>

REPLACE WITH

<div class="oneprice">
<?php if ($displayprice == 0) {
echo "Call for Price";
} else {
 echo $price . $tax_message;
 } ?>
</div>

Featured and latest is done essentially the same way just change it from a div class to a span class. For the featured and lates on the home page change the product_list all in the block section

5
Customization help / Re: Image Background On Homepage
« on: August 11, 2018, 11:29:57 PM »
This is a bit over my head.  I will try to get some help to make sense out of what you said. I only know a little PHP.  Any reason why I can't get the css to work when trying to add an image to the background on every page in the main content area.  Do you have any suggestions?

Just a thought I think it would be a great mod to add this option on the next release.  Thanks again for your help!

6
Customization help / Image Background On Homepage
« on: August 10, 2018, 01:06:06 PM »
I was wondering if anyone had any luck putting a background image just on the home page. I would like to place mine just in the main content area. So far I have tried to experiment with placing a class within the "main container" div and the "column_left col-md-3 col-xs-12" on page.tpl. At this point, I can't even get the image to show up using this CSS on the style.css on all all the pages let along exclude it to just the home page.

.backme {
  background: url(images/backme.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

As I have said before my goal is to have the background only to show up on the home page, but at this point, I would like to even get it to show up on every page. I am using the default theme. Thanks in advance for any help!

7
Support / Re: meta description not showing up on the category pages
« on: April 24, 2018, 08:56:30 PM »
Maybe it was a cache issue.  It seems to be working now.

Shawn

8
Support / meta description not showing up on the category pages
« on: April 23, 2018, 07:33:27 PM »
I am not sure why but meta tag descriptions are not showing up on the category pages but work just fine in the product pages.  Any suggestions?

Please PM me for a website to look at if you need to.

9
I went ahead and added the fields meta_keywords, meta_description under content_descriptions table.  I am a newbie to this so please forgive the terminology if it is wrong.  I just thought this may help someone else.

Shawn

10
Support / Error No: 1054 / Unknown column 'meta_keywords' in 'field list'
« on: January 12, 2018, 02:02:24 PM »
After I updated my site to the latest version... AbanteCart V1.2.12 I got a 1054 Database error when I try to add information in the content section or create a new content item. Please let me know how I can fix this.  Thanks!


core/database/amysqli.php on line 109


11
I am using the default template, with version 1.2.10.  I just want to add a line break after each product option.  Each new item with the radio button would have its own line (See Attached)  I tried to make the change in the radio.tpl template and looked for it in the css but didn't see where to make the change.  Any suggestions?

12
Templates / Re: change size on brands scrolling block
« on: December 10, 2016, 11:02:51 PM »
I know that you have probably figured this out but I thought I would pass on what I learned to help the next guy.

This is what I did and it helped me. 

The first thing I did was change this in style.css:

#popularbrands img.internal {
    height: 56px;
}

to this

#popularbrands img.internal {
    height: 156px;
    width: 156px;
}

Then I went into my template through the admin section where you change your logo and change these settings
Brand Icon List Width:
Brand Icon List Height:

Everything looked perfect for me.  This took like two hours to figure out.  I hope it helps someone else!

13
Customization help / Re: Category Listing Block Mod?
« on: October 05, 2016, 06:59:03 PM »
I will give it a try..  Just the regular css file?

Thanks!
Shawn

14
Customization help / Re: Category Listing Block Mod?
« on: October 03, 2016, 05:18:28 PM »
I have tried to touch the blocks/category.tpl and that didn't seem to work.  Thanks again for your help!

15
Customization help / Category Listing Block Mod?
« on: October 03, 2016, 12:08:17 PM »
I am not sure if this is a modification to the script, a css change or a setting I haven't seen but I want the text to go under the picture in the category listing block and then center everything.  Thanks for your help in advance.

You can view my page below to see what I am talking about it.

Pages: [1] 2

Powered by SMFPacks Social Login Mod