croixhaug
Forum Replies Created
-
I’m going to mark this item resolved, but please reopen it if you’re still having trouble ??
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Compatibility with IEI’m going to mark this item resolved, but please reopen it if you’re still having trouble ??
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Compatibility with IEVersion 1.3 is scheduled for next Friday which should address this issue, thanks for your patience!
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Features I can REALLY useHi archerdata, just following up to let you know that we released version 1.1.1 which has a number of improvements. However, it also fixes the default layout (it was always intended to show the More Info box to the left of the map). However, I’m guessing that this change will affect your customization.
The pro version of course has different pre-built layout options for showing the More Info box on the left, right, bottom, and in a lightbox if those options are preferable based on your use case.
Let us know if you have any further issues or questions with the plugin
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Compatibility with IEJust wanted to follow up with you, we still need to look into this further. We should have some more information by the end of next week, the IE issues are something we’re planning to address in an update soon. Thanks again for letting us know
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Screenshots…Just marking this thread as resolved
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Compatibility with IEWe havent seen that, thanks for letting us know! Can you tell us which version of IE you’re using and what version of Windows you’re on?
Forum: Plugins
In reply to: [Interactive Image Map Plugin - Draw Attention] Can't get the plugin to workHi Priscilla, this is fixed and working on your site now. We’ve released it as a fix in 1.0.2, thanks again for the bug report!
Forum: Plugins
In reply to: [BuddyDrive] BDrive 1.1 is not working with BuddyPress 1.8 and bbPress 2.3.2@eriko79, you really need to provide more details in order to get any useful help from the author.
I can confirm that I have BuddyDrive working on BP 1.8 and bbPress 2.3.2 without issue as well, there is something specific to your install. I’m sure @imath would be happy to help if he had some more info to go on, at least the “same error” message you’re getting.
Forum: Plugins
In reply to: [Simple Client Dashboard] Gravity FormsHey Gregg,
I opted to leave this out of the plugin as most webmaster/client users shouldn’t need to edit forms – or could be dangerous if they are given that capability ??
That said I’ve added it as an option accessible via a filter:
1. Update to version 1.0.8
2. Add a filter (a mu-plugin for example):
add_filter( ‘td-webmaster-user-roleoption_cap_gravityforms_edit_forms’, __return_true );3. Deactivate and reactivate plugin
Users should now be able to edit gravity forms as well. Let me know if you have any problems!
Forum: Plugins
In reply to: [WP Help] [Plugin: WP Help] Force Sync ButtonYou can force a sync on the “client” installation to pull down from the source by clicking the “Save Settings” button.
Forum: Plugins
In reply to: [OAuth Provider] [Plugin: OAuth Provider] Request tokens / auth processFor those googling who have the same issue, after much digging here is a PHP snippet that will generate a valid signed oauth request using HMAC-SHA1. This is a working sample of a request_token URL using this plugin
$oauth_args = array( 'oauth_consumer_key' => '**************', 'oauth_timestamp' => time(), 'oauth_nonce' => wp_create_nonce(time()), 'oauth_signature_method' => 'HMAC-SHA1', ); $request = new OP_OAuthRequest('GET', home_url('oauth/request_token'), $oauth_args); $request->sign_request( $signature_method = new OP_OAuthSignatureMethod_HMAC_SHA1(), $consumer = new OP_OAuthConsumer( $key = '**************', $secret = '**************' ), $token = null ); $request_token_url = $request->to_url();