Grant Mangham
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Force SSL Exclusively wrecks adminApologies. This was purely due to Chrome’s new policy of automatically blocking insecure content.
For the record, I have the same issue on both ICDSoft and Zenutech hosting. magicroundabout’s fix works for me.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] Add scroller within tabYou did what I suggested, you just did it in-line instead of in the external CSS (so no need for an ID).
To avoid the problems when switching between editors, use the external CSS instead. That way the TinyMCE editor doesn’t have to handle your code at all.
In fact, you can drop the div entirely. Instead, try
.ui-tabs-panel { overflow: auto; height: 200px; }Again, this should be in your external CSS.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] Amateur Issue: Tabs Load as Bullet PointsI’ll assume this is resolved.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] Add scroller within tabHi Steve,
I haven’t tested this, but you could try and simply wrap the longer text in div tags within the shortcodes. Lets say this div has an ID of scrolling. You could then define a height of 250px for #scrolling in your CSS.
Let me know if it works.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] Amateur Issue: Tabs Load as Bullet PointsI’m happy to help, but I’d need to at least see the page in order to diagnose the issue.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] Image in tab?Again, this could only be possible using CSS.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] Image in tab?It’s probably possible by employing some cunning CSS & JS, but there is no straight-forward method I’m afraid.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] how to use this plugin as sidebar tabsHi,
I think you mean you’d like to use the tabs within a widget. Shortcodes don’t work in widgets ‘out of the box’, but you can add the following lines to your functions.php:
add_filter( 'widget_text', 'shortcode_unautop'); add_filter( 'widget_text', 'do_shortcode');Then just add the shortcodes to a text widget in your sidebar.
Hi,
I can’t really help you much further as I don’t have access to either your theme or nivoslider.
If you’d like to make either of these available for download somewhere, I’d be happy to investigate further.
Well, the codex will give you the best advice on using wp_enqueue_style. However, you don’t have to load your CSS that way at all, you could just link to it directly in the HEAD of your document. Rehabtabs doesn’t have any special requirements as regards the CSS.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] UTF-8 and non-latin charactersThanks for the tip rolice. I’m going to simplify the tab ID in a similar way for the next release.
Hi Sebastian,
Thanks for the suggestion. I’ll give it some thought for a future version.
However, there’s nothing to stop you overriding the UI CSS with your own stylesheet already – just load it into your theme afterwards. Alternatively, from the Rehabtabs settings page you can select to handle the whole CSS yourself, and not use any of those that ship with the plugin.
Forum: Plugins
In reply to: [Rehabtabs] [Plugin: Rehabtabs] IE compatabilityHey Gerard,
Thanks for the kind words. I see no reason it shouldn’t work in IE7. IE6 might be a whole different story though!
The line that you commented out used wp_enqueue_script – this is the WP method of checking for and including scripts:
http://codex.ww.wp.xz.cn/Function_Reference/wp_enqueue_script
Your theme uses UI tabs for the 4 thumbnails within the slideshow. It calls jquery-ui.min.js, which is the theme’s version of jQuery UI. You’d be best off consulting the theme developer for more details.
Feel free to rate my plugin if you were happy with it otherwise!