Show Posts


Messages - Sam_78

Pages: 1 ... 12 13 [14] 15 16 ... 18
196
General Support / Cant find Form Manager
« on: October 19, 2017, 04:58:24 PM »
I have upgraded from 1.2.10 to 1.2.11 before few weeks and it is working fine. All of a sudden I noticed that I don't have form manager inside my design tab. Have you guys moved it? If yes then where to
I need to edit few fields

197
General Support / Re: getting product images
« on: October 19, 2017, 09:17:08 AM »
I did it manually as my upgrade was from really old version. I did clear cache. Actually I was working with dummy products but now I am ready to pull all the products and while copying DB I think that mapping went wrong or something because I see images but some are distorted for example product 1 has image of product 2. And main issue is when I was working on dummy products I did had all these products in my product table and product_description table I have not merged the all the resources table initially, but now that I have merged all the resources all the product image should be updated but it is not I see that products are still using default AbanteCart image which it was using earlier.
I am starting with comparing DB lets see if I get lucky!!

198
General Support / getting product images
« on: October 18, 2017, 04:20:38 PM »
Hello everyone,
I am upgrading my DB from older version to newer version I have successfully moved all the tables including:
resource_descriptions
resource_library
resource_map
But I still don't see images.. I see the default AbanteCart images instead of product images. Is there any other table that I am missing?
or maybe when I loaded those product I have not merged these table I merged it later so maybe this would be an issue?? if yes what is the solution.

199
General Support / Re: Critical app error - resize image error
« on: October 18, 2017, 02:44:32 PM »
I also sometimes get issue with cache. Is there way where you can set up clear AbanteCart cache everyday or twice a day without going to backend..

200
How-to questions / Re: all products on
« on: October 09, 2017, 04:11:29 PM »
You can do this through Query.
UPDATE `products` SET status = 1;
but this will turn on all your product and there wont be any way to go back
Example:
('product1', 1),
('product2', 1),
('product3', 1),
('product4', 0),
('product5', 0),
('product6', 0);

after running this query all of the products would turn on:
('product1', 1),
('product2', 1),
('product3', 1),
('product4', 1),
('product5', 1),
('product6', 1);


So if you want to go back to normal after you made your CSV you cant go back to original as all the products are turned ON then you manually have to turn them off.

The other solution is edit your CSV file.  you can do it using excel update `status` column values to '1' .

201
General Support / Re: An easy way to keep all the articles
« on: October 06, 2017, 10:01:15 AM »
Thanks llegrand, I guess I overlooked the extension. I will contact the developer and ask about v1.2.11 . And yes as of now I was using the method you suggested but after some point I don't want to do it manually because I have to create a content page then add it on top of category. And this would also be pain for client to write a article.

Have a nice weekend!!

202
General Support / An easy way to keep all the articles
« on: October 05, 2017, 02:33:17 PM »
Hello everyone,
I am looking for an easy way of keeping track of all the articles
For example this month I have posted an article so what I do is I have article category and and I post it there. But I want something where they can read articles from every month like a list of articles and when they click(select) on any one then they can read it.. Is there any extension available? I might have overlooked at them. I am need of quick solution.
Basically what I am looking for is a method to achieve something like WordPress blog. But if I can do it with AbanteCart that would be great

203
Support / Re: Hide the model details from product page
« on: September 27, 2017, 12:38:34 PM »
Go to line public_html/storefront/view/default/template/pages/product/product.tpl  line #L301
remove this code:
<?php if ($model){ ?>
                     <li><span class="productinfoleft"><?php echo $text_model; ?></span> <?php echo $model; ?>
                     </li>
                  <?php } ?>

204
I think the problem is with SEO url
as you can see url: http://www.classicinnovations.co.za/index.php?rt=product/category&path=43 works but as you said test is not working because url is http://www.classicinnovations.co.za/test

look for SEO url tutorial here and see if that helps

205
You are welcome!

"Example: instead of domain/product-seo-key, the seo url for each product page would be domain/category-seo-key/product-seo-key. "

As you said this is core edit.
Maybe you can talk to AbanteCart developer and if I get time to play with this then I will post my solution here

206
try replacing the file
\storefront\view\default\template\blocks\breadcrumbs.tpl 
Note: do take backup


<?php
if ($breadcrumbs && count($breadcrumbs) > 1) {
$total = count($breadcrumbs);
$count = 1;
?>
<section class="breadcrumbs">
<h4 class="hidden">&nbsp;</h4>
   <ul class="breadcrumb">
       <?php foreach ($breadcrumbs as $breadcrumb) {
         $count = $count + 1;
      ?>
       <li>
      <?php if($count <= $total){ ?>
       <a href="<?php echo $breadcrumb['href']; ?>">
          <?php echo ($breadcrumb['text'] == $text_home ? '<i class="fa fa-home" title="' . $text_home . '"></i> ' : '').$breadcrumb['text']; ?>
       </a>
      <?php } else { ?>
      <?php echo ($breadcrumb['text'] == $text_home ? '<i class="fa fa-home" title="' . $text_home . '"></i> ' : '').$breadcrumb['text']; ?>
      <?php } ?>
       </li>
       <?php } ?>
   </ul>
</section>
<?php } ?>

207
try this in your style.css file
.breadcrumb li:last-child{
   color:red;
}

208
New Features Discussion / Re: Give options on left side as amazon
« on: August 25, 2017, 05:14:22 PM »
Yes this could work.. Let me give it a try

209
New Features Discussion / Re: Give options on left side as amazon
« on: August 21, 2017, 03:23:46 PM »
Any thoughts?

210
General Support / Re: product page not displaying after clicked saved
« on: August 16, 2017, 01:25:30 PM »
Found the solution here  http://forum.abantecart.com/index.php/topic,1430.msg5588.html#msg5588

I removed some of the file and re uploaded it and it worked..
Have a nice day!

Pages: 1 ... 12 13 [14] 15 16 ... 18

Database Error

Please try again. If you come back to this error screen, report the error to an administrator.