Rocio Valdivia
Forum Replies Created
-
Forum: Plugins
In reply to: [SPDM Shortcode Slider Multisite] Error messageThanks for the info, yes it has a problem in WP 3.6 with that warning. I’m gonna fix it and let you know asap ??
Forum: Plugins
In reply to: [SPDM Shortcode Slider Multisite] Error messageHi VIJOHN,
Yeah, I have to fix that warning, I’ll do it for the next version, thanks. But anyway, it should work even with that warning.
I’m gonna check it, so can you tell me what version of WP and PHP are you using?
Have you tried to activate the default theme and deactivate all your plugins to check if SPDM works fine like that?
Other thing, disable WP_DEBUG if you’re using it and check SPDM again.
Let me know if you get it or not!
Cheers
Forum: Plugins
In reply to: [SPDM Shortcode Slider Multisite] Examples of SPDM Shortcode Slider MultisiteHi marweis!
I’ve found that the plugin doesn’t work properly if your instalation has activated the plugin “Use Google Libraries”, because SPDM register for itself the jquery that needs from the googleapi. So, if you have activated that plugin, try to deactivate it and check if the Slider works ??
Forum: Plugins
In reply to: [SPDM Shortcode Slider Multisite] Examples of SPDM Shortcode Slider MultisiteI would try to activate the theme twentytwelve and deactivate all the plugins except this one, to know if there is any conflict with other plugins.
Forum: Plugins
In reply to: [SPDM Shortcode Slider Multisite] Examples of SPDM Shortcode Slider MultisiteMaybe the jquery is having a conflict with other one of the theme. Can you try to change the theme to Twentytwelve and to check if the shorcode in the post or page works fine? let me know if it works now.
Forum: Plugins
In reply to: [SPDM Shortcode Slider Multisite] Examples of SPDM Shortcode Slider MultisiteHi marweis,
The shortcode will not work in a Text Widget, it’s not made for that. You can try to copy and paste the shortcode in the body of a post and or a page and it will work.
Let me know if you get it ??
Hi @miled! here you have another request for BP compatible! ??
+1000 @ latinosamorir -> “It would be awesome if you can map fields from xprofile to fields from the different social networks.”
Cheers!
I totally agree with you @bertvandorp, this plugin has awesome features and flexibility, but it’s so heavy for the server that it’s been a serious problem for our Editors and Users ??
Forum: Reviews
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] JavaScript DisasterI agree, good point.
Forum: Plugins
In reply to: [CalPress Calendar] [Plugin: CalPress Event Calendar] TranslationHi Aspire2,
thanks for your reply and for adding the language support to the plugin :). Yes, I’m interested in translate it to spanish, so I will send to you the files .mo and .po when it’s ready to your email to publish it ??
Cheers!
Forum: Plugins
In reply to: [CalPress Calendar] [Plugin: CalPress Event Calendar] TranslationHi Aspire2!
So that means that the localization archives .mo and .po in the languages directory of the plugin don’t work at all?
I’m using a WP 3.4.2 (in spanish es_ES) and CalPress 1.4.422, but the plugin is still showing all the strings in English.
Any ideas?
Thanks in advance and congrats for the great plugin! ??
Rocio
Hi! I downloaded the plugin today and this error is still happening.
Thank you to Ruben.cc for the quick patch ??
Anyway, thanks for the plugin!
Forum: Plugins
In reply to: [And The Winner Is...] [Plugin: And The Winner Is…] Custom post types?You’re welcome! ??
Forum: Plugins
In reply to: [And The Winner Is...] [Plugin: And The Winner Is…] Custom post types?Hi betadog!
To make it work with your custom post types, do this:
/wp-content/plugins/and-the-winner-is/atwi.php -> line 98
Change this:
public function AddMetaBox() { add_meta_box(ATWI_DOMAIN, ATWI, array(&$this, 'ContestMetaBox'), 'post', 'side'); }
For this:
public function AddMetaBox() { add_meta_box(ATWI_DOMAIN, ATWI, array(&$this, 'ContestMetaBox'), 'post', 'side'); add_meta_box(ATWI_DOMAIN, ATWI, array(&$this, 'ContestMetaBox'), 'slug_of_your_custom_post_type', 'side'); }
Works perfectly ??
Forum: Requests and Feedback
In reply to: get_dynamic_sidebar function needed or perhaps a hook?Meanwhile it is developed in the core, I have found this one in the trunk, you can use it ??
function get_dynamic_sidebar($index = 1)
{
$sidebar_contents = “”;
ob_start();
dynamic_sidebar($index);
$sidebar_contents = ob_get_clean();
return $sidebar_contents;
}