Show Posts


Messages - hus2020

Pages: 1 [2]
16
Template Support / ADD LOGOUT BUTTON BESIDE CHECKOUT
« on: February 13, 2017, 09:51:26 PM »
Hi Abantecart Team,

Thank you so much for the wonderful product. I need a small help.  By default the logout button is under Account>Logout. This is confusing users and they often cannot understand where to find the logout. What I want to do instead is, to bring the logout button out from there and place it beside Checkout. The visual representation is as attached.
Please advice how this change can be done. Thank you.

17
General Support / Handling Fee on Order Total not Sub-Total
« on: February 07, 2017, 02:54:16 AM »
Hi Guys,

I need a quick help. I have added a handling fees (5%) if customer chooses to pay online using payment gateway instead of the traditional manual bank transfer procedure.

The problem I face is, whenever I create an order and go to checkout, the handling fees is calculated 5% from the sub-total (value before taxes, coupon discount etc).

What I want is that the handling fees of 5% to be calculated at the final  sum, i.e. (Subtotal + All Taxes - Discount) * 5% handling fees

Attached is the storefront image depicting the problem that I face, and also the backend order total sort list. Pls advice. Thank you.

18
Customization help / Re: Showing Item Manufacturer on Homepage
« on: January 26, 2017, 08:15:44 PM »
Let me go with an example of featured block. Others will be similar.

Controller:
https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/controller/blocks/featured.php
Line: 47

Here you get array of featured items based on limit set in settings.
If you look at the model method getfeaturedProducts() there is no join with manufacture table.
https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/model/catalog/product.php
Line:754

What you need to do is call $this->model_catalog_product->getProduct(...product id...) to get full product details. ['manufacturer'] will be there.
This will need to be inside the foreach loop for the product or outside to get all at once.

To improve performance, you might want to create a better select to get all manufactures for provided products.

Hi,
Can you guide me with the variable name if I want to call and display the store name and store address. I basically want to show store name and store address at the order summary preview. Thanks

19
Customization help / Re: Showing Item Manufacturer on Homepage
« on: January 25, 2017, 04:00:23 AM »
I am having an issue trying to show the Manufacturer of each item on the home page.

In the product_list I added echo $item['manufacturer'] but nothing shows up, following the example of other pages using $manufacturer and $text_manufacturer do not bring the desired effect either.

I have been struggling with this for a few days now

worldbeautyquest.com

Hi looks like you were able to add the manufacturer name on your products. Can you advice what change u did to the file. Thanks


20
Hi Guys,

AbanteCart cart has been great so far in all aspects. I just need one thing done which I cant figure out how. My customers will have account balance (store credit) in each ones account. But, I want to restrict the usage of the balance to be always 50% of the total cart value. Let see few scenarios below:

Scenario 1 :
Customer Account Balance is : 500
Customer buys 3 products where total is 200 (inclusive all taxes and shipping)
In payment when he checkout : He will be able to pay a max of 100 (50%) using account balance and the remaining 100 using credit card only.

Scenario 2 :
Customer Account Balance is : 50
Customer buys 3 products where total is 200 (inclusive all taxes and shipping)
In payment when he checkout : He will be able to pay a max of 50 (since that's the only balance left) using account balance and the remaining 150 using credit card only.

Scenario 3 :
Customer Account Balance is : 0
Customer buys 3 products where total is 200 (inclusive all taxes and shipping)
In payment when he checkout : He wont be able to use account balance as it is zero and pay the full amount 200 using credit card only.

I am willing to pay certain amount if someone can help me in this. Thank you.


21
Customization help / Add Storename+Address to Storefront Invoice Template
« on: January 23, 2017, 05:57:49 AM »
Hi Guys,

I would like to tweak the storefront invoice template and email invoice template that my customers see. Actually the regulation in Malaysia is to have the name of the company and the address for tax filing purposes.

There are 3 changes I would like to do:
1) Add my store name, store address and store contact no in the same invoice template, just above the order id.
2) Change the header text 'Order Details' to 'Tax Invoice'
3) Do the same changes as no (1) inside the order confirmation email which is sent to customer.

The 2 screenshot below depicts what I want to achieve.




22
General Support / Expiry Date to Store Credit
« on: January 23, 2017, 04:19:27 AM »
Hi, I love the store credit option feature built right into AbanteCart Cart. I just want to add a small rule where the credit has an expiry date, lets say after 2 years, un-utilized balance becomes zero. Can this be done with small script change?

23
Support / Create Password Hash + Salt (importing existing customers)
« on: January 23, 2017, 04:11:16 AM »
Hi Guys,

First of all AbanteCart Cart is just awesome. I'm working on my store now and am stuck at one junction. Basically my store is for existing pre-created customer and there is no new registration allowed.

Now I have the full excel csv of my customer list ready, but I cant figure out how to pre create the password hash + salt and import them together with other customer info.

Basically what I want to do is create a random first time password for each customer, hash it and import it into the system.

I have around 500 customers so creating each and everyone manually is not feasible and practical.

Can anyone quide a smarter way for this. Thank you.

24
Template Support / Re: Center Align Customer Login DIV
« on: January 22, 2017, 11:57:10 PM »
style.css:1975

margin-right: 50%;
width: 50%;
margin-left: 25%;
Can you indicate where the css file is located. Sorry I'm not sure about the location

Sorry didnt realize you showed me the exact line number in the stylesheet.

The change I did was just one line. The float was to right, I changed it to left as it looks tidier in that spot. Thank you for the helpful guide

float: left;

25
Template Support / Re: Edit the Top Menu bar text "Login or register"
« on: January 22, 2017, 10:18:09 PM »
Hi, first of all login to your Admin Panel and in the search box on the top, type this Login or register, you will get result like this -


Click on first result: text_login_or_register , in the resulting window edit the text to your liking:


Click Save & close

Thanks.

Thank you for the great and super easy solution

26
Template Support / Re: Center Align Customer Login DIV
« on: January 22, 2017, 10:13:35 PM »
style.css:1975

margin-right: 50%;
width: 50%;
margin-left: 25%;
Can you indicate where the css file is located. Sorry I'm not sure about the location

27
Template Support / Center Align Customer Login DIV
« on: January 22, 2017, 10:32:08 AM »
Hi I have modified my template a little as so to disable registration of customers as I want to only selectively register customer via backend.

I have managed to hide registration div by commenting <div class="col-sm-6 newcustomer"> from /storefront/view/default/template/pages/account/login.tpl

After doing so, now I want to bring the returning (existing) customer login box to center of page, as currently its aligned to right. Can anyone guide how to do so?

I have attached screenshot to show exactly what I mean.

Thank you.




28
Template Support / Edit the Top Menu bar text "Login or register"
« on: January 22, 2017, 10:20:43 AM »
Hi guys,

I have installed AbanteCart cart and currently running on default template.

I would like to edit the text on top right hand corner which is a link to register/login page. By default it displays "Login or register" and I want to change it to "Login"

Can anyone guide which is the file to edit? I have manged to get the code snippet (refer below) using Chrome Inspect tool, but I just cannot find which file hosts this code snippet.

<ul class="nav navbar-nav main_menu" id="customer_menu_top">
      <li><a..href="hxxp://dsdy.com/index.php?rt=account/login&amp;token=csscscs">Login or register</a></li>
   </ul>

Pages: 1 [2]

Powered by SMFPacks Social Login Mod