Ben Huson
Forum Replies Created
-
The plugin doesn’t allow you to do that out-the-box but if you are happy to do a bit of PHP coding and are familiar with WordPress filters you can add support for that via some WordPress hooks.
When a password is entered, it is checked against the password stored in the settings, but the plugin also runs the
password_protected_process_loginfilter.You could use this filter to check the value of
$password_protected_pwdand return true if it matches an alternative password.Hi, I couldn’t see where the “Our Favorite Snapshots” link was. Is it still there?
Will be fixed in the next release. See fix here.
Forum: Plugins
In reply to: [Expire Users] Compatible with Multisite?Sorry, not currently tested – I have a suspicion it may not work as expected.
Forum: Plugins
In reply to: [WP Subtitle] Put Subtitle in Title with LinkTry this:
<?php the_title( '<h2 class="entry-title" ' . hybrid_get_attr( 'entry-title' ) . '><a href="%s" rel="bookmark">', '</a>' . the_subtitle( sprintf( '<br /><a href="%s">', esc_url( get_permalink() ) ), '</a>', false ) . '</h2>' ); ?>Forum: Plugins
In reply to: [WP Subtitle] Font size too smallYou may need to do this via your theme’s stylesheet, and it will depend on where you have inserted it into the page template.
For example, if you added it to your template like this:
<?php the_subtitle( '<span class="subtitle">', '</span>' ); ?>You could then add a style in your stylesheet:
.subtitle { font-size: 1.5em; }Forum: Plugins
In reply to: [WP Subtitle] Spacing of Subtitle / ResponsiveThe subtitle will wrap by default. Your issue may be with your theme styling and how it is affecting the styling where you have inserted the title. Do you have a link to the website to preview?
Core WordPress support ticket for this issue is #8592
Forum: Plugins
In reply to: [Taxonomy Images] Limit the number of image in the queryThe
taxonomy-images-get-termsfilter is basically a wrapped for the WordPressget_terms()function:
http://codex.ww.wp.xz.cn/Function_Reference/get_termsSo in theory the following should work:
array( 'taxonomy' => 'cities', 'number' => 10 )Forum: Plugins
In reply to: [WP Subtitle] Subtitle disappears from edit post list after quick editThis should be fixed in version 2.6
Forum: Plugins
In reply to: [WP Subtitle] Installed not working/user error?The plugin doesn’t currently automatically output the subtitle on your site. You need to make changes to your theme template to output it. See [here](https://github.com/benhuson/wp-subtitle/wiki/Template-Tags) for reference.
@ajkwan do you know what version of PHP your hosting uses? The plugin should work with version 5.2.4+ I think, although I am not actively supporting it as that version of PHP has reached end of life and is no longer supported.
Forum: Plugins
In reply to: [WP Subtitle] Put Subtitle in Title with LinkSorry, wasn’t clear from the above, do you want to show the Title AND Subtitle within the link, or just the Subtitle?
If you want to show the subtitle instead of the title use:
<?php the_subtitle( sprintf( '<h2><a href="%s">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>Forum: Plugins
In reply to: [WP Subtitle] Working on blog post pageThank you for posted this.
Quick note: In the loop it’s possible to use
get_the_ID()instead of$post->ID.
https://codex.ww.wp.xz.cn/Function_Reference/get_the_IDThanks for the suggestion. I have added it to the to do list.
Ben
Forum: Plugins
In reply to: [Taxonomy Images] Woocommerce Attribute Terms ImagesThis is a duplicate of https://ww.wp.xz.cn/support/topic/woocommerce-attribute-terms-images-2