Edward Caissie
Forum Replies Created
-
Forum: Plugins
In reply to: [BNS Inline Asides] nested asides?@8bar – Glad to help. It’s not really the solution I was looking for but it will definitely do the job in the interim. Thanks for the enhancement idea!
~Cais.
Forum: Plugins
In reply to: [BNS Inline Asides] nested asides?PS: Have a look at this extension to BNS Inline Asides … https://github.com/Cais/bns-asides-extended
You can follow the above idea of using
[aside-nested]but now it should be update safe if you put the extension into use.~Cais.
Forum: Plugins
In reply to: [BNS Inline Asides] nested asides?@8bar – Great question and it would be quite interesting to apply but unfortunately it is a deficit within WordPress that you cannot nest this type of shortcode within itself.
Although you can nest other shortcodes within
[aside](I do it quite often) you cannot nest anasideinside of anasidedue to how WordPress parses shortcodes as a single pass function. See the Shortcode API references under http://codex.wordpress.org/Shortcode_API#Nested_ShortcodesNow, that does not mean to say you could not create something to accomplish the same goal. Simply create a second shortcode that copies the first and call it, for example,
aside-nestedAlthough not really recommended a quick “hack” of the current version of the plugin will work if you add the following after the current
add_shortcodeadd_shortcode( 'aside-nested', array( $this, 'bns_inline_asides_shortcode' ) );It’s not fully tested but a quick test of this seems to work well enough, it just won’t be update safe although I will see if I can sort out a way to make it possible to be update safe.
Forum: Plugins
In reply to: [BNS Featured Category] Space between entries@therad – This looks very familiar (the solution being to add some custom CSS) … I believe you emailed me with this same question.
If not, and you need some help still, please let me know.
Thanks!
– Cais.
Forum: Plugins
In reply to: [BNS Corner Logo] Feature Request: Margins@mikeyv12 – That should be relatively easy to do with some custom CSS. Just use your browser or choice’s developer tools to locate the specific CSS elements to work with and add margin properties as appropriate.
The entire output of the plugin/widget should have at least one unique wrapper you can work with to ensure you have enough specificity to only affect images within the output.
Usually a link to where you are using the plugin, and a screen capture of the specific image(s) you want to “move” would be very helpful to allow others to make suggestions.
Thanks!
– Cais.
Forum: Plugins
In reply to: [BNS Add Widget] horizontal pages@perunga – I’m not sure I understand what you are wanting to do as it relates to this plugin. All the plugin does is add a single widget area by hooking into
wp_footerit does not control anything beyond that.– Cais.
@tsemmes – Have you looked at using a shortcode in a text widget to do this?
If you theme does not support shortcode structures in text widgets this article may be of assistance: http://wpfirstaid.com/2012/10/use-shortcodes-in-text-widgets/
~Cais.
Useful link: http://www.nextgen-gallery.com/nextgen-gallery-shortcodes/
Forum: Plugins
In reply to: [BNS Featured Category] horizontal margin@forumandorra – Yes, that element can be used to work with a few different ideas. Well done!
~Cais.
Forum: Plugins
In reply to: [BNS Featured Category] horizontal margin@forumandorra – You’re welcome!
Forum: Plugins
In reply to: [BNS Featured Category] horizontal margin@forumandorra – You will need to add some custom CSS to add a margin to the right of the image.
Something like the following should get you started:
div.bnsfc-content > a > img { margin-right: 10px; }You may need to be more specific but I believe the above will be enough. Set the value to whatever suits your tastes.
Thanks!
~Cais.
Forum: Plugins
In reply to: [BNS Featured Category] slb_exclude@forumandorra – You’re welcome!
~Cais.
Forum: Plugins
In reply to: [BNS Featured Category] slb_exclude@forumandorra – The plugin by default will show the excerpt of the post using the WordPress core function
the_excerpt(). This function does not parse shortcode structures, that is why you are seeing the[slb_exclude]shortcode in the display.I would recommend creating a custom excerpt for your posts as the easiest way for this to be sorted out.
Thanks!
~Cais.
@susischuele – Thanks for the update!
– Cais.
Forum: Plugins
In reply to: [BNS Login] How do I remove the register option?@martinl276 – Thanks!
The easiest way to not show the “Register” text is to make sure under Settings > General … Membership the checkbox for “Anyone can register” is unchecked.
I might look at adding something to do this with CSS or a filter in the next release but as is the above will work just fine if you are the only one you want to be able to login, at least as far as this plugin’s functionality is concerned.
~Cais.
@aardwark69 – You appear to be using a Cloudflare plugin or something leveraging their services which is then using their “rocketscript” software.
There is currently no work-around aside from deactivating the plugin(s) that are implementing this (scripting) cache.
Thanks!
– Cais.