Post by krishnatech » Mon Dec 09, 2013 2:10 pm

thanks for the support ! my problem is solved with your help

Newbie

Posts

Joined
Sat Dec 07, 2013 5:27 pm

Post by krishnatech » Mon Dec 09, 2013 7:03 pm

can you help me
when i enable rule it does not show the
cash on delivery fee to 0 in the invoice
rather i dont want to charge the amount
but i want to show the amount as 0 in invoice

Newbie

Posts

Joined
Sat Dec 07, 2013 5:27 pm

Post by gkasios » Tue Dec 10, 2013 5:45 am

You must enable Total Order in your options and also don’t forget to get GOP Cash on Delivery Fee extension located under Extensions > Totals enabled too

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by condomia » Tue Dec 10, 2013 6:25 pm

Can you please tell me if I can disable COD for some products with this extension?

Newbie

Posts

Joined
Sun Dec 08, 2013 2:27 pm

Post by gkasios » Tue Dec 10, 2013 7:40 pm

Yes but it requires to have a small knowledge in php to create a custom rule

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by gkasios » Tue Dec 10, 2013 7:41 pm

When an Extension doesn’t appear in your OpenCart go and check that you have permissions. The permissions can be found in System > Users > User Group then edit the User Group that you are in (usually Top Administrator) and check the Extension.

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by condomia » Tue Dec 10, 2013 8:51 pm

gkasios wrote:Yes but it requires to have a small knowledge in php to create a custom rule
Ok, can you give me an example with an hypothetical product?

Many thanks!

Newbie

Posts

Joined
Sun Dec 08, 2013 2:27 pm

Post by gkasios » Wed Dec 11, 2013 2:04 am

Here is an example. If in the cart there is a product with id 100 then Cash On Delivery will be disabled

Code: Select all

$products=$this->getProducts();
$enabled=true;
foreach($products as $product)
{
  if($product['product_id']=='100')
  {
       $enabled=false;
  }
}
if you change this

Code: Select all

$product['product_id']
with this

Code: Select all

$product['name']
you can check with the name.

Hope it helps you.

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by krishnatech » Wed Dec 11, 2013 1:59 pm

krishnatech wrote:can you help me
when i enable rule it does not show the
cash on delivery fee to 0 in the invoice
rather i dont want to charge the amount
but i want to show the amount as 0 in invoice
But i want to get on order total ->> Cash on delivery fee 0 or Free

Newbie

Posts

Joined
Sat Dec 07, 2013 5:27 pm

Post by gkasios » Thu Dec 12, 2013 2:53 am

If we understand it your question you want when your customer reach in the last step of the payment (Total Order) to have the Cash on Delivery to appear with its value (zero in your case). If that is your question then do as we told you above and check that the Extension GOP Cash on Delivery Fee is installed and enabled and that also you selected Enable in the option Total Order located near the end of our Extensions options. If that is not your problem please rephrase your question better.

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by condomia » Fri Dec 13, 2013 11:57 pm

I sent an email to bug@gkasios.com because of an incompatibility with this extension and "Checkout and Registration Simple" extension. The total order doesn't appear with this extension.

Many thanks!

Newbie

Posts

Joined
Sun Dec 08, 2013 2:27 pm

Post by gkasios » Wed Dec 18, 2013 1:35 am

We just released a new version fixing a bug and making some additions

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by geospath » Sat Feb 15, 2014 6:13 pm

Εχω δημιουργήσει 2 ομάδες πελατών:
Απόδειξη
Τιμολογιο

και θελω οι όποιες ρυθμίσεις να ισχύουν ΚΑΙ για τις δυο ομαδες. Πως γίνεται αυτό;

New member

Posts

Joined
Sun Jan 29, 2012 5:46 pm

Post by gkasios » Sun Feb 16, 2014 12:26 am

