3stripe
Forum Replies Created
-
Forum: Plugins
In reply to: [JSON API User] Using this plugin to enable a custom Zapier action?Thanks for the fast response ??
So in Zapier an action can work in two different ways. (I’m going to paste the examples from Zapier in below to be clear)
I realise I can tell Zapier to hit domain.com/api/user/register/?username={{account}}&email={{account}}&nonce=8272dec9a8&etc but is this a secure way to do this?
1. A JSON only URL to POST to. Can have variables: https://example.com/api/v1/users/{{field_id}}/contacts.json
Read more at https://zapier.com/developer/documentation/actions/2. Custom Action Fields URL Route (optional)
Dynamically load action fields (custom fields). Can have variables: https://{{account}}.example.com/api/v1/users/fields.json
(Read more at https://zapier.com/developer/documentation/action-fields-custom/)Forum: Plugins
In reply to: [Instapress] Error fatal at activate pluginSame here
Forum: Plugins
In reply to: [Simply Instagram] Photos to link to actual Instagram photo page+1 for this. Can’t use it otherwise ??
+1 for this feature ??
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Custom category markers not workingHave resorted to hacking the core.php file until I figure this out ??
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Custom category markers not workingThanks for the heads up! (I copied that text from your readme btw)
It must be something else unless this is still not right:
function setBGMPDefaultIconByCategory( $iconURL, $placemarkID ) { $placemarkCategories = wp_get_object_terms( $placemarkID, 'bgmp-category' ); foreach( $placemarkCategories as $pc ) if( $pc->slug == 'shop' ) { $iconURL = 'https://www.gravatar.com/avatar/1cf0770522223715996d00a7fe911003?s=48&d=monsterid&r=g'; } else { $iconURL = get_bloginfo( 'stylesheet_directory' ) . '/img/map_marker_generic.png'; } return $iconURL; } add_filter( 'bgmp_default-icon', 'setBGMPDefaultIcon', 10, 2);
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Custom category markers not workingPS. Some of my places are assigned to multiple categories.
+1
+1 for this feature. Would be great especially for mobile users ??
Forum: Themes and Templates
In reply to: Template hierarchy for custom taxonomies in Jigoshop?According to the codex, I should be doing it like this:
taxonomy-{taxonomy}-{term}.php
But I’m not sure if term=tag ?
Forum: Fixing WordPress
In reply to: 'Repeatable' sets of fields using add_meta_box?I’ve managed to create a fixed number of related link panels… a bit hacky but it works… I guess you would need to use javascript to do this properly and with an option to repeat the link panels instead of hard coding them all!
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: eval(base64_decode(…)) in permalinksI have a similar problem on Dreamhost, all of my WP files have been injected with this at the start:
<?php /**/ eval(base64_decode("aWYoZnVuY3Rpb25f.... etc
@jremillard, do you think I’m being hacked via WordPress, or some other way?
So sick of this happening ??
Thanks.
Forum: Alpha/Beta/RC
In reply to: WP 3.0 development vs. productionI’m in the same boat, albeit with an early May launch date, and thinking of using the alpha rather than resort to using a plugin like Magic Fields to create custom post types… I’m sure the (hopefully slight) hassle must be worth it in the long run…
Forum: Plugins
In reply to: Role Manager Plugin: How to remove custom capabilities?tazme, did you have any luck with this?
i have the same problem (and also suspect it’s resulting in the dreaded ‘insufficient privileges’ message when i try to do automatic updates)
Forum: Fixing WordPress
In reply to: Prevent auto generated category and tag RSS links?Thanks!
Where did you find this out of interest?