Page 1 of 1

Test for specific use

Posted: Mar 26, 2012 9:18 pm
by skoegler
Is there an option to try the component and get a refund if it does not do specifically what is needed? I would be happy to try a demo backend/frontend, but there doesn't seem to be one available.

Re: Test for specific use

Posted: Mar 26, 2012 10:00 pm
by Lisa
No, it doesn't work this way.

Our module strictly corresponds to the features described on the site.

If you still have any questions or have doubt if the module can serve your specific needs,
please, ask your question BEFORE the purchase.

We will give you a sufficient answer whether the module can work or cannot work in your situation.

Re: Test for specific use

Posted: Jul 12, 2012 9:02 pm
by johnnydement
I want to reproduce something similar to rocketthemes Mod_custom HTML, but obviously not being an article but real module working on it's own ;)

Is it possible and easy?

Image

Regards

Re: Test for specific use

Posted: Jul 12, 2012 10:41 pm
by Lisa
Our module works with Joomla articles.
And we cannot see your image to give our opinion.

Re: Test for specific use

Posted: Jul 12, 2012 10:45 pm
by johnnydement
May require being logged ;)

I know it works with joomla articles, that's wat I seek, problem with rt templates is they are really pretty, but most modules are custom HTML to show what they want (mimic an awesome ideal featured, latest, module...), unfortunatelly, although on a low updating page that could wok, it requires too much manpower for a frequen updated site, so you must rely in real modules that don't look that nice ;)

uploading :)
fp-maintop-a-roksprocket-tabs.jpg
you can see it live here: http://demo.rockettheme.com/?template=ximenia

Re: Replace custom HTML modules

Posted: Jul 13, 2012 9:50 am
by Admin
Now I understand what you mean.

Our module uses templates for various design. You can use our ready templates, but it also means that you can create and use your own templates as well.
In your case all job is almost done. The code and design are ready, and you just need to copy that in your module template php file and replace the fields (image, title, text) with template variables.

Code of your example looks this way:

Code: Select all

<div class="rt-floatleft nomarginright fronttabs">

  <div class="rt-image rt-floatleft">
    <img src="/joomla25/ximenia/images/rocketlauncher/frontpage/roksprocket-tabs/maintop-1.jpg" alt="image" width="215" height="147"/>
    <span class="cornertab"></span>
    <span class="image-description">Five layouts: Mosaic, Features, Headlines, Lists or Tabs.</span>
    <span class="corner-symbol">+</span>
  </div>
  <div class="clear"></div>
  <div class="rt-center largemarginright">
    <h3 class="largemargintop nomarginbottom">Flexible Layouts</h3>
  </div>

</div>  
in our module template it is:

Code: Select all

<div class="rt-floatleft nomarginright fronttabs">

  <div class="rt-image rt-floatleft">
    <?php echo $item->image; ?>
    <span class="cornertab"></span>
    <span class="image-description"><?php echo $item->text; ?></span>
    <span class="corner-symbol">+</span>
  </div>
  <div class="clear"></div>
  <div class="rt-center largemarginright">
    <h3 class="largemargintop nomarginbottom"><?php echo $item->title; ?></h3>
  </div>

</div>
So, the solution to your task is possible.

Re: Test for specific use

Posted: Jul 13, 2012 1:22 pm
by johnnydement
Awesome then, I just bough the extension, now how I do get access to support forums and so?

Regards