From 8208176414d2ba551990d91f148905338a5c21d4 Mon Sep 17 00:00:00 2001 From: Gourav Chawla Date: Thu, 21 Jul 2016 16:43:14 +0530 Subject: [PATCH] Updated Custom.css file path The path to custom.css is not correct and it took me alot of time to find it. It should be updated so that others don't face the same issue. --- pages/10.developer-documentation/01.customize-layout/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/10.developer-documentation/01.customize-layout/docs.md b/pages/10.developer-documentation/01.customize-layout/docs.md index f3c5473..55652b8 100644 --- a/pages/10.developer-documentation/01.customize-layout/docs.md +++ b/pages/10.developer-documentation/01.customize-layout/docs.md @@ -6,7 +6,7 @@ taxonomy: --- Sometime, you might want to customize layout of some pages in Membership Pro to meet your requirement. Some notes below should be helpful to you if you have to do that: -1. If you want to add any css code to the extension, don't modify the css file directly. Please add all your custom css code to **components/com_osmembership/assets/css/custom.css** so that it won't be lost when you update to future release of the extension +1. If you want to add any css code to the extension, don't modify the css file directly. Please add all your custom css code to **media/com_osmembership/assets/css/custom.css** so that it won't be lost when you update to future release of the extension 2. If you want to customize the layouts in the extension, please use **Template Override** so that it won't be lost when upgrade your site to newer version of the extension. Please see for detailed instruction: * If you want to customize the **plans list** page, depend on the layout you are using (default, columms, pricing table), you will need to get a copy of one of the file (default_plans.php, columns_plans.php, pricingtable_plans.php) in folder **components/com_osmembership/view/common**, **place** it to **PATH_TO_YOUR_SITE_TEMPLATE/html/common** folder, then do any customization you want in that file * If you want to customize the **plan detail** page, take a copy of the file **components/com_osmembership/view/plan/default.php**, place it to **PATH_TO_YOUR_SITE_TEMPLATE/html/plan** folder and do any customization from there.