Christian Freeman (codelion)
Forum Replies Created
-
@donmik You have done it! Issue resolved for me too. I can even apply my css styles to the checkbox-acceptance field now.
Thanks, and keep up the good work!
My ultimate goal with this plugin is to be able to display the number of people who have passed the quiz, and the number of people who failed it via a template tag. I would be happy to help code this functionality into the plugin. I just need a bit of direction from you to help make it happen.
Thanks again
GREAT support by the way. . .
Hello @fpcorso,
I changed the settings as you suggested, and it’s still showing me the fail page when my score is 100%. I think this plugin needs a way to simply set the passing score, and then the landing page could be conditional based on whether they passed or failed.
Forum: Plugins
In reply to: [WP Multi Network] Cannot add a networkI’m having the same issue. I realized that the url that the Add New Network button is redirecting to is entering the (http://) twice. It seems like this would be an easy fix.
This is how it appears on my site:
http://http//teamextremenetwork.com/wp-admin/network/admin.php?page=add-new-networkI’m really excited about getting this plugin working. It has the potential to something truly incredible.
Yes, it’s: successcircle.theextremetshirt.com
It’s a private site, so I set up a test user account for you.
Username: testuser
Password: testpassWhen you go to your profile and click “Send Invites”, and try to select a social network, you’ll see what I’m talking about.
Thanks again
Thanks for getting back to me on this, I really appreciate it.
Ok, so I’ve updated to 1.4.2, and it appears to be still behaving in the same way. No popu when I click on it.
Forum: Plugins
In reply to: [Private Community For BP Lite] Unblock RSS FeedsThanks a lot for your help with this. You just saved me a serious headache. Once again, great job bp-help!
Keep up the good work!
Forum: Plugins
In reply to: [CM Answers - Discussion Forum Plugin for WordPress Q&A] Sidebars are BrokenOk, it looks like I figured it out myself. I was missing a div tag on index.phtml.
One quick question though. I’m creating a learning environment and within this environment, I have classrooms set up. I need each classroom to have its own Q & A functionality. If I purchase the PRO plugin, can I set up categories and use each category to represent each individual classroom? And if so, can I only display the questions and answers from each class based on the category?
Is this possible with the PRO version? And if so, how could I set this up?
Thanks for the quick response, it looks like you guys are really on top of things in the support department, so at this point, I will definitely purchase the Pro version tomorrow.
I’ve followed your directions to the letter, and it looks like it worked! Well, it worked partially anyway.
After modifying index.phtml, I am now able to see the rest of my theme. But there is some kind of code conflict w/ the sidbars that you’ve coded into the plugin, and the sidebar that I have built into my theme.
My sidebars are showing up on the page, but for some reason, they are showing up outside of the div that they are normally contained in. And this is causing both sidebars to show up at the bottom of the page (they’re actually off of the page).
If you can help me figure out how to get my theme working with this plugin, it would be much appreciated.
Here’s the code from my index.phtml file:
<?php get_header(); ?> <div class="shirt-canvas"> <div class="shirt-content"> <div class="shirt-design-area"><?php echo do_shortcode('[layerslider id="1"]'); ?> <div class="content-outer"> <div class="content-inner"> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <div class="cma-main"> <div id="primary" class="site-content cma-content"> <div id="content" role="main"> <header class="entry-header"> <h1 class="entry-title"> <?php _e('All Questions', 'cm-answers'); ?> </h1> </header> <div style="clear:both;height:15px;"></div> <?php $currentSort = !empty($_GET['sort'])?$_GET['sort']:'newest'; ?> <ul class="cma-thread-orderby"> <li<?php if ($currentSort=='newest'):?> class="cma-current-sort"<?php endif; ?>><a href="<?php echo add_query_arg(array('sort'=>'newest'), get_pagenum_link(0)); ?>"><?php _e('Newest', 'cm-answers'); ?></a></li> <li<?php if ($currentSort=='hottest'):?> class="cma-current-sort"<?php endif; ?>><a href="<?php echo add_query_arg(array('sort'=>'hottest'), get_pagenum_link(0)); ?>"><?php _e('Hottest', 'cm-answers'); ?></a></li> <?php if (CMA_AnswerThread::isRatingAllowed()): ?><li<?php if ($currentSort=='votes'):?> class="cma-current-sort"<?php endif; ?>><a href="<?php echo add_query_arg(array('sort'=>'Votes'), get_pagenum_link(0)); ?>"><?php _e('Most Votes', 'cm-answers'); ?></a></li><?php endif; ?> <li<?php if ($currentSort=='views'):?> class="cma-current-sort"<?php endif; ?>><a href="<?php echo add_query_arg(array('sort'=>'views'), get_pagenum_link(0)); ?>"><?php _e('Most Views', 'cm-answers'); ?></a></li> </ul> <div class="cma-clear"></div> <?php do_action('CMA_show_messages'); if (have_posts()): ?> <table class="cma-thread-list"> <?php while (have_posts()): the_post(); $thread = CMA_AnswerThread::getInstance($post->ID); ?> <tr><?php if (CMA_AnswerThread::isRatingAllowed()): ?><td class="cma-thread-meta"> <div class="cma-thread-numbers cma-thread-votes"><div class="cma-thread-numbers-count cma-thread-votes-count"><?php $votes = $thread->getVotes(); echo $votes; ?></div><div class="cma-thread-numbers-caption cma-thread-votes-caption"><?php if ($votes==1) _e('vote', 'cm-answers'); else _e('votes', 'cm-answers'); ?></div></div></td><?php endif; ?> <td class="cma-thread-meta"><div class="cma-thread-numbers cma-thread-views"><div class="cma-thread-numbers-count cma-thread-views-count"><?php $views = $thread->getViews(); echo $views; ?></div><div class="cma-thread-numbers-caption cma-thread-views-caption"><?php if ($views==1) _e('view', 'cm-answers'); else _e('views', 'cm-answers'); ?></div></div></td> <?php $numberOfAnswers = $thread->getNumberOfAnswers(); ?> <td class="cma-thread-meta"><div class="cma-thread-numbers cma-thread-answers<?php if ($numberOfAnswers == 0): ?> cma-thread-no-answers<?php endif; ?>"><div class="cma-thread-numbers-count cma-thread-answers-count"><?php echo $numberOfAnswers; ?></div><div class="cma-thread-numbers-caption cma-thread-answers-caption"><?php if ($numberOfAnswers==1) _e('answer', 'cm-answers'); else _e('answers', 'cm-answers'); ?></div></div> </td> <td class="cma-thread-summary"> <div class="cma-thread-title"><a href="<?php echo get_permalink($post->ID); ?>"><?php echo $thread->getTitle(); ?></a></div> <div class="cma-thread-updated"><?php sprintf(__('updated %s by %s', 'cm-answers'), CMA_AnswerThread::renderDaysAgo($thread->getUpdated()), $thread->getLastPosterName()); ?></div></td></tr> <?php endwhile; ?> </table> <div class="cma-pagination"><?php echo paginate_links(array( 'base' => trailingslashit(get_post_type_archive_link(CMA_AnswerThread::POST_TYPE)) . '%_%', 'format' => 'page/%#%/', 'current' => max(1, get_query_var('paged')), 'total' => $GLOBALS['wp_query']->max_num_pages, 'add_args' => $currentSort!='newest'?array('sort'=>$currentSort):array() )); ?></div><?php endif; ?> <div class="cma-form-container"> <?php if (is_user_logged_in()): ?> <div style="clear:both;height:5px;"></div> <form method="post" class="cma-thread-add" id="cma-thread-add"> <input type="hidden" name="cma-action" value="add" /> <h3 style="font-size:18px;font-weight:bold;"><?php _e('Ask a Question', 'cm-answers'); ?></h3> <div style="clear:both;height:10px;"></div> <ul class="cma-form-notes"> <li><?php _e('Allow markup', 'cm-answers'); ?>: <strong>, <em>, <a></li> <li><?php _e('Wrap your code using', 'cm-answers'); ?> <pre></pre></li> </ul> <input type="text" size="50" name="thread_title" placeholder="<?php _e('Question Title', 'cm-answers'); ?>" /><br /> <textarea name="thread_comment" cols="50" rows="3" placeholder="<?php _e('What is your Question about?', 'cm-answers'); ?>"></textarea><br /> <div style="clear:both;height:15px;"></div> <label> <input name="thread_notify" type="checkbox" value="1"/> <?php _e('Notify me of follow', 'cm-answers'); ?></label><br /> <div style="clear:both;height:10px;"></div> <input id="thread_submit" type="submit" value="<?php _e('Submit', 'cm-answers'); ?>" /> </form> <?php endif; ?> </div> </div> </div> </div><!-- #content .site-content --> </div><!-- #primary .content-area --> </div><!-- #content-inner End --> <div class="fade-bottom"></div> </div><!-- #content-outer End --> </div><!-- .shirt-design-area End --> <div id="shirt-content-copyright"><p>Copyright © Team Extreme <?php echo date('Y'); ?></p> </div> </div> <!-- .shirt-content End --> </div> <!-- .shirt-canvas End --> <?php get_sidebar(); ?> <?php get_footer(); ?>Here’s the link to my Q & A page:
http://teamextremesupport.com/themedev/answers/Forum: Plugins
In reply to: [BuddyPress Groups Extras] Settings not getting savedI had this plugin working on another install. Then I had to upgrade my server and set up my site again. Now, when I try to save the settings, nothing happens. It takes me to an Oops page. This is a fresh install of WordPress 3.5.1 and BuddyPress 1.7.2. This plugin is GREAT and does EXACTLY what I need it to do! How can I get it to work?
Forum: Plugins
In reply to: [Image Wall] Having trouble getting Image Wall to displayFirst off, thanks for the nice plugin. Finally got it working, but I want it to look like the beautiful one on your site. How do I get the image wall to display various image sizes like you’ve done? Changing the settings doesn’t seem to change anything. All images display as the same size, but they are not. I’ve tried using the shortcode that you have listed as the one you use, but it doesn’t work! HELP!!!!
Here’s the shortcode I used:
[image_wall image_sizes=’thumbnail, medium, large’ column_width=” batch_size=’50’ buffer_pixels=’2000′ support_author=’false’ move_to_end=’false’ column_proportion_restrictions=” open_links_in_new_window=’true’ include_categories=” exclude_categories=” include_tags=” exclude_tags=” include_pages=’true’ background_color=’black’ gutter_pixels=’8′ corner_radius=’8′]Thanks, in advance