YtW
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] eme_get_events_list produces no outputHi Franky,
works like a charm, thanks a lot.
Bye, Ralf
Forum: Plugins
In reply to: [Events Made Easy] eme_get_events_list produces no outputSorry, something went wrong: With “there is a blank space between the and :” I meant:
there is a blank space between the ul and /ul
Forum: Plugins
In reply to: [MultilingualPress] Get content from related postHi Torsten,
done ??
Keep your good work and your excellent support.Regards
RalfForum: Plugins
In reply to: [MultilingualPress] Get content from related postThis piece of code works great ??
Thanks for your help, Thorsten.Regards
RalfForum: Plugins
In reply to: [MultilingualPress] Get content from related postHi Thorsten,
it seems that we both have written at the same time ?? Thanks for your code example, I will check this one out and reply soon.
Regards
RalfForum: Plugins
In reply to: [MultilingualPress] Get content from related postHi Thorsten,
sorry for being unprecise. What I want to reach is that:
- Display French Content, e.g. description, price an so on
- Image gallery: no content found on French site, so switch to German blog
- Get images from German blog and display them on the French site
- switch back to French site and display the rest of the French content
This is the code used on the German site to get the images from my custom field “Image gallery”:
<?php $images = get_field('images'); if( $images ): ?> <hr> <div class="image-gallery clearfix"> <?php foreach( $images as $image ): ?> <a title="<?php echo get_the_title(); ?>" class="fancybox" data-fancybox-group="post-<?php get_the_ID(); ?>" href="<?php echo $image['url']; ?>"> <img class="alignleft" src="<?php echo $image['sizes']['thumbnail']; ?>" alt="" /> </a> <div class="wpcasa-caption"><?php echo $image['caption']; ?></div> <?php endforeach; ?> </div> <hr> <?php endif; ?>
The second code mentioned above was just an example what I am planning. I know that this one doesn’t make any sense ??
Thanks again for your help.
RalfForum: Plugins
In reply to: [Events Made Easy] Full month names in English instead of GermanHelped!
Thanks a lot.