steveredshaw
Forum Replies Created
-
I could not find a way to automatically email events to site members, the Email Users plug-in was a workaround as it needs to be handled manually. In the end the Events Manager plug-in (which was the original subject of this forum query) could not cater for my exact needs, though I believe the paid-for version does have an email notification facility. But it does allow site members/users to create their own events, it has an excellent calendar and the events list is presented very well – at least it looked really good in the theme I was using. I suggest you experiment, it took me quite a while to get familiar with the Events Manager plug-in and satisfy myself that it met all my requirements.
I installed Email Users plug-in and found it very good for my purposes, if you do a plug-in search under this term you also come up with 2 or 3 other similar plug-ins that might be appropriate.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] no events listedyes, that did it, thanks for guiding me through all this – we seem to be back to full normal functioning now…
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] no events listedhi, links to events page and calendar;
http://www.activeo.info/activeo-events/ http://www.activeo.info/activeo-events/events-calendar/
I have removed the password protection from these 2 pages temporarily, the links to individual events still need a log in to display, however Test Event (30/4) and test no2 (29/4) will display for you.
I have uninstalled and re-installed WP fullcalendar and I have updated Events Manager to 5.3.8. I have used Events Manager on my site with Chrome, IE and Firefox under Linux and Windows on several different laptops and it all seems to be displaying as it should now.
One problem remains however, the map facilty is not working (both test events above should display location maps). I’ve possibly messed up the settings?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] no events listedsorry this is getting bewildering, events list now showing (I have not changed anything!!), but calendar still empty…
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] no events listedcalendar is empty again too, I haven’t altered any settings to do with that!!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] no events listedhave created a new page and designated this as the events list page in Events Manager settings, but no events appear on this
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] no events listedThe calendar is now showing events, however when I click on an event the single event display does not show location or map.
I did have a Categories and Locations page, though the Events Manager settings were set to no pages for these. I deleted these pages from my pages list, however still no events (or search box) appears on my designated events page.
When I edit the designated events page the red box at the top does state that it is the Events Manager display page. The page has CONTENTS on it and some other links and a PrinterFriendly plug-in shortcode (these were there before when it did display proprerly).
I have tried deleting everythng from this page, but still no events listing!!
I suppose I could install the plug-in from fresh again, but will I then lose all the existing entered events?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS feedthat’s great, the URL above appeared as http://mydomain.com/events/feed/ and is now a separate content block in my netvibes dashboard, a useful way to access the information outside of the website itself, which is what I am trying to achieve
the shortcode link is useful too, I can continue experimenting
thanks…
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Change email notificationSurely this is when you create a form. I have an existing form on my page, but can see no way of changing the email address that receives notifications from that existing form, which I want to keep.
Can I get back to the form builder of a form that has already been built? If so, how?
Thanks…
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] caption from WP galleriesthis is great detective work, I am incredibly grateful as I am not knowledgeable enough to delve into a php file to see what may be amiss!!
the line in my classes/filters.class.php file was like this (the whole section)
/* * If use caption for title try to get the text from the caption - this could be wrong */ if ($lightboxPlusOptions['use_caption_title']) { if ($e->next_sibling()->class == 'wp-caption-text') { $e->title = $e->next_sibling()->innertext; } elseif ($e->parent()->next_sibling()->class = 'gallery-caption') { $e->title = $e->parent()->next_sibling()->innertext; } }this shows the amended version (insert ==) and it works if Auto-LightBox Text Links is checked and Do Not Display Image Title: is unchecked
BTW – in the above code extract should class=’gallery caption’ also have a double =? (although that does not affect my use of the plug-in I don’t think)
Thanks so much, I found the template file (in fact I had to hunt down 2 of them to change instances of wording I needed). Mission accomplished!
Forum: Fixing WordPress
In reply to: welcome messageah – I tried writing the php snippet into the text editor of the page – I wondered why it didn’t work!
so, this is my solution
- write a php function (well copy one from a helpful web article)
- create a shortcode
- insert into your theme’s function.php file
- place it before the final ?> in the functions.php file
(copy and save your theme’s original functions.php so if something messes up you can put the original back in place)this is my addition which creates a Welcome message naming the logged in user by adding the shortcode [welcome_user] to a post or page.
/** * user display name - SR Feb 13 */ function displayName () { global $user_identity; get_currentuserinfo(); echo "Welcome " . $user_identity; } /** * create shortcode to display name on page - SR Feb 13 */ add_shortcode('welcome_user', 'displayName');I found out about creating short codes here
I am new to WP and to PHP, but am enjoying the flexibility and customization that WP offers. Please do comment on my attempts, there is much more I need to learn…
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] caption from WP galleriesthanks for tip about getting previous versions. I have reverted to 2.5.5, but still no captions – this is strange, when I first started using Lightbox Plus I was getting the WP captions displayed on the Lightbox image displays, but I can’t recall what version this was
if the problem is not the version, what else could be preventing the plug-in displaying WP captions if that option is selected from the plug-in settings?
Forum: Fixing WordPress
In reply to: welcome messageproper template(s).
thanks very much for this, I have read the articles and get the concepts there, but can you place php snippets directly into a post or blog (in the text editor tab). I have tried this but it does not work. I am unclear what proper templates are and how you use these snippets to display the variable’s content on a page… thanks