Olybop
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Concours] Bugs sur version 1.1Bonjour tasso,
Je regarde pour reproduire les bugs, et j’ajuste cela sur la prochaine version.
Merci pour les retours.
OlyForum: Reviews
In reply to: [Wordpress Concours] super efficaceMerci pour le message !
Forum: Plugins
In reply to: [Wordpress Concours] Selection des Gagnants??
Forum: Plugins
In reply to: [Wordpress Concours] Selection des Gagnantstout a fait :), je viens d’ouvrir un ticket dans notre outils de suivi pour rajouter cette fonctionnalité. dès sélection des gagnants, le status du concours passera en “terminé” avec les gagnants bloqués. ??
MerciForum: Plugins
In reply to: [Wordpress Concours] Selection des GagnantsBonjour @verturin. Non, malheureusement, ce n’est pas possible pour le moment. Il y a un script de “random” mais les gagnants ne peuvent pas être bloqués pour le moment. nous ajoutons cela pour une prochaine mise à jours.
Merci pour le retour !
Bonne journéeForum: Plugins
In reply to: [Wordpress Concours] translation not working for text in the UIupdate coming soon ??
Forum: Plugins
In reply to: [Wordpress Concours] translation not working for text in the UIhello there !
Thanks a million about your publication. I put this morning my employee on the translate, send me your mail on twitter (DM -> @olybop) and i will send you the new version ??
Best
OlyForum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] CPF on CSSyes that’s perfect. Thx you ??
In this exemple you have a dynamic background with a custom post field :
<style> .header { background: transparent url(<?php echo get_post_meta($post->ID, 'wpcf-mycustompostfield', true); ?>) no-repeat center center ; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } </style>
Ok i found my answer on an far away other post ^^
remplace<?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'My_post_type'); endif; ?>
by
<?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail('myCustomPostType or post', 'My_post_type', NULL, 'post-thumbnail', NULL, true); endif; ?>
Chris, it’s doesn’t work for me :/
<a target="_blank" href="#"> <?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'plan2D'); endif; ?>
What the php code to link the img to the full size ?
Best
in my case i use “custom-thumbnail” (a new size i put in function.php) and i use it because the size not working for me ?? the plugin don’t link my custom-thumb when i put it on “”post thumbnail meta field”
and the size only take the height.update : i found the solution.
I made a change in the plugin on top10.phpjuste remplace the line :
$output .= get_the_post_thumbnail($result->ID, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array(‘title’ => $title,’alt’ => $title, ‘class’ => ‘tptn_thumb’, ‘border’ => ‘0’));by
$output .= get_the_post_thumbnail($result->ID, ‘thumbnail’);
it works…
Thx for this nice plugin.