E-commerce theme development in WordPress - php

I am learning WordPress and I know how to edit and develop a site from available templates, now I am trying to make a custom e-commerce template from scratch, and I couldn't find any tutorials available. Will you please suggest me a video tutorial which will be helpful for me to reffer and develop the template.

You could create a child theme on WooCommerce plugin https://support.woothemes.com/hc/en-us/articles/203105897-How-to-set-up-and-use-a-child-theme

Related

How to use content management software with our own designed website?

I am new here and I am learning web development for now. So please don't mind if something is wrong with this post.
So, coming to the question, I came to know about various CMS softwares like wordpress, drupal etc.
They offer some free and paid themes to build a website.
But, I want to design my own website with Bootstrap framework and then use a CMS software to add content everyday. To be clear, I don't want to use themes.
SO, is it possible to make our own design and then integrate to CMS?
Please give some suggestions. Thank you.
As you mentioned, you want to have your own design built with Bootstrap and then use some CMS to get your blog up.
I suggest using WordPress as CMS, and taking any free Bootstrap based WordPress theme and modifying it as per your own design needs, this way you will not have to worry about WordPress theme building learning at this stage.
I suggest you to use Wordpress. You can design your own theme from scratch. Take a look at Theme Development on Wordpress. Also, these video tutorials should give you a good start. Good luck!

adding new module in wordpress

I'm sorry if my question is not good quality.I have problem when I want to understanding wordpress , I'm new in wordpress, and I want to create some module in wordpress, It's Possible?
ex.
if i want to add module, what must I'm studying in wordpress ?
Joomla usually refers to a module. Writing one in WordPress is considered a plugin. You should start studying the Codex and it will lay what you need to do out for you.
You can find that on the WordPress site at Writing_a_Plugin
WordPress Plugin: A WordPress Plugin is a program, or a set of one or more functions, written in the PHP scripting language, that adds a specific set of features or services to the WordPress weblog, which can be seamlessly integrated with the weblog using access points and methods provided by the WordPress Plugin Application Program Interface (API).
Wishing that WordPress had some new or modified functionality? The first thing to do is to search various WordPress Plugin repositories and sources to see if someone has already created a WordPress Plugin that suits your needs. If not, this article will guide you through the process of creating your own WordPress Plugins.
To develop WP plugins, you must familiar with wordpress hooks and API functions.
You can start learning/exploring from any existing plugins. I had started with "Hello_Dolly" :)

Drupal custom theme for existing php site

I am new to drupal and just finished studying the basic concepts in drupal.
We are migrating an existing php site into drupal.
The website posts articles every week and the articles are stored in database.
Do I need to create a custom theme if I want to have exactly the same presentation as of existing site?
And just seeking advice that if there is any easier way of migrating an existing dynamic php site into drupal.
You will definitely need to create a custom theme if you want to have it mirror the way your current site looks. I would recommend using a base theme, like Zen, and customize from there.
As far as migration goes, it really depends on how your site is currently setup. I would recommend writing a custom script to migrate your articles into Drupal.

WordPress themes and plugins development

I want to develop WordPress themes and plugins. What do I need to know to do this?
I have knowledge of PHP, HTML, CSS and JavaScript. I have developed a few projects using these. What is the best place to start (except Codex), is there any book? Where can I know how the core of WordPress works?
Check out this neat infographic for a good introduction to the anatomy of a wordpress theme.
http://yoast.com/wordpress-theme-anatomy/
Professional WordPress Plugin Development
Digging into WordPress
For Plugins:
There are two places where you can code for plugin in Wordpress.
1. functions.php
2. Create a folder in plugins folder, inside that folder. Create a blank .php file, and code there.
For Themes:
As you asked for learning wordpress themes. Go to themes folder, try to get the structure and flow of wordpress default themes.
You've to code within themes folder.

building an extendible php application

I want to start a new project, there are currently 4 of us who plan to use the system as our website. So basically i'm wondering if there are any existing frameworks/libraries that will enable to us to build the app to be configurable. Kinda like how wordpress is, you can add your own theme and plugins to customize the functionality of the site. I don't want to use an existing cms such as joomla or a blog like wordpress because I want to be building my own app from the ground up.
If there aren't any frameworks that can do this, any suggestions on how i could go about accomplishing this? In essence i suppose its allowing the app to have a default theme then have that theme overridden and allowing use of "plugins"
build a plugin system with php

Categories