ffiachra
Forum Replies Created
-
Forum: Plugins
In reply to: [Uji Popup] How to activate the to the home pageHi. I am having the same problem – The Homepage on our site is not actually a wp page, but set to show archive page. Is this the problem?
Excellent. that makes sense, thanks
Thank you.
This works perfectly when using the list template. However I’d like to use it in the single template also. Is there a way to make the line work in the single template?
Best regards.
Sorry. I wasn’t very clear or coherent here! must be needing a cup of coffee. The fields=”passenger_name” part is not relevant to the question and I confused myself in the description. Lets assume the code is as follows:
[pdb_list filter='ship_name=SS Lake Nepigon']
The output is a list of records with the ship_name of SS Lake Nepigon. this works when the field named “ship_name” has the form element of “text line” set in the Manage Database Fields section.
However, I want to make the ship name field a “link field” and when I do I can no longer see how to filter the list to show only records with the ship_name SS Lake Nepigon
This worked a treat (one more square bracket to add near the end):
<?php echo do_shortcode(‘[pdb_list filter=”group_number=’ . $this->participant_values[‘group_number’] . ‘”]’) ?>
Thank you so much for your fast help and for developing this wonderful plugin!
Just for clarity – an example of what exactly I would like to do is here:
https://www.blacksodbayemigration.ie/passenger/5-margaret-gallagher/The rows with the title “Sailing Party” link to single entries of other members of the same sailing party.
I know achieving this may require customisations but just wanted to check if all of the functionality includes scope for this.
Thanks
Excellent. That’s fixed it. Thanks!
Forum: Plugins
In reply to: [Testimonials Widget] Showing list instead of scrollHi Michael and many thanks for your reply. Resetting the options didn’t work, but I found something that did, I was calling the widget in the template file using
<?php
/*Testimonials Widget*/
the_widget( 'Testimonials_Widget_Widget' );
?>
which showed widget alright, but didn’t allow the scrolling,
However if I added a custom widget area in the functions php file and then put your widget into the widget area and called the widget area:
<?php
// Custom widget Area Start
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Home testimonials') ) : ?>
<?php endif;
// Custom widget Area End
?>
All works perfectly.
Thanks again for a really useful and well written plugin!