minguy
Forum Replies Created
-
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Expand?I was going to post about this as well but found the answer here: https://ww.wp.xz.cn/support/topic/su_expand-does-not-work-properly. There are several older threads in the plugin support forum regarding this matter that went unanswered by the plugin author, including this one. You have to adjust the height (Height for collapsed state) which is set to 100 by default. Make it 0 to hide the content completely.
All the other expanding/collapsing shortcodes have a title and content so this is not very intuitive.
Ok, I figured out why it’s not showing. The form name has a comma in it. When I edit the “form_name” field in the db and remove the comma, the data shows up in admin.
So I guess this is a bug report. Please let me know if you have a temporary fix. Thanks.
thanks for the explanation, that’s what i needed to know. i will study the documentation in detail. sorry to bother you, seems like you have to repeat yourself with the same answers on your forums. your plugin is incredibly powerful but somewhat overwhelming so it wasn’t easy trying to figure out if it’s the right plugin for the job.
thanks again.
Thanks for the quick reply.
I’m referring to the RSVP form fields. Can I have forms with different fields for different events?
For example, one event asks for name, email, seat #. Another event open for registration at the same time asks for name, email, seat #, address, phone number, etc.
If this is possible, I can’t seem to figure out how to do it.
Resolved.
Never mind, I forgot I have a fancybox plugin installed. Sorry, brain shut off I guess.
Sorry, I’m not a programmer and I wasn’t sure if I was placing the shortcode in the proper place in terms of the php logic.
Thanks for the CSS.
Thanks for the reply.
Shortcode seems to be working, barring some CSS issues.
Can you just verify that I put the php code in the ideal place? Here’s the code from comments.php:
<!-- You can start editing here. --> <div id="commentsbox"> <?php if ( have_comments() ) : ?> <h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> so far.</h3> <ol class="commentlist"> <?php wp_list_comments(); ?> </ol> <div class="comment-nav clearfix"> <div class="alignleft"><?php previous_comments_link() ?></div> <div class="alignright"><?php next_comments_link() ?></div> </div> <?php else : // this is displayed if there are no comments so far ?> <?php if ( comments_open() ) : ?> <!-- If comments are open, but there are no comments. --> <?php else : // comments are closed ?> <!-- If comments are closed. --> <p class="nocomments">Comments are closed.</p> <?php endif; ?> <?php endif; ?> <?php if ( comments_open() ) : ?> <div id="comment-form"> <div id="respond"> <h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3> <small><?php cancel_comment_reply_link(); ?></small> <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p> <?php else : ?> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> <?php if ( is_user_logged_in() ) : ?> <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out »</a></p> <?php else : ?> <?php do_action( 'wordpress_social_login' ); ?> <label for="author">Name <small><?php if ($req) echo "(required)"; ?></small></label> <input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> <label for="email">Mail <small><?php if ($req) echo "(required)"; ?></small></label> <input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> <label for="url">Website</label> <input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" /> <?php endif; ?>