Search results

  1. Basti

    Open Link in a new window

    Where ever you want the links to change, since u havent told that a few examples could stats.html, table_top_row.html, table_row.html to change the redirect url, edit this line in sources/user_cpl.php header("refresh:3; '{$TMPL['list_url']}/index.php?a=user_cpl'"); This change...
  2. Basti

    [ Stats page] Title, Meta Description

    just switch those 2 tag or combine them into one $TMPL['header'] = "{$TMPL['title']} - {$TMPL['category']}";
  3. Basti

    Current Navigation Links

    not tested but should work, make current link bold var ucp_nav_link = window.location.href; $("#user_cp_main_menu li a").each(function() { if(this.href == ucp_nav_link) { $(this).parent().siblings().children().removeClass('ucp_highlight')...
  4. Basti

    [ Stats page] Title, Meta Description

    Ah i missed one line below what you already have, put $TMPL['header'] .= " - {$TMPL['title']}";
  5. Basti

    Voting period settings for a week

    your welcome
  6. Basti

    Voting period settings for a week

    Check your html files, remember youve put up template tags to display hits in. And at that time it was the tag for daily votes, not weekly. To make it short, update those tags to read "weekly" instead of "daily"
  7. Basti

    Vote Manager

    Step 1 is missing, change to sources/admin.php have a closer look, line 105
  8. Basti

    Twitter

    No issues with that on test site, what are your twitter settings? tweet members stats page or member url?
  9. Basti

    [ Stats page] Title, Meta Description

    Make a new plugin in a php file called "details_build_page.php" put the following to change stats to the member category $TMPL['header'] = $TMPL['category'];
  10. Basti

    Voting period settings for a week

    Its all in the admin settings. Ranking period. just change to weekly and 2 lines below you see a dropdown menu which says "Average", you will need to set that to the other option available
  11. Basti

    [ Stats page] Title, Meta Description

    Look in wrapper.html , on the tmpl tag there for meta description, use lenght=160 just like you pointed out for the normal description tag. It should work just as fine with every tag which displays text
  12. Basti

    A couple quick disable questions...

    Here is another trick to hide it, using jquery. Then you keep the plugin hook for links bu still have the link removed and dont need to update the core on each upgrade In wrapper.html find $(function() { On a new line below add this $('#user_cp_main_menu li').eq(6).hide(); This is telling jquery...
  13. Basti

    Current Navigation Links

    not the fault of this tweak, check that in admin settings you list url does not end with trailing slash ( / ), thats important. Then click go to the menu manager and update the links if needed
  14. Basti

    Facebook

    admin settings ;) simply disable fb comments
  15. Basti

    A couple quick disable questions...

    Make sure to copy the file before into parabola child folder and then edit from there. This helps in updating skins, as you can savely overwrite the parent skin
  16. Basti

    button vote

    Works good, must be a issue of your browser P.s you can delete member "test" , its my one to test this
  17. Basti

    Contact Form - Beta

    Yes, your file is not up to date, redownload the plugin. Look at line 1 , thats how your file has to look and it will work
  18. Basti

    Current Navigation Links

    Use a mix of jquery and css 1) Just some basic now, for the ease of things, we give this new highlight the same style as when you hover over a menu item open user.css and add the following #navigation li a.highlight { color: #2b567f; background: #ddd url(img/bg9.png) bottom left...
  19. Basti

    VisioList 0.9

    What about the "plugins" forums ;) There are all the plugins, and please if you have questions start a proper topic in the support forums
  20. Basti

    Jquery + Stats problem

    <script src="modern-ticker/js/jquery-1.9.0.min.js" type="text/javascript"></script> remove that, we automatical load jquery core file already. But its version 1.4.4 , we need to update that to on a sidenote :). First test if all works correctly ( overall stats + modern ticker ) if you remove...
Top