Για να δώσετε τις ίδιες επιλογές και για τις δύο ομάδες απλά κάντε τις ίδιες ρυθμίσεις και στις δύο. Οι επιλογές στο extension μας γίνονται ως εξής.
Μέθοδος αποστολής > Γεωγραφική Ζώνη > Ομάδα Πελατών και έπειτα ορίζουμε τις επιλογές μας για αυτό τον συνδυασμό.
Στην περίπτωση σας δηλαδή π.χ. Παραλαβή από το κατάστημα > Ελλάδα > Πελάτες με Απόδειξη και κάντε το Extension ανενεργό και μετά Παραλαβή από το κατάστημα > Ελλάδα > Πελάτες με Τιμολόγιο και επίσης κάντε το extension ανενεργό.
Αντίστοιχα στην αποστολή με courier θα φτιάξετε έναν κανόνα να απενεργοποιεί το extension για ποσό πάνω από 50€ π.χ.

Code: Select all

 if($this->getTotal()>50){$enabled=false;}

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by techanalysis » Fri Mar 14, 2014 2:07 pm

Thank you for providing this great extension for free.

I am using different stock status for different products:

The stock status used be me are as below:
In Stock
Avaialable
Imported
Out of Stock

I want to show the COD option for items 'In Stock' only with a fixed price for COD shipping charge.

how can i do it. can u give the code ?

Newbie

Posts

Joined
Sat Mar 01, 2014 11:50 am

Post by gkasios » Sat Mar 15, 2014 12:55 am

If we understand your question you need something like this enable rule

Code: Select all

if($this->isCartOutOfStock()){$enabled=false;}

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by htwp » Wed Mar 19, 2014 2:31 am

Καλησπέρα.Το πρόβλημά μου είναι όταν διαλέγω παραλαβή από το κατάστημα στο επώμενο βήμα υπάρχει ο τρόπος πληρωμής.Σε αυτό το σημείο έχω βάλει την τραπεζική κατάθεση που υπάρχει σαν επιλογή και υπάρχει και το δικό σου που λέει Αντικαταβολή(Δωρεάν). Μπορούμε να το κάνουμε να δείχνει αντι για Αντικαταβολή, Μετρητά στο κατάστημα? Σε ευχαριστώ πολύ

Active Member

Posts

Joined
Sun Oct 14, 2012 1:29 am

Post by gkasios » Wed Mar 19, 2014 3:24 am

Υπάρχουν τρείς τρόποι
  • 1. Αν δεν χρησιμοποιούμε την αντικαταβολή για οτιδήποτε άλλο να αλλάξετε το αρχείο της μετάφρασης που βρίσκεται /catalog/language/greek/payment/GOP_COD.php
    2. Custom rule: Κάνοντας χρήση της μεταβλητής

    Code: Select all

    $title='Μετρητά στο κατάστημα';
    3. Αλλαγή της μετάφρασης της αντικαταβολής που ενσωματώνει το OpenCart και απενεργοποίηση του δικού μας extension όταν επιλέγεται παραλαβή από το κατάστημα.

Our Extensions


User avatar
New member

Posts

Joined
Tue Jan 08, 2013 1:57 am


Post by htwp » Wed Mar 19, 2014 3:49 am

Σε ευχαριστώ πάρα πολύ δούλεψε αλλά στο final check out παραμένει "Χρέωση Αντικαταβολής" οπότε λέω μήπως πέραν του $title='Μετρητά στο κατάστημα'; πρέπει να προσθέσω και κάτι αλλο στο custom ? To βρήκα. έβαλα

$title='Μετρητά στο κατάστημα';
$order_total_title='Μετρητά στο κατάστημα';

και δούλεψε. Να σαι καλά.
Πολύ ωραίο το module, πολύ χρήσιμο.

Active Member

Posts

Joined
Sun Oct 14, 2012 1:29 am

Post by stakon » Fri Apr 04, 2014 11:58 pm

Ευχαριστούμε πάρα πολύ για το module.

Έχω το εξής πρόβλημα..

Ενώ εμφανίζονται όλα καλά, δεν υπολογίζεται η αντικαταβολή στο Τελικό Σύνολο...

καμιά ιδέα...

OpenCart 1.5.6.1, Theme Vitalia...

Ευχαριστώ

Newbie

Posts

Joined
Wed Jan 29, 2014 2:22 am
Who is online

Users browsing this forum: No registered users and 35 guests