RiseOfLex88
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Login] Major Bug Steam login – No unique identifier for users@frdpnl no worries, after this post went quiet I contact oneall directly, your guys already fixed it a month or so back. It was a fix at the oneall end and didn’t need a plugin update.
All good now, I just forgot to mark this as resolved.
Forum: Plugins
In reply to: [WP-SCSS] Path to plugin SCSS folder?Reading from my own instructions. Just to clear this up….
Once that change is done, it points to the wp-content folder. so you can specify the options for the scss and css folders e.g.
/themes/theme_name/scss
or
/plugins/plugin_name/scssForum: Plugins
In reply to: [WP Bouncer - Limit Simultaneous Logins] WP Bouncer 3 User limitI’d like to see this added too. We’ve got a situation where a user can be genuinely logged in in two places at the same time (desktop and mobile).
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Compatibility with 4.3@lynnakvo, we’ve been running this plugin on 4 separate installs (roughly 300 sites) without problem on 4.2, I don’t think the plugin is at fault on this.
Forum: Plugins
In reply to: [wpMandrill] How to contribute? Fixed BCCBUMP!
This project seems to be dead, yet there are still willing contributors with good fixes.
Forum: Plugins
In reply to: [WP-SCSS] Path to plugin SCSS folder?Ok, further on….
I’ve found swapping ‘WPSCSS_THEME_DIR’ for ‘WP_CONTENT_DIR’ in wp-scss.php on lines 119, 131 and 132 works a little better.
Forum: Plugins
In reply to: [Kraken.io Image Optimizer] Networt/multisite support?As a workaround I’ve written the following….
add_action('init', 'cw_insert_kraken_api_settings'); function cw_insert_kraken_api_settings(){ if(!class_exists('Wp_Kraken')) return; $settings = get_option( '_kraken_options' ); if(isset($settings['api_key']) && !empty($settings['api_key'])) return; $settings['api_key'] = 'apiKeyHere'; $settings['api_secret'] = 'apiSecretHere'; $settings['bulk_async_limit'] = 4; $settings['auto_optimize'] = 0; $settings['show_reset'] = 0; $settings['api_lossy'] = 'lossless'; update_option( '_kraken_options', $settings ); error_log('Kraken API Key updated for ' . get_current_blog_id()); }
Still in testing, but it’s what i’m looking to push out to all.
Forum: Plugins
In reply to: [Kraken.io Image Optimizer] Networt/multisite support?I’d also like to see this happen, we have a multisite network which tries to make a point of handling the things like image compression without the client needing to worry.
Setting the kraken api credentials network wide would be a good start.
Forum: Plugins
In reply to: [Redirection] Redirection and Multisite: BrokenWe’re running Redirection on 4.2 multisite just fine and have been for a few years now.
I’d reinstall and try again.
Forum: Plugins
In reply to: [GP Hub - Driver Widget] Add a titleThanks, sure, I’ll take a look at adding this. Shouldn’t be too much trouble but I’m a bit busy till next weekend. I’ll see what I can do.
Alex
Ok thanks, I’ve raised this.
Forum: Plugins
In reply to: [Unyson] Using a plugin for new shortcodesOk great, that’s working for me now. Thanks so much …
For anyone else, this is the code I’ve used…
function filter_miracx_extensions($locations) { $locations[plugin_dir_path(__FILE__) . 'extensions/framework-customizations/extensions'] = plugins_url( 'extensions/framework-customizations/extensions', __FILE__ ); return $locations; } add_filter('fw_extensions_locations', 'filter_miracx_extensions', 12);
I’m not really sure if the folder structure is correct but this has evolved from a pretty early setup. The second ‘extensions’ folder contains the shortcodes.
Cheers guys
Forum: Plugins
In reply to: [Unyson] Using a plugin for new shortcodesThanks for getting back to me, I guess I missed that as a basic point.
Unfortunately that’s not the fix. The full filter code is like so…function filter_miracx_extensions($locations) { $locations[plugin_dir_path(__FILE__) . 'extensions'] = plugins_url( 'extensions', __FILE__ ); return $locations; } add_filter('fw_extensions_locations', 'filter_miracx_extensions', 12);
I’m really not sure which bit is broken now. An example of where one of the actual shortcodes reside in the plugin…
plugins/unyson-integration/extensions/framework-customizations/extensions/shortcodes/shortcodes/icon-box/config.php
I’ve tried pretty much every variation of targeting of the paths e.g.
'extensions' 'extensions/framework-customizations' 'extensions/framework-customizations/extensions' 'extensions/framework-customizations/extensions/shortcodes' etc etc
I’ve also tried pulling shortcodes into some of the higher level folders or targeting a specific shortcode folder directly and still have had no luck.
Forum: Plugins
In reply to: [WP Power Stats] Much higher stats count than jetpack statsHas this been resolved? (putting version numbers in responses would really help.)
Forum: Plugins
In reply to: [Unyson] Custom shortcodes with the Unyson pluginA very basic example theme with one or two custom shortcodes would be massively useful to hit the ground running with this plugin.
Or perhaps a zip file containing an example shortcode which could be dropped into a theme.