Bobz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP REST User] Create user with custom fieldsCorrect, it’s needed to modify plugin code.
Mr. PresidentForum: Plugins
In reply to: [WP REST User] Create user with custom fieldsHm. This is not enough actually.
You need to pass form data to same action as well so I can access data sent via register form.add_action('wp_rest_user_create_user', 'user_created', 10, 2); function user_created($user, $parameters) { // Do Actions }Need to extend action in plugin L:140:
do_action('wp_rest_user_user_register', $user, $parameters)- This reply was modified 7 years, 2 months ago by Bobz.
– re-save permalinks
– check that you are making correct request, eg only POST will work for “wp-json/jwt-auth/v1/token”Right, thanks.
So CF7 plugin was heavily modified by previous developer so I can’t updated to latest version, but then I’ve added the missing method to CF7 and everything works.Forum: Plugins
In reply to: [Simple Share Buttons Adder] Filter RequestSorry, an update: https://pastebin.com/fsi8X9aR
- This reply was modified 8 years, 9 months ago by Bobz.
Thanks.
Will look out for it.Resolved by fixing my to broad pre_get_posts filter
Hi, case is closed. Was to busy to reply today sorry.
I had a pre_get_posts filter that was messing up the ‘angelleye_prevent_duplicate_payment_request’ method, and it always appeared like token was already used.
After I fixed my filter all went back to normal.
It’s just little bit strange that this issue didn’t appear before.
Makes no senseCheers
Forum: Fixing WordPress
In reply to: wp_template_uri debugThanks, I did read that.
I think it is some kind of DNS issue, but i’m not sure.Forum: Fixing WordPress
In reply to: wp_template_uri debugyeah, sure, as mentioned above: ‘I have changed, site_url / blog_url, but I’m struggling to find out how this function is determinating url.’
Hi, it works now without error.
Thanks for the fix.Cheers
Forum: Plugins
In reply to: [Fundify Geolocated Campaigns] Is this being updated for new Fundify plugin?I will make update by the end of this week that will cover both, old and the new version.
Forum: Plugins
In reply to: [Fundify Geolocated Campaigns] Viewing map on more than homepageWell, thing is that theme is acquired by other company and I never owned a licence code because this plugin was developed for a client.
Now I don’t have theme or the crowdfunding plugin anymore so I cannot give a support.
If you have a development version somewhere and you can share ftp access to me I can take a look.
Otherwise I cannot test.
If so is possible, ping me over my contact form on http://www.bobz.co.By default there is no option to display campaigns by category but I believe it can be added.
Other thing, if google map is not visible when you switch to your tab, then you need to re-init google map.Forum: Plugins
In reply to: [Fundify Geolocated Campaigns] Unexpected end of file error@egnitrex Can you be more precise please?
Forum: Plugins
In reply to: [Fundify Geolocated Campaigns] Viewing map on more than homepageYou can just add shortcode into content area, or if you are inserting it in a template use:
<?php echo do_shortcode('[myshortcode]'); ?>