Magento
Steps to add/configure Specials block carousel in Magento
In this article, we are going to discuss about How to add/configure specials block carousel in magento. The Magento eCommerce platform serves more than 110,000 merchants worldwide and is supported by a global ecosystem of solution partners and third-party developers. Magento is a feature-rich, open-source, enterprise-class platform that offers merchants a high degree of flexibility and control over the user experience, catalog, content and functionality of their online store.
Step 1 :
To add/configure specials block carousel, we need to observe that this block/ might not be available on your specific template. Open admin part and go to CMS -> Widgets.
Step 2:
You should see Catalog Sale Product Carousel or Catalog Sale Product record widget when you've got installed the template with pattern information. just open widget so as to configure it. because widget is just not installed we wish to add and configure it. click on on Add New Widget occasion.
Step 3:
Select type of block. You must choose Catalog Sale Product Carousel or Catalog Sale Product checklist. select the template.
Step 4:
Now we need to specify widget occasion title, make a choice retailer views and specify order during which block will appear.
Step 5:
Click on on Add structure replace. In structure update you must choose web page and area by which you wish to set the block.
Step 6:
Open Widget choices and specify choice of products in order to seem in block.
Step 7:
Retailer adjustments and clear Magento cache. on this tutorial you will see clear Magento cache.
Step 8:
Refresh the house web page. Specials block seems on our web page.
Step 1 :
To add/configure specials block carousel, we need to observe that this block/ might not be available on your specific template. Open admin part and go to CMS -> Widgets.
Step 2:
You should see Catalog Sale Product Carousel or Catalog Sale Product record widget when you've got installed the template with pattern information. just open widget so as to configure it. because widget is just not installed we wish to add and configure it. click on on Add New Widget occasion.
Step 3:
Select type of block. You must choose Catalog Sale Product Carousel or Catalog Sale Product checklist. select the template.
Step 4:
Now we need to specify widget occasion title, make a choice retailer views and specify order during which block will appear.
Step 5:
Click on on Add structure replace. In structure update you must choose web page and area by which you wish to set the block.
Step 6:
Open Widget choices and specify choice of products in order to seem in block.
Step 7:
Retailer adjustments and clear Magento cache. on this tutorial you will see clear Magento cache.
Step 8:
Refresh the house web page. Specials block seems on our web page.
PHP CMS Frameworks
January 25, 2015
Read more →
Joomla
AcyMailing Starter - Joomla Newsletter Extension Free Download
AcyMailing Starter - A great newsletter and e-mail marketing extension for Joomla! AcyMailing is a Joomla extension that allows you to maintain real communication with your contacts via e-mail marketing, newsletters, follow-up autoresponders and marketing campaigns. It is seamlessly incorporated into Joomla and provides professional features enabling you to keep you in permanent contact with your subscribers.
Have you struggled with similar extensions in the past? Well if you are looking for a great newsletter extension for Joomla, AcyMailing will save you time and make your life easier.
Extension Name: AcyMailing Starter
Extension Provider: Acyba.com
Price: Free
More info and reviews: AcyMailing Starter on JED
Download Free Version - Click Here
Have you struggled with similar extensions in the past? Well if you are looking for a great newsletter extension for Joomla, AcyMailing will save you time and make your life easier.
Extension Name: AcyMailing Starter
Extension Provider: Acyba.com
Price: Free
More info and reviews: AcyMailing Starter on JED
Download Free Version - Click Here
PHP CMS Frameworks
January 21, 2015
Read more →
CakePHP
Cakephp - load view in iFrame
In this article, we are going to discuss about How to load the views in iframe in CakePHP. CakePHP is an open source web application framework. It follows the Model-View-Controller (MVC) approach and is written in PHP. CakePHP uses well-known software engineering concepts and software design patterns, as Convention over configuration, Model-View-Controller, Active Record, Association Data Mapping, and Front Controller.
To use iFrame in cakephp we can set the iFrame tag in layout file. And to change source of iFrame dynamically we use $page variable which load parameters.
Example:
<iframe src="<?=$this->Html->url("/users/$page")?>" width="100%" height="500"> </iframe>
To use iFrame in cakephp we can set the iFrame tag in layout file. And to change source of iFrame dynamically we use $page variable which load parameters.
Example:
<iframe src="<?=$this->Html->url("/users/$page")?>" width="100%" height="500"> </iframe>
PHP CMS Frameworks
January 14, 2015
Read more →
Wordpress
Steps to Protect the Uploads Folder in WordPress
In this article, we are going to discuss about How to protect the uploads folder in wordpress. By default WordPress is very secure but you can still improve it. This is a code you need to apply in a new .htaccess file you will upload in the 'wp-content/uploads' folder.
By default WordPress is configured to use the 'wp-content/uploads' directory. You can think of it as 'box' where your media files or images are saved when you upload them while creating your articles under WordPress.
This example will only accept images files. If you want to upload other file types, add the file extensions to the list.
# BEGIN WordPress
<Files ~ ".*..*">
Order Allow,Deny
Deny from all
</Files>
<FilesMatch ".(jpg|jpeg|jpe|gif|png|tif|tiff)$">
Order Deny,Allow
Allow from all
</FilesMatch>
# END WordPress
Follow the above steps and you will have a more secure WordPress uploads folder that you can start using to be able to save those photos you need to include into your blog/site articles.
By default WordPress is configured to use the 'wp-content/uploads' directory. You can think of it as 'box' where your media files or images are saved when you upload them while creating your articles under WordPress.
This example will only accept images files. If you want to upload other file types, add the file extensions to the list.
# BEGIN WordPress
<Files ~ ".*..*">
Order Allow,Deny
Deny from all
</Files>
<FilesMatch ".(jpg|jpeg|jpe|gif|png|tif|tiff)$">
Order Deny,Allow
Allow from all
</FilesMatch>
# END WordPress
Follow the above steps and you will have a more secure WordPress uploads folder that you can start using to be able to save those photos you need to include into your blog/site articles.
PHP CMS Frameworks
January 11, 2015
Read more →
YII
Create custom component in Yii PHP Framework
In this article, we are going to discuss about How to create custom component in YII PHP framework. Yii framework having default application components and it is giving different type of services. For example 'urlManager' component, 'db' component etc. Every application component has an uniqueID and will call through expression format. We can create Application components like global or local variables.
Syntax And Core Components
Application compoent syntax
Yii::$app->componentID
sample Core Application Components
Yii::$app->db
Yii::$app->cache
Yii::$app->request
Yii::$app->session
Yii::$app->mailer
etc
Create Your Own Component In Yii
Create a folder named "components" in the project root directory. Now create one class 'MessageComponent' with extends class 'Component' inside the components folder. Using this component, we will display message.
Please see the below code to create a custom component class.
<?php
namespace app\components;
use yii\base\Component;
class MessageComponent extends Component{
public $content;
public function init(){
parent::init();
$this->content= 'Hello Yii 2.0';
}
public function display($content=null){
if($content!=null){
$this->content= $content;
}
echo Html::encode($this->content);
}
}
?>
Config Component In Yii
We have to register 'MessageComponent' by configuring the yii\base\Application::$components property inside the config/web.php file (application configurations).
'components' => [
'message' => [
'class' => 'app\components\MessageComponent',
],
],
Now we can access this component using 'Yii::$app()->message' expression
Call Yii Custom Component Function
Using configured 'message' component, we can call the method inside the 'MessageComponent'.
<?php
Yii::$app->message->display('I am Yii2.0 Programmer');
?>
Syntax And Core Components
Application compoent syntax
Yii::$app->componentID
sample Core Application Components
Yii::$app->db
Yii::$app->cache
Yii::$app->request
Yii::$app->session
Yii::$app->mailer
etc
Create Your Own Component In Yii
Create a folder named "components" in the project root directory. Now create one class 'MessageComponent' with extends class 'Component' inside the components folder. Using this component, we will display message.
Please see the below code to create a custom component class.
<?php
namespace app\components;
use yii\base\Component;
class MessageComponent extends Component{
public $content;
public function init(){
parent::init();
$this->content= 'Hello Yii 2.0';
}
public function display($content=null){
if($content!=null){
$this->content= $content;
}
echo Html::encode($this->content);
}
}
?>
Config Component In Yii
We have to register 'MessageComponent' by configuring the yii\base\Application::$components property inside the config/web.php file (application configurations).
'components' => [
'message' => [
'class' => 'app\components\MessageComponent',
],
],
Now we can access this component using 'Yii::$app()->message' expression
Call Yii Custom Component Function
Using configured 'message' component, we can call the method inside the 'MessageComponent'.
<?php
Yii::$app->message->display('I am Yii2.0 Programmer');
?>
PHP CMS Frameworks
January 07, 2015
Read more →
Joomla
Content Templater - Joomla Content Templates Extension Free Download
Content Templater - Make predefined reusable content templates with this extension for Joomla!. Not only can you make complete standard page layouts, you can also use Content Templater for text snippets. So any piece of text you want to use more than once, just make a content template of it!
Under the editor you will get a list of available templates. If you select a template, your predefined content will be pasted in your article or other content item. And all the options you have set in the template will be automatically set (like title, alias, publishing settings, show icons settings, etc.)
Easy to use and set up, Content Templater is a great time saver in your website development, ,you'll find that this joomla extension along with any others released by No Number will live up to expectations and do the job perfectly.
Extension Name: Content Templater
Extension Provider: Nonumber.nl
Price: Free
More info and reviews: Content Templater on JED
Download Free Version - Click Here
Download Pro version - Click Here
Under the editor you will get a list of available templates. If you select a template, your predefined content will be pasted in your article or other content item. And all the options you have set in the template will be automatically set (like title, alias, publishing settings, show icons settings, etc.)
Easy to use and set up, Content Templater is a great time saver in your website development, ,you'll find that this joomla extension along with any others released by No Number will live up to expectations and do the job perfectly.
Extension Name: Content Templater
Extension Provider: Nonumber.nl
Price: Free
More info and reviews: Content Templater on JED
Download Free Version - Click Here
Download Pro version - Click Here
PHP CMS Frameworks
January 04, 2015
Read more →
No more posts to load.
About this blog
PHPCMSFramework.com
Tutorials for WordPress, Laravel, Drupal, Joomla, Symfony & more — including AI-powered PHP guides. Publishing since 2012.
Trending posts
- Building a RAG System in Laravel from Scratch
- Steps to create a Contact Form in Symfony With SwiftMailer
- Build a WhatsApp AI Assistant Using Laravel, Twilio and OpenAI
- CIBB - Basic Forum With Codeigniter and Twitter Bootstrap
- Laravel and Prism PHP: The Modern Way to Work with AI Models
- Drupal 7 - Create your custom Hello World module
- Build an AI Code Review Bot with Laravel — Real-World Use Case
- Symfony Framework - Introduction
- Create Front End Component in Joomla - Step by step procedure
- A step by step procedure to develop wordpress plugin