sharon135
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Does plugin do simple table calculations and reset?I think I solved the alignment of buttons by just putting in “column3.” I am satisfied with layout now. Thank you so much for your help on this.
Forum: Plugins
In reply to: [Calculated Fields Form] Does plugin do simple table calculations and reset?Definitely better. But how can the three fields be closer together under the checkboxes fields? Thanks much for your help.
Forum: Plugins
In reply to: [Calculated Fields Form] Does plugin do simple table calculations and reset?Thanks. Layout is much better. last questions hopefully:
1. Where does the results show after clicking calculate total button? I WAS ABLE TO FIGURE THIS ONE OUT! HOORAY!!
2. How to have all buttons and results field side by side on same line?
3. Does having each field showing the number value require customized coding? ONE WAY WAS TO ADD VALUE AS PART OF THE TEXT.
https://celebratingyourjourney.com/holmes-rahe-life-stress-test-page/- This reply was modified 7 years, 11 months ago by sharon135.
- This reply was modified 7 years, 11 months ago by sharon135.
- This reply was modified 7 years, 11 months ago by sharon135.
- This reply was modified 7 years, 11 months ago by sharon135.
- This reply was modified 7 years, 11 months ago by sharon135.
Forum: Plugins
In reply to: [Calculated Fields Form] Does plugin do simple table calculations and reset?Thanks for the ideas on having buttons on same line. My main problem is I don’t understand how to do the following:
1. Using Checkboxes field type, show values for each field (i.e. Death of spouse 100
2. Have values in descending order from 100 (1st field) to 11 (value for last field), half of the fields in column 1 and other half in column 2.
3. Get Calculate Total button to work. Can’t seem to understand the info you have with your link. There isn’t a field that shows results next to Calculate Total button.Forum: Plugins
In reply to: [Calculated Fields Form] Does plugin do simple table calculations and reset?I actually used the checkboxes as field type. When putting the fields in, they show up aligned horizontally, left/right, left/right. Want them aligned vertical in 2 columns in the order I inserted them in checkbox field type so values go in descending order from 100 to 11 from column 1 and 2. Reset button works but I apologize. I read the info in your link. But I really don’t know how set Calculate button so total is seen next to button. And I would like value to be seen next to each field also.
Here’s a link to my test page.
https://celebratingyourjourney.com/holmes-rahe-life-stress-test-page/
Any help appreciated
Forum: Plugins
In reply to: [Calculated Fields Form] Does plugin do simple table calculations and reset?Here’s the page where I coded a table but the calculated total and reset buttons don’t work. Can I create this kind of table with the same layout using your plugin?
https://celebratingyourjourney.com/the-holmes-rahe-scale/Forum: Themes and Templates
In reply to: [Virtue] showing primary and secondary navigation on mobileThanks Kevin. But I decided to make a mobile menu with it all since there were only a few add’l pages to include. It seems to work fine. Will hold your code for future reference though.
Forum: Themes and Templates
In reply to: [Virtue] showing primary and secondary navigation on mobileSame issue…As a Kadence member, is there a way to have both primary and secondary menus showing on mobile devices? Or do I have to create a specific ‘mobile menu’ that has all the tabs in it?
I was about to publicize my google and found your thread. I will wait to publicize it until I receive notice of the fix. Thanks much for the heads up.
Forum: Plugins
In reply to: [Disable Emails] WordPress forum emails.I am having same problem but with just one topic forum. Here’s one I got today. https://www.ads-software.com/support/topic/send-email-with-wp-members-fields/. I no longer need to be connected to this plugin forum for now. I thought I unsubscribed but they keep coming. On this particular topic page it says “subscribe”. So I am wondering why I am still getting them since it doesn’t say “unsubscribe.” Thanks for your help on this.
Forum: Plugins
In reply to: [Enhanced Media Library] Bulk select and assignIf I pay for Pro version one time $25, can it be used on all websites where I use your plug in?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP Bruiser and WP-Members compatible?Thanks. WPBruiser actually protects and targets incoming contact forms (i.e. using Jetpack) and others prior to WP doing anything. That way no need to use captcha type fields. I’ve used it with several themes and appreciate their plug in.
WPBruiser said they will consider making an extension to ensure WPBruiser is compatible with WP-Members. Just an FYI.
- This reply was modified 8 years, 5 months ago by sharon135.
Forum: Plugins
In reply to: [WPBruiser {no- Captcha anti-Spam}] Restricting login attemptsThanks Mihai. I understand. I did see that WPB does protect Jetpack contact forms though as well as other things which I use. If possible, please notify if or when you create an extension. Thanks again.
- This reply was modified 8 years, 5 months ago by sharon135.
https://www.waterstone.celebratingyourjourney.com
Thanks. Could you clarify the use of the following code:
“But if I decide instead to go with creating menus based on login status, here’s the code you offer below to replace line in theme’s header.php file. You mention that a variable $menu is used to provide the menu name depending on the user’s login status. Does that mean I change $menu to my logged-in menu name? My logged in member menu name is “Member Pages” and is placed on topbar navigation. And the logged out menu name, “Main Menu” which is the primary and mobile navigation. I assume logged in user will be able to see both logged in and logged out menus.”<?php
if( is_user_logged_in() ) {
$menu = ‘logged-in’;
} else {
$menu = ‘logged-out’;
}
wp_nav_menu( array( ‘menu’ => $menu, ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’ ) );
?>;Forgot to mention that when users are logged in I want them to see both Member pages and Logged out pages.