I need to define the order of the $links output now I have 2 modules displaying its contents on that: comments and addthis where can I define the order of the and modify it's settings for nodes... even customize a little bit the display?
drupal 6 : node.tpl.php $links variable, where to configure the content?
1.3k Views Asked by PartySoft At
1
There are 1 best solutions below
Related Questions in DRUPAL-6
- Why are clean URLs not working when redirecting to https?
- How to configure Apache to serve Drupal 6 Multisite configuration
- Writing an MySql query to return a list forms
- Any gated content module in drupal 7
- Running Drupal 6 cron from shell won't work
- how to delete nodes after the "to date" end in drupal?
- Custom Drupal 6 Module with multiple pages
- Fix Drupal 6 menu urls on test server
- Drupal custom login form creation
- select command not working in php/mysql
- difference between print drupal_get_form and return drupal_get_form
- Drupal 6.29 Jquery Update et. don't work
- Drupal: What is wrong with my base_path to my libraries folder
- Query optimization in PostgreSQL?
- How to delete custom variable of google analytics
Related Questions in SETTINGS
- Media files end up in in a pycharm subdirectory when uploading
- Android Studio (Intellij) keeps adding second line to modules.xml
- Visual Studio 2013 CE keeps overwriting Task list
- Vim: last word on user specific settings?
- C# - Settings.Default.Save() is very slow
- Ivy Settings - Changing the way conflicts are resolved
- How to check if drop down menu of ActionBar is active
- how to permanently save options(dplyr.width = Inf) in Rstudio?
- change the settings file items in .Net console application
- Eclipse error: "Path must include project and resource name" on invoking clean
- Error when going into new activity Android
- Railo cannot add event gateway under service in web admin
- Settings are not stored correctly
- drupal issue with install profile and domain module?
- How to change settings from within my app with code in Android
Related Questions in DRUPAL-MODULES
- Relating content in drupal
- How can I solve missing bundle property
- Drupal 7 user registration custom
- Static generator in Drupal 7 was error
- Drupal - Edit Views Selective Filters module to rename the option tag
- Extending drupal webform to export data remotely
- How to export webform data in mysql table?
- Drupal Feed Import module uninstall issue
- On using CSRF Token in Routing file of custom module throws error?
- Any gated content module in drupal 7
- How to integrate 2c2p payment api in drupal module?
- Drupal run update.php shown in Zip archive support missing
- Display unique node using views in drupal
- views result not showing to authenticated users
- How to wrap field in custom markup?
Related Questions in ADMINISTRATION
- How to remove "Remote desktop disconnected" window and close mstsc.exe
- How to retrive ci management url in SonarQube?
- How to disable Network in Windows Server 2008
- node-huxley fails to start on elastic bamboo w/ubuntu
- Getting essential computer info for network admins
- How to start/stop Websphere Message Broker using Java?
- Configure IIS for ASP.NET MVC
- Programmatically administer Glassfish domain
- Microsoft.Web.Administration for IIS 8 does not display all sites
- Managing multiple user base in same database table
- Admin link/url to Media Library in Folder Path
- Oracle 10g Import Export question
- codeigniter admin template
- drupal 6 : node.tpl.php $links variable, where to configure the content?
- All users being logged in as System Account
Related Questions in ADDTHIS
- AddThis e.slice is not a function
- addThis smart api layer add a link
- Increase AddThis icon size
- How to Remove the Facebook share Button from ADDTHIS API
- Difference between addthis_toolbox, addthis_sharing_toolbox, addthis_inline_share_toolbox?
- Addthis - 2 different configurations on the same page
- Changing the AddThis shared URL in a jQuery mobile application
- Customizing Addthis Button
- Addthis button works with AngularJs
- Automatically shortening URL for Email/Facebook shares with Bitly through AddThis API
- AddThis plugin showing cross domain error
- addthis share button don't display images
- AddThis + Masonry cause overlap
- AddThis buttons
- ”//…” in <script> tag is interpreted as “file://” in electron
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Edit: links weights can be changed using http://drupal.org/project/linkweights
I am not sure there is any kind of UI for
reordering/customizing the node links. However you can accomplish this in a couple of ways:Create a custom module that implements
hook_link_alter()and perform the customizations.You can go even further and create an administration page that will get all the links, output them in a sortable table (a la /admin/build/block) and save the order in a variable. Ah, your module needs to have the highest weight in order to catch all the other links.
--OR--
Modify your theme's template.php and add the mytheme_preprocess_node() function or edit it or phptemplate_preprocess_node() if it exists
To reorder see http://drupal.org/node/44435#comment-861385