madri2
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect] LocalisationHere is a po file with some strings translated.
The strings only visible to admin isn’t really necessary :[File moderated. Please use the pastebin.]
there are plugins that use shortcode to displays a lot of datas, with a lot of queries & so on.
Adding the possibility to disable the filters and shortcodes can be done in not so much time and i think all the people that have problem with shortcodes evaluated twice will be happy
they are able to be caled twice, but it slow down the rendering of the page.
So, just add a check to just disable the shortcodes & filters or just shortcodes. It’s just one option, the plugin will still be simple.
You may even also don’t add any other option, just a little “if” on the code to not filter the content if it’s not needed.
bump, please fix it !
Line 350, Column 120: Bad value mailto:?subject=Un cheval coincé&body=Un cheval coincé – https://www.loltube.fr/2012/06/27/un-cheval-coince/ for attribute href on element a: Whitespace in query component. Use %20 in place of spaces.
…dy=Un cheval coincé – https://www.loltube.fr/2012/06/27/un-cheval-coince/” ><img
Syntax of IRI reference:
Any URL. For example: /hello, #canvas, or https://example.org/. Characters should be represented in NFC and spaces should be escaped as %20.well in fact it IS displaying the attached picture, but since you can’t change the size of it without modifying the source code, it’s not practical
you must add the possibility to choose the size of the image displayed.
function dfcg_grab_post_image($parent_id) {
$args = array(
‘size’ => ‘full’,
‘attr’ => ‘full’,
‘num’ => 0
);
// Get the image attachment ID
$id = dfcg_get_image_id($parent_id, $args[‘num’]);
// Get the image details (returns array of src, width, height)
$image = wp_get_attachment_image_src($id, $args[‘size’]);
// We only want the src
$output = $image[0];
return $output;
}the option to change “full” to the size of our choice
bump, i’m looking for it too.
When using auto, it search inside the content, and is not using the attachmentis there a possibility to retrieve the content, without applying filters to it ? (to disable filters that adds text)
nice thanks
do you think you’ll add this feature in a future version ?
where is akismet ?
but the plugin doesn’t do that neither ^^
like i said it display the results using a template and instead of that i would like to be able to have an array of resultsbut the shorttag does display the results and what i want is a list of the posts that can be queried with query_posts and be able to do a “post loop” with it
and how do you do that? it’s not documented
on the first post he’s sorting using comment_count and not views counthi, i want to be able to sort by views using wordpress’ query_posts too.