Show Posts


Messages - Deal-or-die

Pages: [1]
1
Extensions and Add-Ons / Drag & Drop sorting order?
« on: February 17, 2016, 06:26:06 PM »
G'day,

Just curious if it's possible for a drag and drop function to be made for the 'products' page to save the time and hassle of individually opening up and editing each product 1 by 1...

Cheers,
Josh.

P.s If this is already available please hit me up with a link!

2
General Support / Are cookies used?
« on: December 05, 2015, 03:47:17 AM »
G'day

Putting together a privacy policy.... Just wondering if cookies are used by Abantecart?


Cheers

3
General Support / Re: "Best Sellers" and "Sale Items" Remove until exist?
« on: November 28, 2015, 06:18:33 AM »
Hey mate.

Yeah might have to do that as a temporary measure but I have a very basic understanding of scripting and I'm sure it isn't that hard to make this into a automated setup.

if(bestseller => 0)
{
      ShowThisBlock;
}
else
{
    Don'tshowthisblock;
}

KPro Skrptr now. Be making next best app soon :P
Haha sorry, just thought I'd give it a go :P

4
General Support / "Best Sellers" and "Sale Items" Remove until exist?
« on: November 28, 2015, 05:39:30 AM »
G'day,
I apologise for the horrible wording of the subject haha, just wondering if there is any way to automatically hide the "Best seller" and the "sale items" on the home page when no sale or 'best selling' items available and then for them to re-appear when such sale or best selling item becomes available?

Cheers,
Josh

5
General Support / Permissions of index.php and config.php
« on: November 09, 2015, 06:37:22 AM »
G'day,
Just having a little trouble with the following warnings.

/public_html/index.php file is writable. It is recommended to set read and execute modes (644 or 755) for this file to keep it secured and running properly!

/public_html/system/config.php file needs to be set to read and execute modes (644 or 755) to keep it secured from editing!

I did search forums for an answer and did find someone else with the same problem but no prevail so trying again.

/index.php


/system/config.php


I do not want to render the security of my store by a quickfix of bypassing/ignoring warnings so a proper fix here would be good please.

Current version of AbanteCart and installed via Softaculous.

Cheers!

6
Shipping Modules / Re: AusPost Extension?
« on: October 18, 2015, 04:38:36 AM »
Link to Australia Post Dev Page:
developers.auspost.com.au/

Link to Australia Post tutorial page:
developers.auspost.com.au/apis/pac/tutorial/domestic-parcel

7
Shipping Modules / AusPost Extension?
« on: October 17, 2015, 09:20:34 PM »
G'day,

Recently considered opening a eCommerce store of my own in Australia and come across a dilemma many others have also been facing...

No AusPost Extension?! Or infact no extension supporting any of our couriers here in Australia at all? I am quite fond of AbanteCart and it's features but without a postage calculator and considering my scripting abilities to create one of my own it renders it completely useless to myself and many others 'down under'.

Any chances anyone with a bit of knowledge behind yas would kindly create something to help us Aussies out?

Cheers,
Josh

8
Support / Is there supposed to be a Source code box thing?
« on: March 30, 2014, 09:11:44 AM »
As the title states... Am I missing something? How do I add images? :P :P


9
Support / Re: How to add SKU to Product Description [Resolved]
« on: March 30, 2014, 08:32:27 AM »
Cheeers mate!

EDIT: Okay, just before you go ahead and read all this, I resolved this issue. I'll explain below how I did so.

I have added the following

                  <?php if ($model) { ?>
                     <li><span class="productinfoleft"><?php echo $text_sku; ?></span> <?php echo $product_info['sku']; ?>
                     </li>
                  <?php } ?>

Which is a bit naughty using 'if ($model)' for my SKU buuuuuuuuut if I use 'if ($sku)' nothing appears in the product description.

Now that I've got the SKU showing in the product description... Anyway to change "sku" too display as "Part number"?
I did try changing
                  <?php if ($model) { ?>
                     <li><span class="productinfoleft"><?php echo $text_sku; ?></span> <?php echo $product_info['sku']; ?>
                     </li>
                  <?php } ?>
to
                  <?php if ($model) { ?>
                     <li><span class="productinfoleft"><?php echo $text_partnumber; ?></span> <?php echo $product_info['sku']; ?>
                     </li>
                  <?php } ?>
and then defining '$text_partnumber' in the \storefront\language\english\product\product.xml as follows.

   <definition>
      <key>text_partnumber</key>
      <value><![CDATA[Part Number:]]></value>
   </definition>
However this only achieved the whole 'sku' line disappearing from product description again. Which lead me to using the default '<?php echo $text_sku; ?>' and just change the 'text_sku' definition to 'Part number'. This brought back the 'sku' line however the line still stated 'sku' instead of 'Part number'.

From here... I'm lost. Not sure where else I can go from here. :/ :P

(I apologise for the ill or non existent use of the 'code' tags, however when ever I used them I received an error stating "Sorry, you are not allowed to post external links.")

Another thank you in advance and hope you were able to follow ^ :P!
Cheers!

EDIT: Okay, for some reason the 'text_sku' isn't defined in the language folder and must be defined elsewhere.
After playing around with things like clearing Caches Ect. ect. I stumbled upon the 'Language Definitions' in the admin control panel located in 'System > Localisation > Language Definitions' simply changed 'sku' to 'Part Number' and I was all good to go which worked out great. Just to be sure I hadn't screwed up somewhere in the Language folder trying to manually modify it, I double checked the 'text_sku' posted previously in my reply under '\storefront\language\english\product\product.xml' but found the 'text_sku' to be unmodified and still displaying.

   <definition>
      <key>text_sku</key>
      <value><![CDATA[sku:]]></value>
   </definition>


10
Support / How to add SKU to Product Description [Resolved]
« on: March 29, 2014, 05:24:28 AM »
G'day,
I've recently been setting up an AbanteCart to sell machine parts.
As machine parts are basically all referred to by part number, I'm interested if anyone was able to give me a hand to display the SKU(Already included in the 'insert product' feild) in the product description. Or even better, add another field in the product creation which allows me to set a part number to a product. The part number has to be searchable. If ANYONE is able to help me out here, it would be hugely appreciated.

Example(This is a photoshoped image of what I want.)


Cheeers!
John

Pages: [1]

Powered by SMFPacks Social Login Mod