Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Jo Sprague

    (@josiahsprague)

    @ddorr There are two options under Settings>Discussion>Quotable to disable sharing on quotes or on text selection for the whole site. There are also two options when you edit a post/page to disable sharing on quotes or on text selection per each post. Does that help? I’m not sure what you’re asking about tags.

    Thread Starter ddorr

    (@ddorr)

    Hi Josiah. I meant for example in a post with 4 tags (moto, brand, outside, cheap) with a select text o quote with 100 characters if I share this it its too long.

    I meant change this:

    Lorem ipsum dolor sit amet, consectetur adipiscing elitt. Sed volutpat diam quis ornare sollicitudin https://namesite.com/amet-sit-dolor #moto #brand #outside #cheap

    for this other:

    Lorem ipsum dolor sit amet, consectetur adipiscing elitt. Sed volutpat diam quis ornare sollicitudin https://namesite.com/?p=6

    Second text sharing without tags (moto, brand, outside, cheap) and url shortlink

    Plugin Author Jo Sprague

    (@josiahsprague)

    At some point, I may add an option to toggle off tags, if there is enough demand for it. However, I’m trying to keep the plugin as simple as possible and avoid adding extra options. Here are some possible solutions, barring adding this as a feature;

    First, the user will have the option to edit the tweet as they see fit before posting it. Many quotes will be too long to tweet even without tags, so this gives the person sharing the quote more control over what they share. In other words, it’s not necessarily a bad thing if a tweet ends up being too long initially.

    To build on that logic, I had at one point considered limiting the length of the tweet text to a certain number of characters. Less than 140 for example. I decided not to hard code that into the plugin, but if you would like, you can enforce a tweet length by adding the following code on line 134 of quotable.php;

    $tweettext = (strlen($tweettext) > 140) ? substr($tweettext,0,120).'...' : $tweettext;

    That would cut any text longer than 140 characters down to 120.

    Finally, another thing you might consider (which, understandably might not fit into your content strategy) is to use less tags on the post, but that shouldn’t be necessary.

    As far as the url short link, Twitter will automatically shorten longer links, so that should be a non-issue.

    Thread Starter ddorr

    (@ddorr)

    Thanks for the tip. I’ll test it and I’ll see that it works.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Great plugin for social engagement’ is closed to new replies.