Brucenstein
Forum Replies Created
-
Found the pure text (“HTML”) field option; apologies for not searching properly first. Marking as closed.
Thanks!
FYI, in playing with the formula dealy some more I think I can “hard code” the logic I’m looking for (apologies, I completely missed the option to use a “formula” before). I’m not entirely sure how it’s going to look but I’m guessing I *can* do that.
However, I would like a message to come up depending on the logic – a simple text box – explaining the error. So in the above example if they chose yes/yes/no to the all dogs have spots/rover is a dog/rover has spots questions, I would like a non-editable textbox/label to come up that says “This is inconsistent because you previously stated all dogs have spots”.
For the life of me I can’t find out how to put in text without using a survey question or similar.
Thank you for the response, and apologies for the delay. It works right out of the box without issue – the error was mine.
Solved! It actually was super easy – you simply need to add a 100% width value to your ULs and an inherit width value to your li’s. Here’s the code:
.main-navigation ul { list-style: none; margin: 0; padding-left: 0; width: 100%; } .main-navigation li { float: left; position: relative; width: inherit; }
Forum: Plugins
In reply to: [Cyclone Slider] Slider Not Working on Custom ThemeFurther info:
I’ve narrowed it down to the cyclone-2 .js libraries not being loaded. I copied/pasted this into my header.php in my child theme and it worked:
<script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.min.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.carousel.min.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.swipe.min.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.tile.min.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.video.min.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/dark/script.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/default/script.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/standard/script.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/thumbnails/script.js?ver=2.7.6'></script> <script type='text/javascript' src='https://janeryder.com/wp-content/plugins/cyclone-slider-2/js/client.js?ver=2.7.6'></script>
Anyone know why these wouldn’t be called when I simply insert the php code generated by the slider?
Forum: Plugins
In reply to: [Cyclone Slider] Slider Not Working on Custom ThemeFYI, check out the test page I set up here.
Note there are TWO sliders on the page, those are not 2 images from the same slider. The slider stays on the first slide and doesn’t do anything thereafter (the top slider has nav arrows, the bottom does not, neither have the dots beneath the slider).
I think the problem could be the theme using an old version of JQuery (1.5). However, I’ve tried commenting out the calls to that as well as deleting ALL the .js files in the theme’s /js/ directory to no avail.