Navigation überspringen

[Gelöst] set default taxonomy of form by passing url id parameter

This support ticket is created vor 4 Jahren, 11 Monaten. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

Dieses Thema enthält 2 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von meirk vor 4 Jahren, 11 Monaten.

Assistiert von: Minesh.

Author
Artikel
#1534545

I am trying to set a default category in a form by setting a parameter in the url
i already tried this js:



jQuery( document ).ready(function() {
    jQuery('#category select option[value="12"]').attr("selected",true);
  

})

this works...

but how can i change the value from 12 to a url parameter?

#1534961

Minesh
Supporter

Sprachen: Englisch (English )

Zeitzone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

You need to add the jQuery code to grab the URL param value.

For exmample:

jQuery(document).ready(function($){
  $.urlParam = function(name){
    var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href);
    if (results==null){
       return null;
    }
    else{
       return decodeURI(results[1]) || 0;
    }
}
 param =  $.urlParam('student'); 
   
jQuery('#category select option[value="'+param+'"]').attr("selected",true);
});

Where:
- student with your URL param name

#1535071

My issue is resolved now. Thank you very much!!!!