Eric Daams
Forum Replies Created
-
Hi Karim,
This has just been fixed in version 1.1.1.
Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] original campaign calculated twiceJust pushed a fix for this!
The plugin has just been updated to line up with the way Appthemer Crowdfunding has changed. It works as expected now.
Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] Not working with my themeThe plugin does not add anything to the WordPress sidebar. It just affects the campaign raised amount that is displayed for a campaign.
Cheers,
EricForum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] How to add fields to the registration form?Just dropping on here to clarify regarding Pauline’s question about adding fields to the campaign form. That can be done using the
atcf_shortcode_submit_fieldsfilter. Example:function myfilter_atcf_shortcode_submit_fields( $fields ) { $fields['newfield'] = array( 'label' => 'New Field, 'default' => null, 'type' => 'text', 'editable' => true, 'placeholder' => null, 'priority' => 45 ); return $fields; } add_filter( 'atcf_shortcode_submit_fields', 'myfilter_atcf_shortcode_submit_fields' );To get a good idea of how this all pieces together, take a look at https://github.com/Astoundify/crowdfunding/blob/develop/includes/shortcode-submit.php from lines 144-313.
Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] Problems in Fundify ThemeAre you using the latest version of this plugin (1.0.2)?
Cheers,
EricForum: Hacks
In reply to: Changing a plugin's banner imageHi Mika,
That was one half of my problem. The other problem was that the new file I was adding had a question mark next to it when typing
svn stat. I was eventually able to figure this out though, so thanks for pointing me in the right direction!Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] Problems in Fundify ThemeExcellent, glad I was able to fix your issue!
Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] Problems in Fundify ThemeHi Angelo,
After another user reported an issue, I have investigated and discovered a bug, which is fixed in version 1.0.2. Could you let me know if that has resolved the issue for you?
Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] Problems in Fundify ThemeHi Angelo,
This sounds like a Fundify-specific issue then. Would you mind sending me an email via our website (http://164a.com/) with details to be able to log into your WordPress dashboard, so I can see why this might not be working?
Cheers,
EricForum: Plugins
In reply to: [All-in-one WPML Crowdfunding Campaigns] Problems in Fundify ThemeHi Angelo,
Thanks for the feedback. Couple questions:
* Which version of Appthemer Crowdfunding are you running?
* Are you using v1.0.1 of this plugin? I had a bug in the original version that needed to be fixed.Could you also send me a link to your site?
Cheers,
EricForum: Plugins
In reply to: [The Events Calendar] Plugin interfering with custom post type queryNot that I’m aware of, though there may be some other factor I haven’t thought of. This happening on the same site with two separate themes, so likely not theme related. Possibly something plugin related, but without digging further I can’t really say.
It’s interesting though that the same thing happened with bbPress, and was also reported in this other thread: http://wordpress.org/support/topic/the-events-calendar-messes-with-bbpress?replies=3
Forum: Plugins
In reply to: [The Events Calendar] The Events Calendar messes with bbPressThis is a bug in The Events Calendar. It manipulates the post type of the global $query object, which seems to wreak havoc with other plugins that introduce custom post types or custom taxonomies. For now, you can add this to your
functions.phpfile, which fixed the issue for me:function my_pre_get_posts( $query ) { global $wp_the_query; if ( $query === $wp_the_query && $query->is_main_query() && is_array( $query->query_vars['post_type'] ) && in_array( 'forum', $query->query_vars['post_type'] ) ) { $query->query_vars['post_type'] = 'forum'; } return $query; } add_filter('pre_get_posts', 'my_pre_get_posts', 11);Cheers,
EricForum: Plugins
In reply to: [Easy Restaurant Menu Manager] PHP noticesI’ve come across another handful of PHP error notices, most of them pretty along the same lines as the 2nd one I posted above. I really recommend you configure your testing server to display PHP notices, and switch WP_DEBUG to
truein wp-config.php.Cheers,
EricForum: Fixing WordPress
In reply to: 301 home redirection to newly created pageThe redirect will keep being added when you add a new post or page. There’s a fairly simple fix to the plugin you can make though, which I posted in another thread: http://wordpress.org/support/topic/422148?replies=14#post-1617309
Hope it helps someone. This issue was a major pain for me!
Cheers,
Eric