How can I customise the Stripe payment using the Enupal craft plugin? - craftcms

Have followed the documentation
https://enupal.com/craft-plugins/stripe-payments/docs/plugin-development/template-overrides
Created a folder in my templates folder
templates/_stripe/donations/_frontend/[all the folders within frontend folder]
How can I include this in my template?

You only need to add the next path under the Templates Folder input on your payment form:
_stripe/donations/_frontend
And don't forget to enable the Custom templates lightswitch
Then display your payment form as usual (it will take your template override folder)
{{ craft.enupalStripe.paymentForm('handle') }}

Related

How to implement the Gentelella Bootstrap Admin theme in ASP.NET MVC?

I'm starting now with web development in Visual Studio. I have already understood MVC, I have some knowledge of HTML and I started to study the bootstrap.
Then, I discovered the beautiful template Free Bootstrap 3 Admin Template on the web, which has an example online here: https://colorlib.com/polygon/gentelella/index.html
I downloaded the files like custom.css and custom.min.css as they are shown in the following image:
But now I don't know how to put it in my project, so I created a new clean project in Visual Studio Community 2015. I did some tests, and I created some controllers and views.
How can I change the default bootstrap theme that came with ASP.NET MVC project to the downloaded one?
I imagine I should replace the _Layout in the shared folder. But what else should I bring?
I do not want all those example pages, etc. Just Bootstrap and the base layout to create my view's.
I have found everything I needed from a YouTube video, entitled "Plantilla Bootstrap en Proyecto ASP.NET MVC" (obviously in Spanish).
There are many steps:
Adding files to the project
setting the _Layout
set scripts references
bundles
Etc.
Ultimately, it worked.
step one
Create a MVC project Default template in visual studio
Step Two
Delete All cshtml in view folder expect shared folder
you must be detrmine wthich part of your page repeatly in all pages that is your layout and you can put html tag like header menu and footer in /views/shared/_layout.cshtml and write renderbody in part of layout to see default login homepage or etc
finaly
all css and java script folder paste in your project and in layout change target to available js and css resource
Learn about mvc Layout
Understand Css And JavaScript embed from bundle

Localize tinymce for 2sxc module in dnn

I found localized JS file on tinymce web site.
Now I am interested how can I integrate this localization into 2sxc module for dotnetnuke?
To localize more languages, please contribute to the github project https://github.com/2sic/2sxc-eav-languages
If you are using a local install of TinyMCE...
The language files for TinyMCE need to go into the langs folder inside of the main folder where TinyMCE itself is located.
For example, to load Spanish I have this file structure:
..../tinymce/langs/es.js
The second part of this is to add a parameter to the TinyMCE configuration object to tell it to load the language pack:
language: 'es'
How you get this done in 2sxc - that I don't know as I have no experience with that tool. If you can figure out where the TinyMCE files are located and how 2sxc creates the TinyMCE configuration object this should be easy to address.
If you are using TinyMCE via CDN...
You can specify a different location for the language packs (they are not currently on the CDN). The language_url configuration option allows you to do this:
https://www.tinymce.com/docs/configure/localization/#language_url
You can then place the language file(s) wherever you like. For example:
tinyMCE.init({
language_url: 'http://example.site.com/some/path/you/pick/languages/es.js'
});
Note: You can get language packs from https://www.tinymce.com/download/language-packages/

how to add bootstrap template to ASP.net MVC project

I want to create a ASP.net MVC5 project by using bootstrap template like this one "https://colorlib.com/polygon/metis/dashboard.html#".
I have download it by my browser but i don't know how to add it to my project in visual studio 2013.
I have not find a tuto that help to do that, i just find how to add theme.
May someone know how to do it or a tuto that can show me the way?
Thanks a lot
1.- Create a new project with the MVC structure. Bootstrap and jQuery are already installed.
The folder structure should look like this:
2.- Add your downloaded css in the Content folder
3.- Add your downloaded js in the Scripts folder
4.- Add your html files in differents view folders depending on what you want. You should put the common html elements of all the page in the _Layout page (e.g. Menu or Top bar).
Hope it helps!
Create a Bootstrap class inside the Content folder and name it
bootstrap-anything.css
App Start folder contains configuration files.
The folder should contain 3 files:
BundleConfig.cs
FilterConfig.cs
RouteConfig.cs
Go inside BundleConfig.cs, there should be a function
bundes.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
Change
~/Content/bootstrap.css to ~/Content/bootstrap-anything.css
That's it.

How do I create a new page template inside sfSimpleCMSplugin?

I have and old version of sfsimplecmsplugin running inside of Symfony v1. I need to create new page templates but I don't know how.
Did you read the doc?
The plugin is bundled with a few basic templates, but you will definitely need to add your own templates.
CMS templates are files located under the sfSimpleCMS module's templates/ directory, with a name ending with Template.php. A template must include the sfSimpleCMS helper group and call the include_editor_tools() helper at the bottom.
So basically, you create a new file called /apps/frontend/modules/sfSimpleCMS/templates/myPageTemplate.php and you copy/paste this file inside as a starting point for your new template.

how to load different frontend modules templates in backend for customizing templates contents using symfony 1.4,doctrine

how to load different frontend modules templates in backend for customizing templates contents
I have class module in frontend & also templates as well.
I have also created a module in backend as emailcontent for accessing several modules templates
to customize html.
1. How do i access/Load templates in backend module emailcontent
I think you are asking how do you use the same code in the frontend and the backend, but customising the templates?
If so the solution you are after it to create a plugin which in enabled in the front and the backend then over write the templates as you would say the sfGuardPlugin.
Have a look at the Jobeet example for creating plugins: http://www.symfony-project.org/jobeet/1_4/Doctrine/en/20

Resources