how to make module in joomla 2.5 [closed] - joomla

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i am making a joomla website i am very new in joomla so finding some problem during work.
i have done slider for my joomla 2.5 template now i have a problem i have to make three boxes which i have already made in html css link given below
http://uttaraclick.com/malta/
can any one tell me what is the best solution for this problem , i don't know how the module works but i read that it possible with the customized module.
Please help
and i have already read this http://docs.joomla.org/Developing_a_Model-View-Controller_(MVC)_Component_for_Joomla!2.5_-_Part_01
and next also

Personally I think the best way would be to create 3 custom module positions for your template, then use 3 Custom HTML modules, allowing you to type in your content and so on.
This will also allow you to assign the module to the Homepage only.
For more information on creating custom module positions, read this:
http://docs.joomla.org/How_do_you_add_a_new_module_position%3F
To generate a basic module to save you time, you could try this:
http://agjoomla.com/en/tools/mvc-module-generator.html
Make sure you select the Joomla 1.6 version and once downloaded, you open the XML file and change version="1.6" to version="2.5"
As for the design, nothing will have to be different. You can assign the boxes a class, then give that class the same styling in the css file.
Hope this helps.

Related

Comments with votes and "best answers" [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like to make something like question and answers sites. I need votes and best answer on the comments. I've already done from scratch something but I don't like the appearence and I am looking for a ready template.
I found this one here but it is on facebook. I just like the template and the way it show the best answer.
I don't want to use something like disqus. I want to store comments on my own database.
Do you know any html&js template for this?
For ASP.NET, here is an open source project called Stacked:
https://code.google.com/p/stacked/
There is an example of building a star rating system in ASP.NET MVC
and jQuery which you might use for inspiration or code ideas -
http://dotnet.dzone.com/news/building-star-rating-system
For C# there is an open source project on GitHub (which may no
longer be active) : https://github.com/ripper234/Stack-Underflow/
It may not be supported any longer
Here is a stackoverflow clone that someone built in ASP.NET MVC for
practice and documented his steps:
http://ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/
Here is one for PHP called Question2Answer:
http://www.question2answer.org/
Another for PHP called Qwench :
http://anantgarg.com/2009/12/09/php-stackoverflow-clone/
And here is one for PHP ZendFramework:
http://sourceforge.net/projects/phpancake/
If using wordpress, there is a plugin called Q&A:
http://premium.wpmudev.org/project/qa-wordpress-questions-and-answers-plugin/
For Drupal, following this tutorial called 'building a stack
overflow clone with Drupal' :
http://engineeredweb.com/blog/09/11/building-stack-overflow-clone-drupal-part-1/
Drupal also has an answers module: http://drupal.org/project/answers
For Java there is AnswerHub: http://answerhub.com/
And for Javascript: https://github.com/fuadmuhammad/kerjakelompok/

how to create the store or store view in magento using the script [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'd like to create a new store or store view in Magento.
Can any one suggest me how to do it without using Magento admin Gui?
Means to create store using the script.
Try using Magento API with SOAP or API REST.
You should look better, first hit while googling "magento create store programmatically":
How to create a site,store and view programatically in magento
programatically-in-magento
There is your answer.

How can I switch language in google play? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm doing some statistical analysis about Google Play, comparing different languages. Every time I visit the site (http://play.google.com/store), it always opens in my language. I want to change the language displayed on the page, and also change the apps shown to a different country's market.
Any ideas on how to accomplish this?
Answer below the dotted line below is the original that's now outdated.
Here is the latest information ( Thank you #deadfish ):
add &hl=<language> like &hl=pl or &hl=en
example:
https://play.google.com/store/apps/details?id=com.example.xxx&hl=en or https://play.google.com/store/apps/details?id=com.example.xxx&hl=pl
All available languages and abbreviations can be looked up here:
https://support.google.com/googleplay/android-developer/table/4419860?hl=en
......................................................................
To change the actual local market:
Basically the market is determined automatically based on your IP. You can change some local country settings from your Gmail account settings but still IP of the country you're browsing from is more important. To go around it you'd have to Proxy-cheat. Check out some ways/sites:
http://www.affilorama.com/forum/market-research/how-to-change-country-search-settings-in-google-t4160.html
To do it from an Android phone you'd need to find an app. I don't have my Droid anymore but give this a try:
http://forum.xda-developers.com/showthread.php?t=694720

how to create custom modules in joomla? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Here am created a small project with my own framework in php, but i need to convert that php project to joomla module.
Check this out:
http://developer.joomla.org/getting-started.html
http://docs.joomla.org/Tutorial:Creating_a_Hello_World_Module_for_Joomla_1.5
(And next time google a bit first.)
Create your project to a Joomla module? You do not seem to be familiar with Joomlas naming. You are probably looking into converting it into a component, and not just a module. A module is a display-part. Components are the bigger extension mechanisms. But I can’t really tell without more info …
The Joomla docs for developers include several guides, descriptions and tutorials.
For Modules. Amongst them:
Creating a Hello World Module for Joomla 1.5
Creating a simple module
For Components.
As you seem to be familiar with PHP and frameworks, just peeking into existing modules and components may be just as effective (at first).

Help! Joomla Templates! [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to make this design: http://www.stephburningham.com/lmg/
into a joomla template but I've never made a joomla template before and the tutorials are so complex!
Can anyone start me off?
Thanks a lot,
Steph
First thing would be to break the page down into areas of content, such as leftnav, header, footer, maincontent. Take the HTML and remove the content, leaving only the structure. Take one of the existing templates (Beez), copy it and rename it (and in the template.xml file).
Add your new module positions to the XML file and then start populating it.
You might be best off to take a commericial theme like those available at Rocket Theme and adapting your design into it (they have a good high performance free theme). This way you get the benefits of your look and feel, but in a first class theme that will cause you very little compatibility issues across browsers and offer substantial features out of the box.
There's no other way than reading Joomla's tutorials and documentation on the web. And after reading some tutorials about templates, learn the differences between Modules, Components and plugins.

Resources