Search results

  1. Daegaladh

    I can't access to visiolist.com/community/resources/

    Swreg, transaction id U4077789501
  2. Daegaladh

    I can't access to visiolist.com/community/resources/

    An error says: "You do not have permission to view this page or perform this action." But I'm a licensed user :/
  3. Daegaladh

    Show errors on in.php

    Oh right, it works now. And yeah it needs a new hook because i need it to work before the session is created.
  4. Daegaladh

    Show errors on in.php

    Nope, I already tried that Strict Standards: Non-static method base::error() should not be called statically in /sources/in.php on line 140 Fatal error: Using $this when not in object context in /sources/misc/classes.php on line 35 It's an antiproxy mod I made, and yeah it would be useful an...
  5. Daegaladh

    Show errors on in.php

    I made some modifications to in.php and need to show errors in the function gateway($username), i used $this->error() in older versions, but i can't in 1.3
  6. Daegaladh

    [BUG?] Global custom ad zone doesn't work on gateway

    Why? It doesn't affect to gateway page zones, only allows the global zones to show on the gateway , you can still create zones for the gateway that only works there. That's why I used an OR: WHERE type = 'global' OR type = 'in'
  7. Daegaladh

    [BUG?] Global custom ad zone doesn't work on gateway

    Then it isn't "global". Why duplicate the same ads in different zones when I could have only a global one with that simple mod?
  8. Daegaladh

    [BUG?] Global custom ad zone doesn't work on gateway

    Don't worry, I've found the problem and fixed it: In plugins\Ads\in_gateway.php $result = $DB->query("SELECT * FROM {$CONF['sql_prefix']}_osbanners WHERE type = 'in' AND active = 1 ORDER BY RAND()", __FILE__, __LINE__); I've just replaced WHERE type = 'in' with WHERE type = 'global' OR type = 'in'
  9. Daegaladh

    [BUG?] Global custom ad zone doesn't work on gateway

    I've tried everything, but doesn't work. Also tried with {$zone_a} and doesn't work either.
  10. Daegaladh

    [BUG?] Global custom ad zone doesn't work on gateway

    I've created a global custom ad zone to use in both, rankings and gateway, but nothing shows on the gateway page.
  11. Daegaladh

    Custom field display value doesn't work

    Yeah, I've made a new hook and works like a charm, thanks: $TMPL['category_url'] = urlencode($prem_cat_url); eval (PluginManager::getPluginManager ()->pluginHooks ('premium_list')); $TMPL['premium_list_row'] .= base::do_skin('premium_list_row');
  12. Daegaladh

    Custom field display value doesn't work

    Yeah, I've looked into skin.php, and skin_global hook is just after the premium_list code, but does nothing, should I place it before?
  13. Daegaladh

    Custom field display value doesn't work

    Ok, thanks, and sorry, I've realized the fields were blank, since I've copied the sites table from an old backup Another quick question: I want to make a simple plugin to add some checks in premium_list_row, what filename should I use? I've tried skin_global and some others, but doesn't work
  14. Daegaladh

    Custom field display value doesn't work

    I mean the dropdown select fields In my case: Type: Dropdown select Template Tag ( internal value ): {$acf_mode} Template Tag ( display value ): {$acf_mode_display} {$acf_mode} works fine, but {$acf_mode_display} shows nothing
  15. Daegaladh

    Custom field display value doesn't work

    No, I'm talking about display value, {$acf_started_display} in your example
  16. Daegaladh

    Custom field display value doesn't work

    Using {$acf_xxx_display} in table_row.html does nothing
  17. Daegaladh

    Custom field display value doesn't work

    Any help with this?
  18. Daegaladh

    Custom field display value doesn't work

    I'm making a plugin to show different images and stuff depending on custom fields, in ranking_compile_stats, but display value doesn't work. acf_xxx show the correct value, but acf_xxx_display does nothing I'm using 1.3
Top