Maarten
Forum Replies Created
-
Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Undifined constant errorI have just released a new version (1.3) of the plugin. Could you please verify that the issue has been resolved?
Hi ELsMystERy,
Your request has been implemented in version 1.3, which has just been released. For details see the release notes.Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Order links by dateHi mealex, thanks for the suggestion. Your request has been implemented in version 1.3, which has just been released. For details see the release notes.
Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] SSL insecure contentThanks! This issue should be fixed in version 1.3 released today.
Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Pagination possible?That could certainly be an interesting feature. Would you like the pagination to break the post in which it is shown or should links be shown in a ‘frame’ of sorts in which you can browse?
Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] [TIP] Showing file sizeHello ildario,
This could be an interesting addition. I suspect however that filesize($caminho) is a server intensive function, since it has to access the file system on each pageview, or not, unless you use caching?
Does it make sense to manually (or automatically) store the file size info in the Notes field and extract it from there? Perhaps in the format ‘<file size=”” />’? That would even pave the way for an infinite number of possible optional fields. Just brainstorming at this point.
In any case to implement this in the plugin it would need to be something optional.
Interested to learn your ideas on this.
I have been struggling with this option myself. Should there be multiple templates to choose from? Is there a use-case? (apparently there is) Will this make the plugin too complicated? Should it be possible to include the template in the short code? etc…
I’m interested to know other opinions on this.
Hi ELsMystERy!
Sounds like a good addition, could you post the code changes here?
Best regards,
MaartenForum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Looking for a tutorialHello icedms,
You raise an interesting issue. Although the plugin contains some information, I have to admit that specially with limited knowledge of programing and html, it could be challenging to work out the best template for your situation.
As a start for a more detailed manual/tutorial, I have gathered all existing information on the plugin page on my blog: http://blog.bigcircle.nl/about/wordpress-plugins/links-shortcode/ and elaborated a little bit further. I hope it helps.
Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Undifined constant errorI assume you are talking about the wp-debug plugin? In my case it does not present that error. Could you copy paste the exact error with path etc. here?
Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Links doesn't workI’m not sure why this would not work. Could you have a look at http://blog.bigcircle.nl/2010/07/social-media-links/
On that page different categories of links are shown, per category. The first tag for example used is [links category_name=”Social media trends”]
You should use the exact Category name (“Karate”?), and not the category slug (“karate”?).
I hope this helps!Forum: Plugins
In reply to: [Links shortcode] Links shortcode seems not to workCould you tell me where and how you are trying to use the shortcode? shortcodes do not work in Excerpts. If you want to use them there, you need to add the following lines to the functions.php file in the template directory:
add_filter( 'the_excerpt', 'shortcode_unautop'); add_filter( 'the_excerpt', 'do_shortcode');Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Shortcode for allTo simply list the links with a bullet in front of each link, use the following main template:
<li class="link [link_category]"> <a class="link-title" href="[link_url]" target="_blank">[link_name]</a> </li>Use the following ‘before’ template:
<ul>
and the following ‘after’:
</ul>Without bullets, just use the following as the main template:
<a class="link-title" href="[link_url]" target="_blank">[link_name]</a><br />And then in the post where you want to show the links use the shortcode without further customization:
[links]Forum: Plugins
In reply to: [Links shortcode] [Plugin: Links shortcode] Improved handling of link_updatedI have updated the plugin to include this functionality. making the plugin compatible with “Andy’s Link Last Edited Meta Box”.
Thanks for the tip!Hello pander,
In the latest version you can define your own template to display links in any way you like. The plugin includes some help on that, but here’s an example on how to show links in a table:
You could add images in a column next to the description by using the following:
<tr style="width:100%;"> <td style="width:100px;vertical-align:top"> [optional <a href="[link_url]" target=_blank><img src="[link_image]" border=0 style="width:100px"></a>||] </td><td> <div class="links_sc_fb" style="text-align:left"> [optional [date]: ||]<a href="[link_url]" target="_blank">[link_name]</a> [optional <br />[link_description]||] [optional <br />[fb_button]||] </div> </td></tr>You will need to add the following as code to be inserted before the links:
<table style="margin:0;padding:0;">
And the following to be inserted after the links:
</table>
I hope this helps.Maarten