iammathews
Forum Replies Created
-
Forum: Plugins
In reply to: [FAQs Shortcode] How to collapse all FAQs when FAQ page is first displayed..Hey,
In the file
faqss.phpon line237.Change:
$shortcodeOutput .= '<li><a href="#' . $v->slug . '"' . ( $faqssTermsCounter == 0 ? ' class="active"' : '' ) . '>' . $v->name . '</a></li>';To:
$shortcodeOutput .= '<li><a href="#' . $v->slug . '">' . $v->name . '</a></li>';Hope this helps.
Forum: Reviews
In reply to: [FAQs Shortcode] Nice start to a FAQs sectionThanks for your feedback! The plugin was made for this reason, as there will never be something that “fully” fits anyone’s needs.
I am glad and impressed with the changes you’ve made, and thanks again for choosing my plugin over others.
Forum: Plugins
In reply to: [Icon Links Widget] Error in AdminThanks for this. I can confirm it will work, but this is installation dependent. Some installations will not even get this error notice.
I will amend this fix, keep an eye out for the update coming soon.
Thanks for your expertise π
Forum: Reviews
In reply to: [FAQs Shortcode] Works. Plain and simpleThanks for your feedback! You’re a legend.
Forum: Plugins
In reply to: [FAQs Shortcode] Only show certain categoriesHey Antsley,
At this moment you can only add one list of FAQs. That said, all the categories added will show, and show the FAQs for those categories specifically.
So the only way for now is to remove the categories. We’re looking at releasing a premium version that allows you to create multiple FAQs lists, with selected categories.
Or a CSS solution for you to hide respective categories, in your case.
Hope this answers your question. Thanks!
Forum: Plugins
In reply to: [FAQs Shortcode] FAQs shortcode plugin show twiceTopic closed.
Forum: Plugins
In reply to: [FAQs Shortcode] FAQs shortcode plugin show twiceI will amend a fix in the next release. Which will be later today/early tomorrow.
Thanks again!
Forum: Plugins
In reply to: [FAQs Shortcode] FAQs shortcode plugin show twiceCan you please check that the shortcode does not appear twice in your content:
[faqsIf you can also send me a link to your website page that this is happening, I can assess this further.
This definitely should not happen.
Forum: Reviews
In reply to: [FAQs Shortcode] Cannot see the settings page to generate shortcodesThanks for your suggestion. I have explained it under the FAQs tab, but I will put it under the installation tab as well.
Forum: Networking WordPress
In reply to: Grouped AccountsThanks for you input here. So no, the store will not be shared, it’s more the user groups that would be shared.
So people can buy things (capabilities), from the main site but if they belong to a group. The group members will also be able to use what was purchased.
Entry level will be a single person buying his own capabilities, but business level when they buy capabalities to lets say 10 posts, it can be used whoever is part of the business group.
I’ve found this plugin so I will have to test it out and see if this works for me/my use-case.
Forum: Themes and Templates
In reply to: [Fukasawa] No sidebar on tabletThis is the result of the theme being responsive and should it have shown the sidebar, it would have been on the top of the content which generally is not a nice experience.
These kind of customizations are left up to you. You can easily register a new sidebar.
http://codex.wordpress.org/Function_Reference/register_sidebar
Forum: Themes and Templates
In reply to: [Fukasawa] Remove header from postsYou would need to remove the featured image call in the
single.phpfile to remove the image from the template completely.This would however, remove the image from all posts.
Forum: Themes and Templates
In reply to: [Fukasawa] Menu Icons Lost in Child ThemeWhen you enqueue your styles, you should enqueue the glyph-icon library as well. This is the exact code I would use in my child theme:
// Enqueue Stylesheets add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX ); function enqueue_child_theme_styles(){ wp_enqueue_style( 'fukasawa_parent_genericons', get_template_directory_uri() . '/genericons/genericons.css' ); wp_enqueue_style( 'fukasawa_parent_style', get_template_directory_uri() . '/style.css', array( 'fukasawa_parent_genericons' ) ); wp_enqueue_style( 'fukasawa_child_style', get_stylesheet_uri(), array( 'fukasawa_parent_style' ) ); }That said, you do not have to include the
@importin your stylesheet.Forum: Themes and Templates
In reply to: [Fukasawa] Font Weight: How do I had more font weights?You would have to create a child theme in this instance and maybe add the alternative font weight to a class where you would assign the class to any elements you need the specific font weight.
Forum: Plugins
In reply to: [Admin Menu Editor] Toolbar Editor Add-on (Per User)Maybe having more people buy the plugin for the same reason, we could get the functionality.
Unless you open-source it and let us contribute π