Search found 195 matches

by clj83
Sat Jul 23, 2016 7:32 pm
Forum: CMS Show Off
Topic: eCommerce Site
Replies: 5
Views: 5539

Re: eCommerce Site

I use EZRouter as an easy way to grab vars from the URL. So, for example, if I want to know the the ids we are dealing with here for this category:

https://www.mountainguidesitaly.com/act ... 6/alpinism

I am sure there are other ways I just happen to have used this method for a long time.
by clj83
Thu May 26, 2016 8:50 am
Forum: CMS Show Off
Topic: eCommerce Site
Replies: 5
Views: 5539

eCommerce Site

https://www.mountainguidesitaly.com/

Built on cmsms 1.11.9

Modules :
FrontEndUsers
ListIt2
ECB
EZRouter
FormBuilder

Custom built shop and Stripe payment module.
by clj83
Sun Jun 29, 2014 8:05 am
Forum: General Discussion
Topic: Phonegap & CMSMS
Replies: 2
Views: 3111

Phonegap & CMSMS

Hi, Has anyone attempted to combine a CMSMS installation with an app created using phonegap? Just thinking out loud currently and searching the web for various multi-platform app solutions. I am an ardent user of CMSMS and so finding a way to combine a CMSMS web project with an app could be quite us...
by clj83
Sun Jun 01, 2014 2:04 pm
Forum: Modules/Add-Ons
Topic: [SOLVED] RSS2HTML how to sort
Replies: 2
Views: 1358

Re: RSS2HTML how to sort

You can create a UDT which uses the PHP date compare function and run this before your foreach loop. UDT: function date_compare($a, $b) { $t1 = strtotime($a->pubdate); $t2 = strtotime($b->pubdate); return $t2 - $t1; } $data = $params['data']; usort($data, 'date_compare'); $smarty->assign('sorted', $...
by clj83
Sat Jan 25, 2014 6:36 pm
Forum: Help Wanted (commercial)
Topic: Image Field In ListIt2 Categories
Replies: 1
Views: 2329

Image Field In ListIt2 Categories

I am seeking a developer to add an 'image upload field' into the ListIt2 Module categories field definition. The field should act in the same way as the 'image upload field' available in the ListIt2 field definitions. Delivery asap.

PM me. Thanks.
by clj83
Sat Jan 25, 2014 1:49 pm
Forum: Modules/Add-Ons
Topic: CGCalendar Sort Upcoming List SOLVED
Replies: 6
Views: 3538

Re: CGCalendar Sort Upcoming List

JohnnyB's solution worked.

Code: Select all

if (!function_exists('do_sort')) {
    function do_sort($a, $b) {
        return $a['event_title'] > $b['event_title'];
    }
}
$data = $params['data'];
usort($data, 'do_sort');
$smarty->assign('sorted', $data);
Thanks everyone for your help.
by clj83
Fri Jan 24, 2014 1:42 pm
Forum: Modules/Add-Ons
Topic: CGCalendar Sort Upcoming List SOLVED
Replies: 6
Views: 3538

CGCalendar Sort Upcoming List SOLVED

I have used this technique successfully many times before but in this case is it not working and I cannot see why? I am trying to sort the array in my upcoming list in the CGCalendar module. I am using the following UDT: if (!function_exists('do_sort')) { function do_sort($a, $b) { return $a->event_...
by clj83
Sat Jan 11, 2014 9:30 am
Forum: CMS Show Off
Topic: Summit Radio Chamonix
Replies: 2
Views: 2882

Summit Radio Chamonix

http://www.summitchx.com/ Web based radio station broadcasting from the French Alps. Responsive design using 940 grid system. Some use of ajax for load optimisation and auto updating content. CMSMS 1.11.9 ---------------------------------------------- Cms Version: 1.11.9 Modules: News: 2.14.1 CGExt...
by clj83
Fri Dec 20, 2013 1:12 pm
Forum: Modules/Add-Ons
Topic: ListIt2 Categories Add Image Field
Replies: 6
Views: 2468

Re: ListIt2 Categories Add Image Field

Hi psy. Thanks for the heads up about the new module. I am keen to get this working so will give it a go when I have a chance. I will let you know how I get on. Might be a while with Chrimbo celebrations and all!
by clj83
Wed Dec 11, 2013 5:10 pm
Forum: Modules/Add-Ons
Topic: ListIt2 Categories Add Image Field
Replies: 6
Views: 2468

Re: ListIt2 Categories Add Image Field

Hi Stikki,

Thought as much, thanks for the reply though.

Chris
by clj83
Wed Dec 11, 2013 11:32 am
Forum: Modules/Add-Ons
Topic: ListIt2 Categories Add Image Field
Replies: 6
Views: 2468

ListIt2 Categories Add Image Field

Does anyone know a simple way to add an image upload field within the ListIt2 add/edit categories type field definition? Presently you have Category Name, Alias, Parent and Description. I appreciate this would probably require a modification to the core of the module, i.e. an additional column in th...
by clj83
Wed Oct 30, 2013 4:41 pm
Forum: Modules/Add-Ons
Topic: XML Made Simple Cache
Replies: 0
Views: 971

XML Made Simple Cache

In the module XML Made Simple is the 'Feed cache timeout' parameter measured in milliseconds?
by clj83
Fri May 10, 2013 10:32 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: Setup 'Server Cache Settings'
Replies: 2
Views: 1507

Re: Setup 'Server Cache Settings'

Thanks for the detailed reply Calguy. That makes much more sense now. I do have files older than '1 day' but none older than 47 hours so that is the only issue as oppose to any problems with the server.
by clj83
Tue May 07, 2013 10:50 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: Setup 'Server Cache Settings'
Replies: 2
Views: 1507

Setup 'Server Cache Settings'

Can someone tell me the correct way to setup the 'Server Cache Settings' function in 'Global Settings' so that my tmp/cache folder is automatically cleared every day. I have set 'Remove cache files that are older than the specified number of days:' to '1' but this doesn't seem to be having any affec...
by clj83
Mon Apr 22, 2013 12:06 pm
Forum: Modules/Add-Ons
Topic: Modify Uploads File FrontEndUsers
Replies: 0
Views: 751

Modify Uploads File FrontEndUsers

As far as I am aware it is not possible for FrontEndUsers to modify the files they upload, for example add a description at a later date. Am I wrong though? Love to hear a solution if I am. Alternatively, would anyone be able to implement this feature? I only need to be able to modify the 'Summary' ...

Go to advanced search