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 answers
Related Questions in DRUPAL-6
- Condtional Timeout Configuration on Centos7 to avoid Gateway Timeout Error
- How to remove or disable " Subject " In Comments Field in Drupal 10
- %20 in URL is now causing ERROR 403 FORBIDDEN Errors
- x264 [error]: baseline profile doesn't support 4:2:2 ,with ffmpeg php
- Drupal 6 and GlobalPayments HPP Integration
- Make img embed script work with drupal ajax
- Docker container cannot connect to the host machine database
- Docker container can't connect to the host machine database
- drupal 6 site setup in local it's redirecting to production site
- How to iterate this.value in javascript
- data in body not getting passed while consuming rest post web service in my custom drupal module
- Need answer for drupal question for upwork test
- Drupal 6 with latest version php
- Drupal form design without using associative arrays
- Drupal 6 site re-indexing not happening
Related Questions in SETTINGS
- how to play a sounds in c# forms?
- Issue with Xcode Target and settings for Apple Watch App
- I am using the bash terminal in VS Code, I am new to coding, and the terminal displays very differently, how do I get them to match?
- optimizing my.cnf for specific use case with MariaDB
- How do I specify a default folder for bash terminal in visual studio code?
- I want to run my own interface that I coded with Python in RoboDK
- Lynx options not saving
- How to control the font size in Kivy settings panel for the menu item name in settings menu list
- Visual Studio Code - is not showing dist folder.......and I am desperate
- C# Cant deploy to Custom setting Path
- A way to directly open 'Cleanup recommendation' settings GUI, from Command prompt (or) powershell
- Django, Settings module not found on YouStable hostings
- Changing color of the console outputs in Pycharm
- How can I change the configuration of a Godot project through code?
- ModuleNotFoundError: No module named " "
Related Questions in DRUPAL-MODULES
- How can I add taxonomy to uploaded files through an api in Drupal 10
- Why are my form fields, built using Drupal Next.js Webforms, not displaying the Help Text?
- drupal version issue drupal 8 to drupal 10
- How to disable cache in my custom contextual filter code in drupal?
- group queries running frequently drupal 8
- Drupal 10 Webform form element key is not editable
- Upgrade the drupal 7.88 to drupal 10.1.1
- How to override page.html.twig in module for my custom page
- Drupal 10 Module Overload
- Drupal 7 to Drupal 9 through web browser upgrade - "files do no exist"
- New to Drupal: Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException
- error installing module HybridAuth and Drupal 8-10
- How to integrate a Nuxt3 SPA into a Drupal site
- Create tabs in drupal with paragraphs and bootstrap tabs
- Drupal 9: How to customise URL for multilingual site?
Related Questions in ADMINISTRATION
- Creating a modal window in product edit page in Shopware6 and saving data to custom table(repository) from a form within the modal window
- Override Shopware 6 Administration Typescript file
- How to apply group policy(GPO) to non-domain users on domain computers?
- Moodle: allow Restricted EMail Domains for manually created users?
- Get all CLI parameters/switches from NSIS installer
- bitbucket add notifications to all repositories
- Sorry, there's been a disconnect Power Platform will start relying on a new cloud service dependency called Power Platform API
- File write issue for user which is in Administrator group in Windows 2019 Server
- Can we disable few commands at databricks cluster/workspace level?
- Change in Win32_Process
- How to develop a package on a Rstudio server with no rights?
- How to get "interval data" out of MuleSoft
- I can't connect Nested VT-x
- A python program that opens a PDF file and copy a specific line from it and after close and rename the PDF with a copied line
- Tab not visible for a profile
Related Questions in ADDTHIS
- AddThis sharing for FB and Twitter stuck in loading
- addthis widget for print page is not working for the first page load
- How to stop the tracking data from Addthis to Google Analytics
- How does the addThis facebook like button work?
- AMP how to resolve issue of Reduce unused JavaScript google core web vitals
- AddThis script only loads once in NextJS
- Uncaught ReferenceError: addthis is not defined while clicking on the share button
- How to hide default addthis share buttons when use costom?
- Strange userAgent issue causing element displaced
- Issue while using up and down arrows in Firefox
- AddThis Inline share buttons <javascript> not shown in webpage
- AddThis displaying Maintenance screen for email sharing
- ALL possible issues of 404 NOT found laravel 6
- Third party script wont load until page refresh
- addthis script not working after initial load
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?
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)
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