Quote:
Originally Posted by samiro
i want to add a new "nav link" to go to the privet messages.
like in this original photo- how can i do that ?

|
Did you read the article? What code have you written to try to do what you want and what were the results? I can't tell you want is wrong unless you post your code and an image of the result and you tell us what is wrong with the result.
Quote:
Originally Posted by Sarcoth
Can this plugin call variables from my custom page?
I'm looking to use this menu to sort the tables on my custom page. My custom page creates an array (which you may be familiar with in another post):
PHP Code:
$columns = array( 'column1' => $field1st, 'title1' => $title1st, 'column2' => $field2nd, 'title2' => $title2nd, 'column3' => $field3rd, 'title3' => $title3rd, 'column4' => $field4th, 'title4' => $title4th, 'column5' => $field5th, 'title5' => $title5th, 'column6' => $field6th, 'title6' => $title6th, 'column7' => $field7th, 'title7' => $title7th, 'column8' => $field8th, 'title8' => $title8th );
Anyhow, instead of link1, I'd like to use $columns['title1'] in this plugin.
|
I don't know. I've never tried what you want to do. You'd have to make your variables available to the plugin by defining them prior to this plugin being rendered. So, depending on how you go about it, you should be able to do what you want.