Search found 12 matches
- Tue Aug 03, 2010 9:16 am
- Forum: [locked] CMSMS MLE fork
- Topic: Problem with switching between the Languages
- Replies: 1
- Views: 3059
Problem with switching between the Languages
Good morning Everybody, I have a small issue with switching between languages. If I don't check the box Use root_url for Default page (there is a problem on few php-cgi installations): The urls in the menu and the hole site stay with the old language. What is the problem with my php-cgi installa...
- Sat Feb 06, 2010 6:48 pm
- Forum: Developers Discussion
- Topic: ShopMadeSimple new development is comming
- Replies: 8
- Views: 6253
Re: ShopMadeSimple new development is comming
Guys , Thanks for the review and the comments. I wouldn't say I hacked the core just by adding a new button on the menu. No one including dulketown will get confused with my code if the modules open more neatly with their separate module menu. I thing as developer community we should consider t...
- Tue Feb 02, 2010 10:34 pm
- Forum: Developers Discussion
- Topic: ShopMadeSimple new development is comming
- Replies: 8
- Views: 6253
Re: ShopMadeSimple new development is comming
Hi guys , I'd like to announce the new development and bug fixes for Shop Made Simple, Payment Made Simple ,Cart Made Simple are ready for download. I have modified CMSMS a little bit to accommodate this nice shopping cart system formed as a group button called E-Commerce .(see screen shots at ...
- Sat Dec 26, 2009 7:17 pm
- Forum: Developers Discussion
- Topic: ShopMadeSimple new development is comming
- Replies: 8
- Views: 6253
Re: ShopMadeSimple new development is comming
Hi guys , Here is another fix for SMS. When a category has been created and inside it you create another subcategory and post products , the subcategory is not shown when you enter the main category. It says 0 products found, it should display any subcategories and products at the same time Examp...
- Sat Dec 26, 2009 2:11 am
- Forum: Developers Discussion
- Topic: ShopMadeSimple new development is comming
- Replies: 8
- Views: 6253
Re: ShopMadeSimple new development is comming
Hi Duketown, I really appreciate all of the work you guys have done to this module. Yes I am using your last revision 0.2.6. Well exif_imagetype is a nice function , but it appears that most of the PHP compilations does not have that included , so it gives an error when upload image. On the ...
- Thu Dec 24, 2009 8:10 pm
- Forum: Developers Discussion
- Topic: ShopMadeSimple new development is comming
- Replies: 8
- Views: 6253
ShopMadeSimple new development is comming
Dear Users I will try to fix the bugs in ShopMadeSimple. I need the module for a client of mine. Expect updates soon. I am not a senior programmer. so don't expect the best possible solution, but it will work. I will post the new code here. Please feel free to improve it as best as you can and...
- Thu Dec 24, 2009 7:58 pm
- Forum: Developers Discussion
- Topic: function not found exif_imagetype() [Solved]
- Replies: 2
- Views: 4872
Re: function not found exif_imagetype() [Solved]
Here is the work around for this function Replace the switch on line 207 in ShopMadeSimple.php switch(exif_imagetype($sourcedir.'/'.$image)) ....... With : list($width, $height, $type, $attr) = getimagesize($sourcedir.'/'.$image); // Type of image will be deturmine //1 = GIF 5 = PSD 9 = JPC 13 ...
- Mon Dec 21, 2009 6:21 am
- Forum: Modules/Add-Ons
- Topic: Announcement: New module PayPalButtonMaker
- Replies: 4
- Views: 2732
Re: Announcement: New module PayPalButtonMaker
Hey Jeremy This is a great module! I am using the Cataloger and your cool module as an e-commerce tool I have one question though. How do I send the price and item desc to the button ? I think it should pass something like that : {cms_module module=PayPalButtonMaker Mode="default" price=...
- Mon Dec 14, 2009 5:14 am
- Forum: Modules/Add-Ons
- Topic: CGFeedback - jump to comment after submit
- Replies: 1
- Views: 1199
Re: CGFeedback - jump to comment after submit
Code: Select all
<div class="commentform">
{CGFeedback key1="CGBlog" key2=$entry->id action="default" policy="session"}
</div>
- Sat Jul 11, 2009 6:38 pm
- Forum: Modules/Add-Ons
- Topic: Printing pages where content is output from a module
- Replies: 1
- Views: 1284
Re: Printing pages where content is output from a module
Hi IanB, Here is your solution. http://winfolinx.com/tips/howto/various/printready.htm It is a simple javascript that do the job. You may difine the print area by adding div print tags. <a href="javascript:void(printSpecial())">Print this Page</a> <div id="printReady"> <p>Hell...
- Wed Jun 10, 2009 5:17 pm
- Forum: Tips and Tricks
- Topic: FrontEndUsers to NMS (via SelfRegistration)
- Replies: 14
- Views: 12393
Re: FrontEndUsers to NMS (via SelfRegistration)
Hi Ted , Thanks a lot for sharing the code with the community. You really helped me lot. I was banging my head for couple of days how to disable the user if they decide to change their info and uncheck the box. I have the following code that does not work for some reason. I hope you have t...
- Mon May 04, 2009 8:15 pm
- Forum: Modules/Add-Ons
- Topic: Blogs Module - Short Category not showing
- Replies: 5
- Views: 1926
Re: Blogs Module - Short Category not showing
Hi guys , I have been puzzled also how to make that work and here is the solution. Maybe it is not the right one , but at least works for me. Here is the action.showshortcategory.php which I have changed. I have got it from action.showcategory.php and then changed the last line which is ...