pollardd
Forum Replies Created
-
Forum: Plugins
In reply to: [Gwolle Guestbook] Disable the Double Post WarningForgot to mark this as solved 🙂
Forum: Plugins
In reply to: [Gwolle Guestbook] Disable the Double Post WarningHi Marcel,
That worked very well. Strange when I copied the code out of my email and posted it into my functions.php file WordPress completely failed to load anything. When I copied the code from the forum post and pasted it worked perfectly.Thanks very much for your quick assistance. This is a very versatile little program.
I have another question but I’ll create a separate post to make them more easily searchable to other people.
Thanks
DavidForum: Plugins
In reply to: [Gwolle Guestbook] Change/Add a field nameMarked as resolved
Forum: Plugins
In reply to: [Gwolle Guestbook] Change/Add a field nameSilly Me,
I missed a bit from the example. That works. 🙂function my_gwolle_gb_author_origin_label( $label ) { // $label is a string $label = 'test'; return $label; } add_filter( 'gwolle_gb_author_origin_label', 'my_gwolle_gb_author_origin_label', 10, 1 );Forum: Plugins
In reply to: [Gwolle Guestbook] Change/Add a field nameOK I have made some progress.
I figured out I need to edit the file named functions.php
And I should probably create a child theme which I have done.
I know my functions.php is being read from the child theme as without it my style was all messed up, with it the rest of my page looks normal again.I now have the following code in my child functions.php but nothing has changed in the form. It still says city. Have I picked the wrong function to insert?
<?php add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' ); function enqueue_parent_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } function my_gwolle_gb_author_origin_label( $label ) { // $label is a string $label = 'Mobile Number'; return $label; }Forum: Plugins
In reply to: [The Events Calendar] Only Full Day Events Appear in Month ViewHi Brook,
My web page fell onto the back burner for a while as the other stake holders have been lacking interest. They have woken back up now and want me to finish the page.I’m still having problems with items not appearing in the Month View.
I have just created some new items from scratch. They appear in the list view but not in the month view.I updated to the latest version but it didn’t make any difference.
I saw in another post where someone suggested adding to functions.php but a quick search didn’t reveal an obvious file for me to edit. It was also a while ago so if it is a but I’d expect you would have fixed that by now.
I’m at a bit of a loss for what to try next.
Any suggestions?Thanks in Advance
DavidForum: Plugins
In reply to: [The Events Calendar] Only Full Day Events Appear in Month ViewHi Brook,
I picked one of my events and changed the start time by 5 minutes and updated the event. This didn’t make any difference. The event didn’t appear in the Month View Calendar.I changed the Start Time back to the original time and still no difference.
I created a new event with a start and finish time from the web interface (not imported from CSV) and it was immediately visible from the Month View.
So this problem is related to the CSV import process. I don’t really want to create all my events by hand. It is a weekly event and I create a whole year at a time. They aren’t identical so it isn’t a simple recurring event.
It is way easier for me to type them in Excel and import them.
So it looks like a bug. Perhaps the development guys will be able to reproduce it.Let me know if you need more information.
Thanks
David