Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#13 2008-04-23 19:37:59

rloaderro
Archived Plugin Author
From: Costa Rica
Registered: 2006-01-05
Posts: 190
Website

Re: aro_myadmin

One thing I noticed is that it does something strange to rss_unlimited_categories in the write screen.

Thanks for the heads up – I fixed the glitch and will fold it into the plugin with the next update.


Travel Atlas * Org | Start Somewhere

Offline

#14 2008-04-23 20:15:58

typeshige
Member
From: USA
Registered: 2005-08-11
Posts: 151
Website

Re: aro_myadmin

If its possible, could you tell me what to change to fix it?

Thanks!

rloaderro wrote:

bq. One thing I noticed is that it does something strange to rss_unlimited_categories in the write screen.

Thanks for the heads up – I fixed the glitch and will fold it into the plugin with the next update.

Offline

#15 2008-04-23 20:21:19

rloaderro
Archived Plugin Author
From: Costa Rica
Registered: 2006-01-05
Posts: 190
Website

Re: aro_myadmin

The problem is the rss plugin uses the same class for it’s multiple select. So first you have to target all multiple selects and give them their own class. This can be done in the aro_myadmin_js function, add the following around line 225:

// target multiple selects
\$("select[multiple]").addClass("multiple");

Then you can add a line in the myadmin.css to give a height to selects with the “multiple” class:

select.multiple {
  height: 80px;
}

Travel Atlas * Org | Start Somewhere

Offline

#16 2008-04-24 00:12:39

typeshige
Member
From: USA
Registered: 2005-08-11
Posts: 151
Website

Re: aro_myadmin

Thank you very much! This worked perfectly.

rloaderro wrote:

The problem is the rss plugin uses the same class for it’s multiple select. So first you have to target all multiple selects and give them their own class. This can be done in the aro_myadmin_js function, add the following around line 225:

// target multiple selects
\$("select[multiple]").addClass("multiple");

Then you can add a line in the myadmin.css to give a height to selects with the “multiple” class:

select.multiple {
  height: 80px;
}

Last edited by typeshige (2008-04-24 00:17:59)

Offline

#17 2008-05-03 11:31:01

duchamp
Member
From: Patagonia
Registered: 2005-02-03
Posts: 222
Website

Re: aro_myadmin

Awesome Plugin! Installed a few minutes ago and works great!
Just a little detail:

As you see, there’s some trouble with some spanish characters in the Dashboard.
Anyway, my quick solution was to modify this:

<li><a href="?event=list"><txp:php>echo ucfirst(strtolower(gTxt('more').' '.gTxt('articles')));</txp:php></a></li>

to

<li><a href="?event=list">M&aacute;s art&iacute;culos</a></li>

but that’s not a real solution, I know.

Thanks for this great plugin!

Last edited by duchamp (2008-05-03 11:32:04)

Offline

#18 2008-05-03 13:00:39

rloaderro
Archived Plugin Author
From: Costa Rica
Registered: 2006-01-05
Posts: 190
Website

Re: aro_myadmin

hi Alex!

Thanks for the kind words. A few quick questions – what version of PHP are you using?

Also, what happens if you try:

<li><a href="?event=list"><txp:php>echo ucfirst(gTxt('more').' '.gTxt('articles'));</txp:php></a></li>

Or even:

<li><a href="?event=list"><txp:php>echo gTxt('more').' '.gTxt('articles');</txp:php></a></li>

Also, have you tried updating the Spanish language pack under Admin > Preferences > Languages?

Thanks again!


Travel Atlas * Org | Start Somewhere

Offline

#19 2008-05-03 13:16:41

duchamp
Member
From: Patagonia
Registered: 2005-02-03
Posts: 222
Website

Re: aro_myadmin

rloaderro wrote:

hi Alex!
Thanks for the kind words. A few quick questions – what version of PHP are you using?

I’m testing this under my Local server (xampp) using PHP Version 5.2.5

Also, what happens if you try:

<li><a href="?event=list"><txp:php>echo ucfirst(gTxt('more').' '.gTxt('articles'));</txp:php></a></li>

Or even:

<li><a href="?event=list"><txp:php>echo gTxt('more').' '.gTxt('articles');</txp:php></a></li>

… ummmh nothing happens! :S
Maybe I must to change something in my php.ini … not sure …

Also, have you tried updating the Spanish language pack under Admin > Preferences > Languages?

Its a fresh Textpattern 4.0.6 with everything updated

Offline

#20 2008-05-03 13:40:14

rloaderro
Archived Plugin Author
From: Costa Rica
Registered: 2006-01-05
Posts: 190
Website

Re: aro_myadmin

OK – I fixed this. Please re-download the plugin. This minor update also includes the rss_unlimited_categories fix. If you still find any problems please let me know – thanks!


Travel Atlas * Org | Start Somewhere

Offline

#21 2008-05-03 13:50:48

duchamp
Member
From: Patagonia
Registered: 2005-02-03
Posts: 222
Website

Re: aro_myadmin

It Works fantastic! Thanks a ton

That problem was just in my local server, in my on-line website the plugin works without any trouble.

Just another question:

could be possible to use the plugin to also skin the Plugins Tab and the Login screen?

cheers!

Offline

#22 2008-05-03 14:01:54

duchamp
Member
From: Patagonia
Registered: 2005-02-03
Posts: 222
Website

Re: aro_myadmin

Forget it! I realise that adding the line of code that you indicated in the Help to the textpattern/index.php solves that! … and then … this Plugin is almost perfect!
I need to parse/publish an article in the Dashboard and this would be completely perfect!

Offline

#23 2008-05-03 14:39:34

FireFusion
Member
Registered: 2005-05-10
Posts: 698

Re: aro_myadmin

Is it possible to get the dashboard without the style changes?

Offline

#24 2008-05-03 15:02:35

rloaderro
Archived Plugin Author
From: Costa Rica
Registered: 2006-01-05
Posts: 190
Website

Re: aro_myadmin

hi FireFusion,

I think the best you could do would be to download the plugin, take a look at the PHP / TXP code used to generate the dashboard, and use that as reference with the asy_dashboard plugin.

Forget it! I realise that adding the line of code that you indicated in the Help to the textpattern/index.php solves that!

Yes – with that line the plugin is nearly seamless. The best part is toggling the plugin on/off in the admin panel and you can see how complete + unobtrusive the plugin is.

Cheers!


Travel Atlas * Org | Start Somewhere

Offline

Board footer

Powered by FluxBB