Hi there,
A year or two ago I was provided with some script to open An accordion from a different page.
// =================================
// Start Open FAQ Accordion from link on Home Page
// =================================
var target_hash = window.location.hash;
var id_index_table = {
"#faql1-1" : 1,
"#faql1-2" : 2,
"#faql1-3" : 3,
"#faql1-4" : 4,
"#faql1-5" : 5,
"#faql1-6" : 6,
"#faql2-1" : 7,
"#faql2-2" : 8,
"#faql2-3" : 9,
"#faql2-4" : 10,
"#faql2-5" : 11,
};
$(document).ready( function() {
var target_index = id_index_table[ target_hash ];
if ( target_hash !== "" && target_index > 0) {
$( $( "a.x-accordion-toggle" ).get( target_index - 1 ) ).click();
$("html,body").stop().animate({scrollTop: $( $( "a.x-accordion-toggle" ).get( target_index - 1 ) ).offset().top - ( $(".x-navbar").height() - 43 )},700 ,"swing");
}
} );
} );
// =================================
// End Open FAQ Accordion from link on Home Page
// =================================
This worked fine until the update to Pro 2.0.4 or maybe a couple of versions earlier. I have found other code from two separate topics
And have tried these on the site. I have placed this in the Global JS and none have any effect. I have two Accordions on my FAQs page, which I am attempting to link from my home page. All plugins are up to date as is WordPress. PHP Ver 7.2xxx and all suggestions re memory settings etc are in place.
I do appreciate this may be NOW outside the scope of support, however, due to previous help and support by Apex I am hoping whatever it is I am doing wrong can be pointed out to me. I would be good to know if the solution may work with later versions of Pro as well.
It does seem this is a reasonably well asked after feature. Perhaps it could be added to the feature request list for future one-click implementation. 
Details for login are in separate hidden message…
Rick M
NZ

