Forum Replies Created
-
AuthorPosts
-
Jeff Norman
ParticipantI third this. For any type of directory alphabetical ordering of the entries is a must, especially when people’s names are involved. At least the option to do so.
Jeff Norman
ParticipantI really need to be able to sort members in the directory alphabetically. That seems like a pretty standard option for this sort of functionality…
February 21, 2020 at 2:00 pm in reply to: Open "After Login Page Link" Shortcode to CURRENT Tab? #19816Jeff Norman
ParticipantAwesome. Thanks!
February 20, 2020 at 8:41 pm in reply to: Open "After Login Page Link" Shortcode to CURRENT Tab? #19809Jeff Norman
ParticipantFor some reason the shortcode is creating an html href link that defaults to a “target=_blank” attribute setting. I had to use JS to force all my links to open in the current tab to get it to work:
<script> var a = document.getElementsByTagName("a"); for (i=0;i<a.length;i++) { if (a[i].target="_blank") { a[i].target="_self" } } </script>It be helpful if it defaulted to a “_self” value on the “target” attribute making it open in the current tab by default, as most links do. It would be even more helpful if a user could add a target attribute to the shortcode itself and choose how the link works best for their particular site.
February 20, 2020 at 12:43 pm in reply to: Open "After Login Page Link" Shortcode to CURRENT Tab? #19808February 20, 2020 at 12:38 pm in reply to: Open "After Login Page Link" Shortcode to CURRENT Tab? #19807Jeff Norman
ParticipantThe shortcode comes from the simple membership plugin documentation. Its for creating a link back to the logged in member’s initial page once they log in.
-
AuthorPosts