Articles

How to setup Facebook connect in Wroupon 3.8

Regardless of your experience level it is advised to read this section to guarantee correct configuration of your application. It is incorrect settings in the Facebook Developer application that tends to be the cause for misfunction. This can result in many hours of lost time trying to fix it. Choose application name Open Facebook Developer […]

Read Article ›

How to activate google maps for Wroupon Scipt

Wroupon Script supports Google Maps for Map Placing .   You can activate it for free in your wroupon appcalition.To do so follow these steps.   1.Get Google API’s. Goto Manage/Settings/Basic and Find Google Maps Apikey and click on Apply for one now After doing so, You will need to configure Partner page   2.Configuring […]

Read Article ›

Adding new Payment Gateway to Wroupon Script :Groupon Clone

Wroupon supports integration with most of payment gateways.   Since there are 100’s of gateways used all over the world, We are providing guidelines over how to add new gateway.   You need to follow these steps Assuming Your Gateway name is abcgateway 1. Create a folder like abcgateway order/abcgateway Add Your gateway files in […]

Read Article ›

Replacing XHEDITOR with CkEditor

1.Download CKEDITOR from http://ckeditor.com/download Place files in static/js/ckeditor 2.Now make changes to include/template/manage_header.html add following code <script type=”text/javascript” src=”/static/js/ckeditor/ckeditor.js”></script> <script type=”text/javascript” src=”/static/js/tiny_mce/tiny_mce_jquery.js”></script> <script type=”text/javascript”>$(‘#textareaid’).ckeditor();</script> 3. Now find template file where you have to add the FCKEDITOR Like include/template/manage_team_edit.html Find textarea classes and replace them with ckeditor Example <textarea class=”f-textarea editor” replace with <textarea class=”ckeditor” Now […]

Read Article ›

How to setup Facebook connect in Wroupon UltraV4

Regardless of your experience level it is advised to read this section to guarantee correct configuration of your application. It is incorrect settings in the Facebook Developer application that tends to be the cause for misfunction. This can result in many hours of lost time trying to fix it. Choose application name Open Facebook Developer […]

Read Article ›

How do i change Header Color and BackGround in Groupon Clone

  Step1. Please create an image of 1×157 px with desired color save as bg-hd-new.gif Step2. Now upload image bg-hd-new.gif to static/css/i/ Step3. Then goto static/index.css Find #hdw { background: url(“i/bg-hd.gif”) repeat-x scroll 0 0 transparent; height: 157px; } Replace image name So it looks like #hdw { background: url(“i/bg-hd-new.gif”) repeat-x scroll 0 0 transparent; […]

Read Article ›

How to Change Country for Google Map While editing Partner Account

TO do this Step1.Find your Coordinates Goto http://www.whatsmygps.com/ Put your address and location details and Get Geo Coordinates Suppose you get lat=1.352083 lang=103.819836 So put them like this( Keep 2 numbers after decimal and Separate them with comma) 1.35,103.81 Step2. Goto ajax/system.php else if(‘googlemap’ == $action) { $ll = strval($_GET[‘ll’]); if(!$ll) $ll = ‘33.75,-118.16′; list($longi, […]

Read Article ›

How to change Admin Menu in Groupon Clone

Note:Before you make any changes , Make sure you backup every file Change Admin Menu: To do this goto include/function/current.php Find this function current_backend() { global $INI; $a = array( ‘/manage/misc/index.php’ => ‘Home’, ‘/manage/team/index.php’ => ‘Deal’, ‘/manage/order/index.php’ => ‘Order’, ‘/manage/coupon/index.php’ => $INI[‘system’][‘couponname’], ‘/manage/user/index.php’ => ‘User’, ‘/manage/partner/index.php’ => ‘Partner’, ‘/manage/market/index.php’ => ‘Marketing’, ‘/manage/category/index.php’ => ‘Category’, ‘/manage/vote/index.php’ […]

Read Article ›

How to Change Clock Format In Deal Page

To do this , You Would need to edit following 2 files. (make sure you create backup before editing any file) 1.include/template/team_view.html 2.static/js/index.js In index.js find this line Twice <code> if (ld > 0) { var html = ‘<li>’ + ld + ‘ Days : ‘ + lh + ‘ : ‘ + lm + […]

Read Article ›

How to Create a Page to Show Past Success Deals

To Do this   Copy code of team/current.php and save it as past.php Find following code   $condition = array( “begin_time <  {$daytime}”, ‘team_type’ => ‘normal’, “end_time >= {$daytime}”, );   And Change it Like   $condition = array( ‘team_type’ => ‘normal’, “end_time < {$daytime}”, ); And Copy code of include/template/team_current.html and save as include/template/team_past.html […]

Read Article ›

How to issue coupons to a Deal

Once a deal is tipped in your groupon clone, Coupons to the deal can be issued to customers. This can be done by following this procedure.     Step2  Step3  

Read Article ›
Page 2 of 212