Search:

Type: Posts; User: Medianomaly

Page 1 of 9 1 2 3 4

Search: Search took 0.01 seconds; generated 29 minute(s) ago.

  1. Replies
    3
    Views
    1,566

    Re: Onepage website

    I personally haven't used it (but we do have a site coming up that I was planning to try it out on).

    You might be able to glean something from the German forums, which you can use Chrome to...
  2. Replies
    3
    Views
    1,882

    Re: Splitting a form

    Certainly, but not just in Contao itself. I can think of two ways:

    1. Use CSS only to float or inline-block your field wrappers, setting appropriate widths.

    2. Wrap each column in a fieldset...
  3. Re: Easy way to hide the version system message?

    I'm not sure if this is the best way, but one thing you can do is clear out the latest version configuration variable.

    So if you put this in your /system/config/localconfig.php (below the install...
  4. Replies
    3
    Views
    1,549

    Re: 'Select all' on checkbox inputs

    I would probably use a JavaScript solution for this. You could add a button/link/checkbox this way, and then loop through and check all the other boxes when it's clicked. So in other words, not...
  5. Replies
    1
    Views
    1,211

    Re: Forum integration?

    There are a couple that I'm aware of.

    HelpDesk is the most popular:
    https://contao.org/en/extension-list/vi ... 09.en.html

    CFS_Forum:
    https://contao.org/en/extension-list/vi ... 19.en.html
    ...
  6. Replies
    2
    Views
    1,085

    Re: Updating Members records from extensions

    Try using the postLogin hook instead:
    https://contao.org/en/manual/3.0/custom ... #postlogin

    This hook passes the FrontendUser object, so you can probably make your changes directly to it instead...
  7. Re: Add pages with GET parameters to search engine

    Try generating your URLs (the ones that are actually click-able in the content of the page) in your custom module in a "friendly" format, e.g.

    mywebsite.com/product-page.html/items/1
    -or-...
  8. Replies
    3
    Views
    1,653

    Re: clean url in news module

    The only way to do the latter is to use a combination of the "generateFrontendUrl" and "getPageIdFromUrl" hooks to rewrite the URLs on the fly, and then direct them to the appropriate place. I...
  9. Replies
    5
    Views
    2,865

    Re: form conrfirmation and mediabox

    It's progress at least... :)

    But we're doing it wrong.

    The AJAX call is returning the name of the page your supposed to redirect to ("confirmation.html") but we're setting up the script as...
  10. Replies
    2
    Views
    1,758

    Re: How can i tweak the comment form ?

    Hey, try this. Haven't tried it, but the docs say this should work. You've probably found where the form fields are in the template, each field looks something like this:



    <?php echo...
  11. Replies
    7
    Views
    2,694

    Re: faqaccordion

    Most likely there's a missing script call in your page template file. Did you customize the fe_page template? Maybe it got removed at some point.

    Look for a line in the <head> tag like this:
    ...
  12. Replies
    7
    Views
    2,694

    Re: faqaccordion

    There's a error message on page load: "window.addEvent is not a function". That usually means the MooTools core script is not loading. I look in the source and I didn't see a reference to it, so...
  13. Re: [syncCto] Synchronize multiple contao installations

    Hi there,

    Yeah, that's what I meant. Thanks!

    Reading and asking around, that's what I gathered too -- that it isn't really possible to reliably do a "diff" between 2 databases, no matter how.
    ...
  14. Replies
    2
    Views
    1,726

    Re: contao gives me unusable variable

    You're on the right track, but the insert-tags are not meant to be used that way. They're more of a convenience tool for the backend, as that's the only way to insert dynamic data in form fields (you...
  15. Re: [syncCto] Synchronize multiple contao installations

    Thanks for the announcement. I've been following it a little bit and tried out a couple of previous versions. It looks like it would be really useful so I look forward to really digging into it in...
  16. Replies
    8
    Views
    3,106

    Re: Bug with folderurl and Contao 2.11RC2

    Hey,

    I saw RealURL (and another -- TrueURL I believe) in the repsitory and meant to give them a spin.

    Do you know if either are compatible with auto_item? Not even sure it''s possible, but just...
  17. Replies
    5
    Views
    2,865

    Re: form conrfirmation and mediabox

    There's a syntax error in your script (line 266, column 16). The "function" is missing from the onComplete...
  18. Replies
    5
    Views
    3,291

    Re: Form confirmation in Mediabox

    I think I understand -- you want the Alias and CSS ID so you can plug into the JavaScript, correct?

    You actually don't need either to do this. Instead, give any form you want to submit via AJAX a...
  19. Replies
    5
    Views
    2,865

    Re: form conrfirmation and mediabox

    Starting from 2.10, you also need to pass a request token when you submit the form. This is for security.

    The form templates normally include this, but if you're using a custom template or copied...
  20. Replies
    5
    Views
    3,291

    Re: Form confirmation in Mediabox

    I can at least point you in the right direction. Typically it involves 2 parts:

    1. Intercept/stop the form submission using MooTools and submit the form via AJAX instead:...
  21. Replies
    6
    Views
    3,237

    Re: mkdir error during sending e-mail

    Oh yeah BTW,

    I was hesitant to answer your question (because I'm no expert)...

    But, from talking to someone here who is (because I had a similar question before), that is indeed the case --...
  22. Replies
    2
    Views
    1,791

    Re: Heldesk extension installation

    Judging by the URL, you are running on a local development environment?

    Make sure SOAP is installed/enabled on your server -- it's required for the extension catalog to work:...
  23. Replies
    3
    Views
    1,765

    Re: Unable to create new article

    This might be cleared up for you already too, but the "Root Page" isn't really a page that is viewable directly, it groups other pages into their own site/mini-site/sub-site and contains options that...
  24. Re: Image width and height by default (tl_news.php)

    Nice!

    Good to know (that serialize isn't needed), thanks.
  25. Replies
    4
    Views
    2,948

    Re: TinyMCE fullscreen problem

    It looks like the TinyMCE that ships with Contao is a stripped-down version. It does not include all of the plugins that come with the standard package -- including the "fullscreen" plugin.

    Try...
  26. Replies
    2
    Views
    1,302

    Re: Extension problem tx_search

    When you say your search feature no longer works, what happens? Do you get an error? Blank screen? Or do you just get no results?

    Did you double-check that search is enabled in your settings, and...
  27. Replies
    3
    Views
    1,765

    Re: Unable to create new article

    Are you an administrator of your Website (in other words, do you have full permissions)?

    First you need at least one regular page created (done via "Site Structure"). Create a "Website Root" page...
  28. Thread: treeview

    by Medianomaly
    Replies
    1
    Views
    1,164

    Re: treeview

    How do you plan on creating/entering the content for your online course (if you don't want to create every page in the site structure)? Some other module/extension?

    The user guide does it via...
  29. Replies
    2
    Views
    1,750

    Re: Pagination Template issue

    If CSS alone is not sufficient for your needs -- I ran into this before, where I wanted to actually change the HTML of the pagination links. Unfortunately it's hard-coded into the Pagination module....
  30. Re: Image width and height by default (tl_news.php)

    Try serializing it:


    'default' => serialize(array('100', '100', 'crop'));


    For later versions of Contao, the cropping options changed, so it would be something like this:


    'default' =>...
  31. Replies
    1
    Views
    2,254

    Re: Corrupt localconfig.php

    If you open your localconfig.php, what do you see? Does anything look broken or invalid, or does it look like the example in the other thread you linked to (where all the options missing)?

    Can you...
  32. Replies
    8
    Views
    4,468

    Re: Extension manager not loading

    @raulrosa --

    Check out: viewtopic.php?f=6&t=4443#p18129
  33. Replies
    6
    Views
    3,237

    Re: mkdir error during sending e-mail

    Old and inferior to what?

    Just curious...
  34. Replies
    1
    Views
    1,291

    Re: Homepage linkage

    There are a few ways you can do this.

    It may be as simple as setting your home page's alias to "index". I've never seen this officially documented anywhere (I sort of stumbled upon it by...
  35. Re: Uncaught exception 'SoapFault' Extension Manager Fail 2.

    I had the same issue yesterday (same missing file error on both the website and the back-end), but it seems to be working again today.

    Maybe just a temporary issue with the repository?
  36. Replies
    4
    Views
    3,816

    Re: A Little Bug in 0.8.2 Stable

    Ahh -- I see. That makes sense.

    So for future reference, I should just check TL_MODE in my callback -- then I'll know what type of object I'm getting before doing what I need to do... Thanks!
  37. Replies
    4
    Views
    3,816

    Re: A Little Bug in 0.8.2 Stable

    Thanks! The repository wasn't working for me yesterday, so I just now updated.

    I've since changed my implementation (for unrelated reasons), so I don't have anything setup to do a quick test for...
  38. Replies
    4
    Views
    3,816

    A Little Bug in 0.8.2 Stable

    I installed the newest version of Gallery yesterday (0.8.2 build 14).

    I believe I've found a little bug. It occurs in the compile() methods of ModuleGalleryList.php and ModuleGalleryListPage.php....
  39. Replies
    1
    Views
    9,863

    Re: Forum RSS feed

    I was wondering the same thing. Since the forum URL changed, it seems like there's no longer an RSS feed (or if there is, I've been unable to find it either).
  40. Replies
    5
    Views
    6,324

    Re: Looking for new moderators

    I can also help if/where needed -- I can definitely check in at least once a day.

    Did you get an answer to the issue of deleting users that you mentioned here?...
  41. Replies
    6
    Views
    11,697

    Re: Lots of Fake Forum signups

    The forum does a good job of removing spam posts pretty quickly. I don't know if that's automated or manual... But the really annoying thing is that they still show up in the RSS feed.

    It seems...
  42. Re: Subfolder Support in the Templates Folder!

    I think it has to do with performance. It's less intensive to search a single folder than to crawl an entire folder tree. Especially when you need to do it on every page load (although a caching...
  43. Re: Subfolder Support in the Templates Folder!

    Just keep in mind that is very old. It probably doesn't work in new versions (at least without breaking theme support).

    It's also ill-advised because it requires hacking the core.

    And it's also...
  44. Replies
    2
    Views
    1,349

    Re: 'Group assignment' not displayed

    Did you add the module to the language file?

    In your module's language folder, there should be a "modules.php" file where you define the label and description of your custom module. An example...
  45. Replies
    0
    Views
    2,103

    Drag and Drop Sorting in the Backend

    Just out of curiosity, when in a back-end list view, is it possible to enable drag-and-drop sorting for a parent table (or a table without a parent)?

    I've been playing around with it -- adding the...
  46. Replies
    3
    Views
    1,966

    Re: Site don't render in IE9

    Hi,

    It looks fine on my IE9 too, actually -- identical to Firefox.

    The only way I am able to reproduce your screenshot is if I set it to "Quirks Mode".

    Try pressing "F12" in IE9 to bring up...
  47. Re: Catalog list only display a certain taxonomy item?

    Yes, I believe you can. It's been a while, but I think I've done this before. The secret is the "condition" field when you create the catalog list module.

    There are 3 important things to this:
    1....
  48. Re: Member Select Menu Field and Option Groups

    Hey, Thanks for the hand.

    I can get the options callback to work fine on both sides, as long as it's a flat list (like in your example). But I was asked to group those options into "<optgroup>"...
  49. Member Select Menu Field and Option Groups

    Hi all,

    I am stuck on this small thing...

    I've created a custom member field. It's a select menu that pulls from the database. I'm using the options_callback to do this.

    In the front-end, I...
  50. Re: Form Default Values not working with inserttags

    No idea...

    I actually don't have any sites in 2.10. I skipped it because of that whole "request token" controversy -- was scared of the support calls. :)

    I just tried it in 2.11 (e.g....
  51. Re: Form Default Values not working with inserttags

    What version is that site in? I'll try it over here.

    I just did that like two days ago and it was working -- that one was 2.11.2.

    You sure it isn't an extension or something?
  52. Replies
    4
    Views
    4,012

    Re: Output absolute paths

    Hmm... If you need images too, I'm not sure what the best way is to do that.

    There's another hook (getImage), that works similar to the one used in the code I posted, but I don't know if that...
  53. Re: Can I install with a populated MySQL database

    I think as a general rule, all of Contao's tables are prefixed "tl_". Some extensions may use tables without the prefix, but Contao won't modify them unless told to do so.

    It's just the tables...
  54. Replies
    4
    Views
    4,012

    Re: Output absolute paths

    One thing you can do is use the "generateFrontendUrl" hook. This hook is called any time a URL is generated by the system (of course if you have any URLs that are hard-coded -- maybe in a WYSIWYG box...
  55. Re: [template_override] Custom module templates

    Surprised you haven't gotten any replies yet...

    Very cool extension. Something I've been wanting to have, and was about to write my own, so thanks!

    Bonus points for content elements, too. Never...
  56. Replies
    4
    Views
    1,887

    Re: mod_iso_productlist

    Have u seen this yet?
    viewtopic.php?f=21&t=4102

    In theory it's supposed to work for all modules, so give it a shot...
  57. Re: Custom Contao content types? Looking for a better way...

    Yes, there are a lot of options that I think would be a good fit. (Really what you are describing is central to the Contao framework, by the way -- storing and retrieving records, list/detail view,...
  58. Replies
    2
    Views
    1,551

    Re: Cleaning Query Strings in Urls

    Awesome, thanks. Simple indeed.
  59. Replies
    2
    Views
    1,551

    Cleaning Query Strings in Urls

    Hey, if I have a module that lists a bunch of items, but also has a set of fields to filter the listing, when a user chooses an option for one of the filters, the resulting Url looks like this...
    ...
  60. Replies
    14
    Views
    7,701

    Re: catalog and breadcumbs

    Yeah -- sorry for throwing you off track a bit. I wrote that in a rush and forgot that you either need to import 'Database', or extend a Contao class if were you doing it the hooks way. I do that a...
Results 1 to 60 of 493
Page 1 of 9 1 2 3 4