how to customize payment method in abantecart - opencart

I am new to abantecart. i need help with customising the payment method. On clicking on the checkout on the cart page, i'd like to go to a page with a form which the user should fill some payment information (this serves as the payment method). Then an email should be sent to the store owner for approval and when approved an email should be sent to the user on the approval status. Please how can i achieve this?

The best to create new payment is using of AbanteCart Developer Tools.
Just download pack, unpack some of subdirectories (for v.1.2.9 and you should use "1.3" folder) in to your "extensions" directory, then go to admin and install it. Then generate new project with extension type "payment".
You can look into default_pp_standart extension and use it as example to create your custom payment form.

Related

Modified checkout form for a signed in user of Spree based application

Im new to using Spree . We are using Solidus which is a fork of Spree 2.4. I would like to customize the checkout flow in my application. For a signed in user we dont want to show the form for shipping address, billing address, contact information and payment information as we need to prepopulate those fields with the customers information that we have in our database.
I went through the checkout flow docs at https://guides.spreecommerce.org/developer/checkout.html, but still dont have any idea how i can achieve the above . Can someone please guide me as to how can i modify the checkout form to hide the shipping address, billing address, contact information and payment information for a signed in user ?
Thank You
You can easily replace or override views frontend with your own version. To generate frontend in your project
rails generate spree:frontend:copy_views
The checkout views should be in this folder
YOUR_APP/app/views/spree/checkout
The views are coded with ruby erb.

How to configure a newsletter subscription with Sitecore 8.1, WFFM and EXM

I am new to sitecore developement and have one task to acheive using EXM and WFFM.
I have one newsletter subscription form which contains
Name
Email Address
Option to subscribe for News Letter or Current Vacancies
Captcha
Clicking on Submit, should send Email to the user with link to verify his email address. After clicking on link user will be added in email subscription list to receive newsletter and/or current openings.
I am not sure from where to start to implement this functionality. Any help in this regard is highly appreciated.
Thanks!
Mohit, this sounds like a small standalone project and it's hard to detail every single step in here, but I will at least point you on how to get started.
First of all, let me briefly explain the two Sitecore modules and how you can make them work togheter:
WFFM: Lets you create simple web forms that record and report information provided by visitors to your website
EXM: Lets you create and manage email messages, and manage subscription lists
In order to achive your project, you need to:
Create two subscription lists: Newsletter Subscription List and Current Vacancies Subscription List. Here are some instructions
Create the subscription form, containing the two subscription options. You can follow this detailed article from Sitecore, which explains how to create a form.
Trigger Confirmation email on WFFM submit and subscribe users to your lists: if you follow this article, you will understand how to add the "Subscribe to Recipient List" save action and to trigger a Subscription confirmation email
Configure EXM: Create a new message in EXM, which includes your subscription lists as recipients list
I hope this helps you get started.

how to customize publish action - sitecore

I created a user in sitecore with 2 roles assigned to him i.e author and publisher
When this user who is both author and publisher creates any content he shouldn't be able to publish it.
Can i overwrite the publish action? check on the user who submitted the content and the roles he is assigned to and restrict him with a popup message or something like that? Any help is appreciated.
Thanks.
Follow the below steps to write custom publish actions
For customizing the publish action, Write a c# class and inherit
Sitecore.Shell.Applications.Dialogs.Publish.PublishForm.There
are override methods like ActivePageChanged and OnNext. You can
basically overwrite those classes and write your own alerts with
Sitecore.Web.UI.Sheer.SheerResponse like shown below.
SheerResponse.Alert("The current item will not be published.Please
select both staging and web database to publish the HOME item.");
Copy the Publish.xml file from (your
siteroot/)/sitecore\shell\Applications\Dialogs\Publish.
Create "sitecore\shell\Override\Applications\Dialogs\publish" in root of website
Paste publish.xml in the following folder in root of your site "sitecore\shell\Override\Applications\Dialogs\publish"
Open publish.xml file and modify the Wizard tag
CodeBeside="Sitecore.Shell.Applications.Dialogs.Publish.PublishForm,Sitecore.Cli
ent"
to
CodeBeside="your Class Name with name space here,your Assembly name"
Here is screenshot of how publishoverride form should look like

Bigcartel custom checkout page to allow orders with bank transfer

I'm looking for a way to do checkout on my bigcartel webshop next to the paypal checkout. I actually just want it to place the order and send the confirmation mail as setup in the (admin) notifications section. In this way I can allow orders to my customers via regular bank transfer.
I have experience in html, CSS and programming in general...
thanks a lot!
Sorry, but there's no way to modify the checkout process in Big Cartel, or add another checkout option (even with heavy customization) - you'll need to use the built-in PayPal or Stripe checkout.

How to develop new component

I am a new joomla programmer.i need to build new component for upload cv.my form fields are name, email and upload cv and submit button.i only need to build front end view form, filling the details and after click the submit button send the email.please help me create a component(joomla 2.5).
Thank you.
Welcome to the stack-overflow. This is very basic question to ask you can easily search it in Google. But never mind you can check the given link for how to make component. see below.
Developing a Model-View-Controller Component/2.5/Developing a Basic Component
You can use SWF upload to upload the files.see this
Creating a file uploader in your component
And for the email you can use it like this
Sending email from extensions