Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#76 2010-04-12 16:06:59

surfwax95
Member
Registered: 2008-04-04
Posts: 38
Website

Re: jmd_rate: A CSS star rater

The plugin is properly installed in the Plugins tab and in the Extensions tab.

Any help or alternatives to this plugin?


Caps lock is cruise control for cool. —Unknown

Offline

#77 2010-04-16 20:16:42

NicolasGraph
Plugin Author
From: France
Registered: 2008-07-24
Posts: 860
Website

Re: jmd_rate: A CSS star rater

wornout a écrit:

I’ve got some problems using plug-in.
I see the list of votes but after selecting one of these the pages reload the same and no record is insert in DB.
I don’t know where is the problem!!!
I use Txp 4.2.0

Is there a known solution to this problem?
I’ve got the same.

Thanks for your answers.

Nicolas


Nicolas
Follow me on Twitter and GitHub!
Multiple edits are usually to correct my frenglish…

Offline

#78 2010-05-23 19:11:02

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

wornout a écrit:

I’ve got some problems using plug-in.
I see the list of votes but after selecting one of these the pages reload the same and no record is insert in DB.
I don’t know where is the problem!!!
I use Txp 4.2.0

NicolasGraph wrote:

Is there a known solution to this problem?
I’ve got the same.

I may or may not have had the same issue you are describing. When you say “the list of votes” I assume you mean the rating entry links that <txp:jmd_rate_display/> generates. For me, these were completely non-functional:

It seemed that since I was using gbp_permanent_links to make clean urls for my individual articles (because I don’t want the article title anywhere in my url, as in all of Textpattern’s clean url options), <txp:jmd_rate_display/> was not able to produce functional rating entry links: every link was just a plain link to the current article. I tried manually adding ?rating=3 to the end of a clean url, but this didn’t result in a rating getting logged in the database.

Later, I realized that manually entering dirty rating entry links, as in

<a href='http://yoursite.com/index.php?id=<txp:article_id/>&rating=3'>3</a>

…worked perfectly. This may be due to the fact that with gbp_permanent_links, you are supposed to leave the Admin Preferences setting on ?=messy. Maybe there is even a way to get gbp_permanent_links and the <txp:jmd_rate_display/> tag to play nice together, but I haven’t figured it out if so.

So for now, I just need to hand code the rating entry links instead of using <txp:jmd_rate_display/>. Of course, this is not good because you lose all the functionality of that tag, and I have yet to actually devise a hand-made solution that completely duplicates it, but it’s on my list of to-do’s.

Maybe you are not in the exact same situation, but have you tried manually entering a dirty rating entry url like that with any success?

Last edited by aswihart (2010-05-23 19:44:39)

Offline

#79 2010-05-23 19:12:08

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

just a (small?) feature request: add attribute offset for jmd_rate_article like in article_custom. Trying to get a hand-made pagination system that I made for article_custom lists working with article lists sorted by rating, and this is all I need.

Offline

#80 2010-05-24 03:38:47

jm
Plugin Author
From: Missoula, MT
Registered: 2005-11-27
Posts: 1,746
Website

Re: jmd_rate: A CSS star rater

aswihart, if you add the offset to these places, it’ll probably work:

