kapppa
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Product Review Lite] Responsive websitesHi there,
Responsive would be great.
Also the functions on a mobile device are not working at the moment. Now the slides at the comment box are not working on – for ex. – an iPhone.would be great if this would work on all devices.
keep up the good work!
ThanksHi there,
thanks for your reply.
I′m trying to use it in a multisite installation.
The permissions are correct, i′ve checked them twice.
Gr.
Forum: Plugins
In reply to: [WP Product Review Lite] How to place rating into page manually?Hi there,
this would really by useful. It can also be the code to put into a theme aswell.
I would purchase the pro version if this was possible.Thanks a lot and keep up the good work ;).
Forum: Plugins
In reply to: [WP Product Review Lite] Rating in different pageHello,
i would like to know this aswell.
So if i get the pro version, will i be able to use a php code which i can use in my own theme ?
Thanks
Forum: Plugins
In reply to: [Advanced Custom Fields: Leaflet Field] ACF Version 5 (Pro) compatibility?Hi, that would be great!
Hope to hear from you asap. ??
gr.
Forum: Plugins
In reply to: [Advanced Custom Fields: Leaflet Field] ACF Version 5 (Pro) compatibility?Same problem here… with the Pro version your plugin is not working.
Would be great if this could be fixed.
ThanksForum: Plugins
In reply to: [Custom Field Suite] Relationship within loopOk, found the solution on the website: https://customfieldsuite.com/forums/questions/811/how-to-display-a-relationship-field-inside-a-loop
<?php // Get the loop fields (returns an associative array) $loop = $cfs->get('my_loop'); // Iterate through the fields foreach ($loop as $field) { // returns a date string $my_date = $field['my_date']; // this returns a date string // returns an array of post IDs, which we need to iterate through $my_relationship = $field['my_relationship']; // output the formatted date (google "PHP date") echo '<div>Date: ' . date('F j, Y', strtotime($my_date)) . '</div>'; // output the relationship values echo '<div>Relationship</div>'; foreach ($my_relationship as $post_id) { // Pass the post ID into get_the_title to get the post's title echo '<div>' . get_the_title($post_id) . '</div>'; } } ?>
ps. this causes a lot off errors in the widget-area aswell.