Jump to content
TNG Community

Search the Community

Showing results for tags 'idea'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • TNG Specific
    • Announcements
    • Questions and Answers
    • TNG Modifications
    • Installation and Configuration
    • New Ideas and Suggestions
    • Code Discussion
    • Templates or Design Questions
    • CMS Integrations
    • TNG Wiki
    • Requests for New Mods
  • Community
    • Member Webpages
    • Genealogy
    • Chit Chat
    • Questions and Answers
    • Offers And Requests

Blogs

  • Community News
  • TNG News

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

  1. Does TNG track adds/changes/deletes? Currently, the People section of the What's New page just gives you a list of the people who have been edited recently. I'd like that to show what was changed as well. I glanced at the database in phpMyAdmin, but don't think the structure has a change tracking mechanism right now. It would involve at least one other table, which could track actual changed data by field, or maybe a note on what was changed, which the user would be prompted to enter when saving out of editperson.php. Then the What's New query could be modified to check the change tracking table for entries. Any thoughts about this?
  2. Not sure this is a new idea, but i am struggling with how to register the country and region in places. I am not sure what is common. One can use the local language country name e.g. Nederland(Netherlands), or the 2 and 3 iso codes like NL and NLD. But it would be nice using the full local country name (Nederland). And having a multi language site, e.g. with German and English, the country should show as Niederlande and Netherlands (in places etc.). Kind Regards, Sandor https://vanseeventer.nl
  3. Between the upgrades to WordPress as well as the TNG core, the old TNG WordPress plugin has become completely useless. This forced me to use an alternate method for integration. I chose the Kloosterman method which worked great. Unfortunately, this left me without Single Sign-In capability so that only site members would have access to the genealogy section, TNG. Even if I left the TNG directory out of all the site's navigation and links and used ROBOTS.TXT to prevent it being indexed by searchbots (at least the compliant, reputable ones,) it would still be accessible by any user (logged in or not) that entered the TNG directory address directly or had a link or bookmark that led to it. The imperfect workaround I went with was to use the .HTACCESS file to check the already existing WordPress cookie to see if a user is logged in. This applies only when they try to visit that directory or any of its subdirectories or files. If they go there and they're not logged in, they get redirected to the login page. (It's an imperfect method, because it's still hackable, but it's the best I could come up with on the spot.) <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_URI} ^.*tng/.* RewriteCond %{HTTP_COOKIE} !^.*wordpress_logged_in.*$ [NC] RewriteRule . /wp-login.php?redirect_to=%{REQUEST_URI} [R,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> INSTRUCTIONS (Use at your own risk. I am will not be held responsible for any damage or losses to you or your site for trying this nor is it my responsibility to help you fix things if they break. I'm sharing a method that I use that works for me. I think it will work for most others as well, but I can't guarantee that.) Copy the code above, and be sure to change the TNG folder name to the one you use on your site. Open your own HTACCESS file, and find the basic WordPress code that looks like this: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Overwrite the part between BEGIN and END WORDPRESS with the new, edited code. Save your changes, and upload the new file back to the server. ADDITIONAL ACTIONS These are additional actions I went with for my site. I hope they help you as well. I turned REQUIRE LOGIN off so that users only had to log in to the membership section of the site once to see the full genealogy section. This keeps them from being able to edit the records. They can only suggest changes. This also prevents hackers that bypass my method above from being able to easily make changes without a login. I removed all LOGIN and ADMINISTRATION links from the TNG pages. Now I have to use my bookmarked links to get to the admin.php and login.php pages.
  4. Renze

    Some Ideas

    Some ideas may have been mentioned once. Add new person, just the possibility to mention the source. And, if necessary, add notes. Now you must save before you can add this. Possibility of using Openstreetmap.org instead of google maps. Exporting textual Descendants in word or pdf file. With the addition of the sources.
  5. Would it be possible to have a "filter" on the geocoding page so that we could specify "wildcards" for places that are not to be processed? For instance I have a "country" 'At Sea' for those born/died/buried on a ship in international waters I also have Places for various Armed forces broken down by Regiment etc. but with for instance 'British Army' as the Country and the number of failures tends to use up my daily quota fairly quickly
  6. When I GEOCODE a new place name, the latitude generally returns 7-digits, while the longitude field too often auto-fills to 13-digits past the decimal. This is the result for Winnemucca, Humboldt, Nevada, USA when simply geocoding one place at a time Below is the result of bulk geocoding which appears to limit the length to 7-digits for both LAT and LON. Still, that is more than necessary (see Jay's accuracy implications farther below): In 2015 I asked for assistance on this topic and was offered a couple of options. In his reply, Jay offered that the the practical implication of the digits gives these measures of precision by decimal length: 6= 10 centimeters =Your footprint, if you were standing on the toes of one foot. 7= 1.0 centimeter =A watermelon seed. 8= 1.0 millimeter =The width of paperclip wire. 9= 0.1 millimeter =The width of a strand of hair. Two suggestions that I did receive fixed the problem after the fact; I was hoping that the solution would be proactive - e.g., limit the data field to 6 decimal digits. Currently I address the excess digits every so often if I don't catch the excess immediately, while wishing I did not have to do so. I recommend that a standard be set for those fields. Perhaps a start is to simply set the field length to 6 past the decimal: xxx.dddddd. Regis www.CarrFamilyTree.com TNG v11
  7. I have a custom event for "Find a grave" where I record the unique 6-7 digit code they allocate to a grave. I have tested embedding this as a hyperlink in my Detail field :- <a href="http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=115799270" target="_blank">115799270</a> which works nicely but has two drawbacks :- 1. It is a bit long winded to get entered (I cut and paste the previous constructed link and then overwrite the number) 2. It risks being invalidated by the target site changing URL (domain OR parameters) What do others do? Is there scope for TNG supporting a "hyperlink" type field for this and others (Facebook is another where I record a unique key) so that we can define once the link required and not have to enter HTML repeatedly into our detail fields (a sort of "macro" capability) Mike
  8. There's an admin function to enforce all uppercase on last names. But there's an equal case for enforcing Initial Caps on them. "Barrett" not "BARRETT" Please could you add this option to the Admin function Darrin? I imagine it working something like this: Case setting for last Names: Dropdown Values = "None", "ALL", "Initial"
  9. Hi All, I would love to see an immigration mod similar to the wonderful Census International Mod. The Immigration mod would include the name of the ship, departure place and date and the arrival place and date. I would then love to see a feature like the census mod where you can list family members that are passengers that you can link back to their ID. I hope that makes sense. Regards, Smithy
  10. Hi, Is there a feature/method in TNG that can filter out my mothers all cousins? I want to know how many she got and have them in a tree form maybe, or a list. Is it possibile?
  11. Merv

    Sticky Menu

    Hi All, Does anyone have any thoughts on implementing the option of sticky menus with TNG... https://www.smashingmagazine.com/2012/09/sticky-menus-are-quicker-to-navigate/ Our mobile sites already have them, and according to the above article, users prefer them because it makes a website easier to navigate. It may not be possible with all templates, but as an example, template 8 could work like this... This may be one way of how it could be implemented? http://blog.teamtreehouse.com/create-sticky-navigation http://codepen.io/Guilh/pen/JLKbn There are also sticky plugins and a CSS variable “position: sticky” that has been on the drawing board for a few years but still not recognised by all browsers
  12. My idea is to add a possibility of finding shortest path between two individuals which don't have any common ancestor. It is exciting to discover that your wife is related to husband of a sister of your grandpa... Such functionality exists in GeneWeb (Gnu licensed) - maybe it could be incorporated in TNG (see printscreen) Cheers, mjaro
  13. Hello all, Suppose you don't have a side-scrolling mouse or pad. Also suppose that you open a very wide and high descendants tree at a TNG site. Much wider and higher than your browser window. To see the rightmost top part of that tree, you first have to scroll all the way to the bottom of the tree to find the horizontal scroll bar. Then you have to scroll to the right and then scroll all the way up again. Maybe to find that you scrolled too far to the right... I have found a way to place scroll bars outside of the visible part of the tree, and adapt the visible part to the size of the browser window. You can see it in action here: (Make your browser only 1200-1300 pixels wide for a good "test environment") https://xerxx.se/descend.php?personID=I36&tree=tredNr2&display=standard&generations=8 If you scroll down with the right-most scroll bar, you will find that the box where the tree is displayed is a bit smaller than your browser window. And you will find a horizontal scroll bar below the box. So now you can scroll right-left without having to go to the bottom of the tree first. So far so good. However! If you hover any of the "more" arrows below the person boxes, the pop-up appears. But... That is only if you have not scrolled the tree in any direction: When you use the scroll bars, the pop-ups lose their orientation and appears at places you don't expect - often outside the visible part. (And that's even worse than having to scroll to the bottom.) So: Is there some coder out there who knows what to do and where, to give the correct coordinates to the pop-ups? I certainly can not do it... Unfortunately (Posted also at tngusers2) Thanks In Advance, Erik
  14. Dieter Plassmann

    Customising of charts

    Dear TNG community, I would like to understand how can I customise graphical view of the charts. Particular I’m looking for a function that allows to view parameters in “Descendants Charts”. More specific I would like to add numbering to the chart similar to the PDF function, but in chart view including to provide the start number. E.g. the male in the 1. generation might be the 9th child. Thus, I would like to start with 9. In the 5th generation a child might have than the number 9-5-2-1-1 (or just 95211). A prefix for the family name of that branch might be nice as well like P-9-5-2-1-1. In a more generic way other parameters might be nice such ocupation, place of living etc. Finally, a way to customise such a chart for printing (PDF) would be great. E.g. a landscape view with the first generation at top. Maybe I’m wrong but I cannot find such or even similar functions in TNG out of the box. I also looked at webtrees which has a numbering function but does not allow to set the starting number. Thus, my question is what is need to get this function. If the answer is “write a mod yourself”, then please give me some more hints where and how to start as well as an idea, if it is “reachable” with reasonable effort. Thanks a lot for you help. With best regards Dieter P.S.: For those who would like to know why I do need this. In fact the example above is real. The purpose is regular family meetings with a large number of people. For those an grand uncle of mine has introduced the numbering scheme. Each person gets his number printed and attached. With a large printed tree view of all the descendants all people can easily find the relations.
  15. Dieter Plassmann

    Modern touch for genealogy

    Dear TNG community, I plan to launch a site to stimulate (beside the older generation) the younger generation in my family. So far an aunt of mine has organised family meetings and created a huge word document with the family history. This contains tree charts for the diverse branches and a single page with characteristics, contact details and stories for each person. Now we would like to bring thinks to the next and following generation with a more modern approach with a family web site. So far I have been looking at TNG and webtrees. Both with an impressive feature set. However both lack on social network functions and addressing to reach out for the younger generation, who interacts with instagram, whatsapp, wechat (QR code), Facebook URL, LinkedIn URL, etc. Browsing through the forums I found the people want to stick strictly to the GEDCOM specification, which does not include such data fields per person. Even the address is an “event” that may include an e-mail, phone number and URL, which sound weird for me. Actually I’m looking for a simple solution that allows me to add some of those attributes to the living persons of today. Because those are the ones I would like to share the work with and those I would like to support to communicate easy to each other. If all else fails I’m thinking of setting up a Wordpress page for each person on which I can include such attributes and link those as “address” event to genealogy site. I would wonder, if there is a simpler (rather integrated) solution that some one can point me to. Thanks a lot for you help. With best regards Dieter
  16. Henri Textor

    Relation Display

    Please allow me to suggest following The Relationship display mod is a wonderful tool but is not fit for big databases I would suggest a mod that builds a table where relationships can be saved for a default individual (or even several individuals) Thus relationships don't have to be calculated every time a new individual is displayed but can be taken from the table Cheers, Hans
  17. I keep careful track of the deaths in our extended Tarvin family, including using Google Alerts to let me know when obituaries are published. I record the information in my TNG site and feed these obituaries to our family association membership chair (who turns 90 this year). I also create a presentation for the reunion each year that we call the Honor Roll with a slide for each family member who died since the last reunion. I regret that these are not published to a larger family audience, so I'm looking for a way to do that easily. I've considered creating a blog entry for each person, but that's additional work. So I'm suggesting here a new display screen for a person in TNG that can be used in a presentation or as a blog posting. It would show not only the standard birth and death info, but also the default photo, relationships, and some additional one-line comments. This could feed the What's New section in an RSS feed. I'm envisioning something similar to my presentation (created in Keynote, but rendered to PDF) which i'm attaching here. Essentially large-font bullet points for a recently deceased person with a link at the bottom back to the TNG profile of that person. See the attachment for the presentation that I would like to replicate in TNG. What do you think, Darrin and others? Best, Gary   Tarvin_Honor_Roll_2014.pdf
  18. Firstly I would like to thank Erik Hoppe for providing his wonderful Open My Page Mod that allows logged in users to quickly connect to their individual page. This mod works as designed however it can be difficult for users to find as it at the bottom of the last header dropdown list (Info) For new users, the obvious place for them to start is at their own page and then navigate out from there. At the moment it can be difficult to navigate to their page as they firstly need to find the search tool and then they have to work out how it works. For some first time users these initial steps can be a big challenge in itself. Even with the My Page facility installed, all the items on the dropdown lists can be a little overwhelming and very few if any would be able to find it. Many regular users in general, like to think of their individual page as their home page, and it would be nice to have a facility to easily navigate there. My suggestions are that 1) this facility be part of all of the templates by default and 2) it should be positioned at a prominent position (preferably somewhere on the header) Thanks for your time, Merv whakapapaonline.com The Open My Page facility will not work for you if you are not a user on my site, so here is pic of what it would look like if you were...
  19. I'm new to TNG (V. 10) and am trying Template 9. I would like to have a "Historical Maps" category added to the left panel.  As some might know, for example, Sanborn Map Co. (https://en.wikipedia.org/wiki/Sanborn_Maps) published wonderful "fire maps" for 12,000 American communities over the course of a century. These can be downloaded as .pdf's at most major public libraries. They are very neat to attach to records: They show the "downtowns" the way that they used to be. It would be great to organize them into a single category. Just a thought.
  20. Hello, I noticed that when viewing a person record who has a same gendered spouse that it shows as "Married".  Might I suggest that you change this in the next release so that it says "partnered" rather than "married" if the gender of each partner is marked as the same and are not legally married?  Not all same-sex spouses are married to their partners but may have been together for long periods of time and are considered family. Thank you! Dan
×
×
  • Create New...