papergecko
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Appointment] Translating Featured SliderSorry, just worked this out!
For anyone stuck with the same issue, you need to choose your slider category, then translate the category in wpml. Any slides you’ve created you’ll need to mark with the translated category for them to appear in the translated slider.
Forum: Plugins
In reply to: [eShop] Upgrading from an old version of eshop – 4.0.2Hi Esmi
Just checking if you’d had chance to look at this yet? I’ve had a look through the older documentation and it looks like versions 5.7.4 and 5.0.0 are where the key database changes happened, so if you can only find those two that might sort it out.
Many thanks
Forum: Plugins
In reply to: [eShop] Upgrading from an old version of eshop – 4.0.2Ah ok. It’s not online is it? I don’t mind searching myself – the upgrade needs doing before Sunday ideally…
Thanks for prompt response though!
Forum: Plugins
In reply to: [eShop] Upgrading from an old version of eshop – 4.0.2Thanks Esmi that would be fantastic – any help you can offer would be very much appreciated.
I have the same issue, after updating to 1.31.2. Most custom fields are saved, but one isn’t – it’s a text area.
Do I need to delete that field and start again with it?
Thanks
Forum: Hacks
In reply to: Include variable in custom new user registration emailMany thanks, that worked perfectly.
Forum: Hacks
In reply to: Include variable in custom new user registration emailThanks bcworkz.
Do you know how to pass that to the custom wp_new_user_registration so I can send it in the registration email?
Forum: Plugins
In reply to: [WordChimp] [Plugin: WordChimp] Select Pages as well as Posts?Figured out how to include pages:
In the plugin you need to change the query on line 632
from
$sql = "SELECT id, post_author, post_date, post_content, post_title, post_excerpt, post_name FROM {$wpdb->prefix}posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 40";
to
$sql = "SELECT id, post_author, post_date, post_content, post_title, post_excerpt, post_name FROM {$wpdb->prefix}posts WHERE post_type = 'post' OR post_type= 'page' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 40";
Hope that helps someone
Thanks for the quick reply Josh. I’ll take a look at the new version.
Hi again Josh. I think I tagged this incorrectly so you probably didn’t pick it up.
Could you take a look when you have a second?
Many thanks
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] property of non-object errorThanks JLeuze
I think I’ve sorted it in the meantime, so no need to trouble you. I changed the template to use WP_Query instead of get_pages which sorted it out.
Thanks for looking anyway.
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] property of non-object errorbump…
Forum: Plugins
In reply to: [Slideshow Gallery LITE] Change user roles for Slideshow Gallery pluginI figured it out:
to do this change lines 50 & 51 in the plugin file ‘slideshow-gallery.php’ to this:
add_menu_page(__('Slideshow', $this -> plugin_name), __('Slideshow', $this -> plugin_name), 7, "gallery", array($this, 'admin_slides'), $this -> url() . '/images/icon.png'); $this -> menus['gallery'] = add_submenu_page("gallery", __('Manage Slides', $this -> plugin_name), __('Manage Slides', $this -> plugin_name), 7, "gallery", array($this, 'admin_slides'));
The number (‘, 7, “gallery”, ‘) denotes the level of user who sees the admin menu. It was set at 10, which is admin only.
I’d imagine it’s very obvious to plugin writers – but it wasn’t to me! Now I just have to remember to edit it when I update the plugin.
Forum: Plugins
In reply to: [Slideshow Gallery LITE] Change user roles for Slideshow Gallery pluginThanks Samuel.
I’ve installed Role Scoper but can’t see how I can use it to change the roles for Slideshow Gallery – the Gallery plugin doesn’t use Categories.
Is there something I’m missing?
I’m happy to hack the plugin itself if that’s easier too.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Re-occuring EventsI need this functionality too – so the plugin can handle courses which occur every Tuesday for 6 weeks kind of thing.
I notice that this feature is listed on as an ‘Upcoming Feature’. Can anyone tell me if this is imminent?
Thanks