John Gardner
Forum Replies Created
-
Forum: Plugins
In reply to: [Arconix Shortcodes] Buttons with the same size (width)?Hi,
Yes, you can sometimes have buttons with the same width — you’d need to find a way to target the button(s) via CSS to set the width parameter in the specific instances where you want to change their default behavior. Unfortunately there’s no universal code snippet for that as it depends on the theme’s CSS and how the menu is being inserted.
Forum: Plugins
In reply to: [Arconix FAQ] Styling Item ContentHi,
Thanks for using my plugin. The spans you’re seeing are not being generated by my plugin. If you don’t see those span tags in the text view of the individual FAQ page then there’s another plugin or something else adding those tags. This is what the HTML looks like on my demo site:
All that aside, if you want to override my CSS and can’t because of
!important
tags the best way to do so is to copy thearconix-faq.css
from theincludes/css
directory to the root directory of your theme and then you can edit that file to your heart’s content. My plugin will load your file in place of the plugin’s.Please let me know if you need anything else.
Hi Cyndi,
Thank you for using my plugin. I’m not sure I understand your issue. Do you have a link to a page where this is occurring so I may see the behavior in action?
Forum: Plugins
In reply to: [Arconix FAQ] Can I have two different FAQ pages?Hi,
Thanks for using my plugin. You can put the shortcode on as many different pages as you like. What is giving you the impression that you can only segment groups on one page?
Forum: Plugins
In reply to: [Arconix Portfolio] Multiple PortfolioHi,
Thank you for using my plugin and I apologize for the delay. Unfortunately based on how the plugin is currently structured what you’re looking to do can’t be done but I believe someone who understands WordPress and PHP should be able to code a custom implementation of my plugin to do what you’re looking for.
Forum: Plugins
In reply to: [Arconix FAQ] FAQ PermalinkHi,
If you go to Settings > Permalinks and click Save do the links start working?
Forum: Plugins
In reply to: [Arconix FAQ] Required minimum user level?Hi Trisha,
On my roadmap is integration with the popular Members plugin. I was thinking that might make more sense than trying to create my own settings page for restricting access. What do you think?
Forum: Plugins
In reply to: [Arconix Shortcodes] Box with rounded borders?Hi,
Add the following to your theme’s
style.css
file:.arconix-box { border-radius: 4px; }
If you want a larger or smaller curve, simply increase or decrease the number above.
- This reply was modified 8 years, 5 months ago by John Gardner.
Forum: Plugins
In reply to: [Arconix Shortcodes] Tab Icon ColorHi,
You can add a border to the top of the tabs and color it however you’d like. Depending exactly how you want that to work and under what conditions — display different colors per tab, color the active tab differently, etc — you’ll need to set up the CSS differently but here’s a basic example:
ul.arconix-tabs a { border-top: 1px solid <html color code>;
Forum: Plugins
In reply to: [Arconix FAQ] Feature Suggestion – auto open when linkingHi,
Thanks for using my plugin. I’ll be working on adding that feature in the next release. You can follow its progress here: https://github.com/j-gardner/arconix-faq/issues/9
Forum: Plugins
In reply to: [Arconix FAQ] Error in php7Hi,
I haven’t finished the next update. If you’d prefer to update the library yourself you absolutely can… you can download the library from here: https://github.com/GaryJones/Gamajo-Dashboard-Glancer/releases/tag/1.0.2
Forum: Plugins
In reply to: [Arconix Portfolio] Displaying the Portfolio ProblemThanks for the screenshots, though unfortunately they’re not much help in this instance.
In order to see what’s really going on I need to be able to look at the site’s page source and view the site with Chrome’s Dev Tools. Doing so will allow me to determine, as I indicated in my initial response, whether the plugin’s stylesheet is being loaded at all and/or whether another stylesheet is overriding my plugin’s rules. Ultimately I won’t be able to fix the issue you’re experiencing but I’ll at least be able to point you in the direction of a fix.
If I can’t visit the site, then I can’t provide any further assistance.
Forum: Plugins
In reply to: [Arconix Portfolio] Displaying the Portfolio ProblemHi,
Thanks for using my plugin and for the kind words. You shouldn’t need to do anything for the portfolio to show in a grid as that’s handled by my plugin’s stylesheet. Do you have a link to the site where this is in use? Either my stylesheet isn’t being loaded or it’s somehow being overwritten… I can’t tell without looking.
Forum: Plugins
In reply to: [Arconix FAQ] arconix-faq.js not loading and accordion not workingHi,
Sorry to hear about the troubles. While the CSS is loaded in the header, the Javascript is loaded in the footer. Make sure your
footer.php
file haswp_footer()
before the closing</html>
tag.Forum: Plugins
In reply to: [Arconix FAQ] Hide title when displaying only one groupHi Maggie,
Thank you for the feedback. I’ll look into giving a shortcode option to hide the group title. In the meantime if you add the following css to your theme’s
style.css
file it will prevent the group titles from displaying on any page..arconix-faq-term-title { display:none; }