function jmd_rate_article($atts)
{
    extract(lAtts(array(
        'offset'     => '', // <--
        'author'     => '',
    // ...
        $out .= article_custom(array(
            'offset'    => $offset, // <--
            'author'    => $author,
            'category'  => $category,

Sorry for the lack of support and buggy mess. I haven’t made time for plugins since I moved last year, but I’m hoping to complete some much needed updates to the various *jmd_** spawn this summer.

Last edited by jm (2010-05-24 03:39:07)

Offline

#81 2010-05-26 13:48:00

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

Hey JM, thanks for the tips. Coincidentally, I actually I tried putting those two lines in, and I just tried again to reconfirm, unfortunately, it doesn’t work for me. If I include the offset attribute in the jmd_rate_article tag and set to anything but “0” , it returns nothing. What about for you?

Offline

#82 2010-07-02 15:54:24

jm
Plugin Author
From: Missoula, MT
Registered: 2005-11-27
Posts: 1,746
Website

Re: jmd_rate: A CSS star rater

Hi all,

I’m working on jmd_rate again — I checked the crappy 0.4 version into a repository. I tested on TXP 4.2-SVN (Apache 2 + PHP 5.3.2 and Lighttpd + PHP 5.3.2 servers), and it works fine. If you have any issues, please post them to the tracker. Sorry about the hassle, but it makes it easier for me to find out what’s wrong with the plugin.

Thanks,
JM

Offline

#83 2010-07-04 11:46:12

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

Great to hear you are back jm, your plugin continues to work very well for me, and I’m looking forward to the improvements you may have coming for us.

The IP logging feature is great, and to add even more robustness in the area of preventing rating spam, I would like to submit a feature request if I may: to only allow one vote per user. I’m already using rvm_privileged to hide the rating links from anyone who isn’t logged in, so this feature would just make a lot of sense.

Last edited by aswihart (2010-07-05 22:55:29)

Offline

#84 2010-07-06 19:23:08

Katalonian
Member
From: Baku, Azerbaijan
Registered: 2010-04-18
Posts: 219
Website

Re: jmd_rate: A CSS star rater

can i use this plugin as a standart poll pluin without stars?


<txp:txp_me />

Offline

#85 2010-07-06 19:28:19

jm
Plugin Author
From: Missoula, MT
Registered: 2005-11-27
Posts: 1,746
Website

Re: jmd_rate: A CSS star rater

Katalonian wrote:

can i use this plugin as a standart poll pluin without stars?

If you don’t include the CSS file, you can. By default, the unstyled display is:


  • Currently rated X/4
  • 1/4
  • 2/4
  • 3/4
  • 4/4

If you want those values to be different, you can modify the jmd_rate->display() method.

Offline

#86 2010-07-07 04:39:49

Katalonian
Member
From: Baku, Azerbaijan
Registered: 2010-04-18
Posts: 219
Website

Re: jmd_rate: A CSS star rater

because the demo page its not available i cant see how its works and some way how i can put polls. How i can directlu create/delete/manage polls ?


<txp:txp_me />

Offline

#87 2010-07-07 04:46:53

jm
Plugin Author
From: Missoula, MT
Registered: 2005-11-27
Posts: 1,746
Website

Re: jmd_rate: A CSS star rater

Katalonian wrote:

because the demo page its not available i cant see how its works and some way how i can put polls. How i can directlu create/delete/manage polls ?

You can create a poll (“rater”) with <txp:jmd_rate>...</txp:jmd_rate> (see first post). This should go in an article form. You can set an article to use an override form (e.g., form = “rateable”) or surround the <txp:jmd_rate> tags with <txp:if_article_id id="x">...</txp:if_article_id>. Sorry about the demo being down…I moved hosts awhile ago and didn’t migrate the demo DB.

There isn’t really a backend for managing polls, other than deleting all of your results. If you have phpMyAdmin or a MySQL CLI, you can use delete from jmd_rate where parentid = yourArticleId;.

If you’re looking for a two-option plugin, check out wlk_helpful — it’s what’s used on textpattern.org.

Offline

#88 2015-09-26 19:45:51

alivato
Member
Registered: 2011-03-31
Posts: 152

Re: jmd_rate: A CSS star rater

Does anyone have a plugin jmd_rate?

Offline

#89 2015-09-26 20:51:30

jakob
Admin
From: Germany
Registered: 2005-01-20
Posts: 5,181
Website GitHub

Re: jmd_rate: A CSS star rater

Try jm’s github repo. It looks like there’s note a recompiled plugin so you’ll need to include it via a plugin_tmp folder (or similar) in the textpattern directory.


TXP Builders – finely-crafted code, design and txp

Offline

#90 2015-09-26 21:38:15

alivato
Member
Registered: 2011-03-31
Posts: 152

Re: jmd_rate: A CSS star rater

I found it but where to get the file ~base64, to install in the admin panel?

Last edited by alivato (2015-09-26 21:38:49)

Offline

Board footer

Powered by FluxBB