choibc
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] WordPress 4.4 – User Approved Filter BrokeAny plan to fix the bug?
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] All sections in one page+1 ??
Forum: Plugins
In reply to: [Youtube Channel Gallery] Playlist sort orderI found it. Thank you for great plugin.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Styling iframe impossibleHi, PoseLab.
Thank you for the response.
In my opinion, bootstrap framework https://twitter.github.com/bootstrap is for responsive web. I understand that iFrame is difficult for repsonsive web. After simple change of class for iframe, I could make site responsive.
Never mind my request. It is just a request for possible consideration.
Thank you for wonderful plugin and have a great day.Forum: Plugins
In reply to: [Youtube Channel Gallery] Styling iframe impossibleI uploaded revised php file here.
https://montgomerykmc.org/wp-content/pub/youtube-channel-gallery-revised.zip
I just added new variables for iframe class.
If you could consider to apply this change to your original code, I will appreciate.Forum: Plugins
In reply to: [Vimeo Channel Gallery] How to show title and description of videoI uploaded revised file for your review.
https://choibc.wordpress.com/2013/01/30/vimeo-plugin-to-display-videos/
If you could improve this plugin, I highly appreciate.
Forum: Plugins
In reply to: [Vimeo Channel Gallery] How to show title and description of videoI added code like below to display video info into page.
I wish to control this in [Vimeo_Channel_Gallery] options.line 234
$video_description = $video->description;
line 254
$content.='<div class="vmcinfo">'; $content.='<p class="lead">'.$video_title.'</p>'; $content.='<p class="muted">'.$video_description.'</p>'; $content.='</div>>';
I like your theme too.
Forum: Plugins
In reply to: [Responsive Slider] [Plugin: Responsive Slider] Internet ExplorerjQuery(function(){ // Main Menu jQuery('.menu').tinyNav({ active: 'selected', // <-- ERROR HERE
If you comment above code responsive-plugins.js, no error.
Forum: Plugins
In reply to: [bbPress] bbpress page tempalteHi, Ivonoconfa,
Could you give us example file?
Thanks,
Forum: Themes and Templates
In reply to: Menu to P2 themeHi, GodspowerOboido.
I attach file for you.
Please use carefully since I made this long time ago…Forum: Themes and Templates
In reply to: Menu to P2 themeHi, GodspowerOboido
Your site looks nice.
I moved to different theme for mgmkorean.org
Instead, https://montgomerykmc.org still has P2 modified theme.
Header in mgmkorean.org is not flash, it is based on jQuery+CSS.
Below php are added to main index page.<!-- slideshow --> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/includes/slideshow.css" type="text/css" media="screen" /> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/includes/jquery.cycle.js"></script> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/includes/slideshow.js"></script> <div id="home-top" class="clearfix"> <div id="slideshow" class="clearfix"> <div class="slides"> <?php query_posts("showposts=5&category_name=Headline"); ?> <ul class="clearfix"> <?php $i = 0; while (have_posts()) : the_post(); $i++;?> <li id="main-post-<?php echo $i;?>" onclick="location.href='<?php the_permalink()?>';" style="cursor: pointer; background:url(<?php echo get_the_thumb(540, 250);?>) top left no-repeat;"> <div class="entry"> <h2><a href="<?php the_permalink()?>" rel="bookmark" class="title"><?php the_title();?></a></h2> </div> </li> <?php endwhile;?> </ul> </div> <!--slide--> <?php rewind_posts(); ?> <ul class="slides-nav"> <?php $i = 0; while (have_posts()) : the_post(); $i++;?> <li class="<?php if ($i == 1) echo "on"; ?> clearfix" id="post-<?php echo $i;?>"> <a href="#main-post-<?php echo $i;?>" title="<?php the_title();?>"> <?php echo the_thumb("post_thumbnail thumbnail thumbnail post_thumbnail", 150, 150);?><?php the_title();?><br /> <?php the_time('j M Y')?> | <?php if (function_exists('the_views')) { the_views();}?> </a> </li> <?php endwhile;?> </ul> </div> </div>
I’d like to customize buttons too.
Any idea???Forum: Plugins
In reply to: WP Nivo Slider Images Not AppearingHi, I manage to make it working.
First modify wp-nivo-slider.php like below
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php $thumb_attr = array( 'title' => get_the_title() ); ?> <?php the_post_thumbnail('featured-thumbnail', $thumb_attr ); ?> </a>
And added below to functions.php of theme.
add_image_size( 'featured-thumbnail', 650, 240, true );
That is it. You need to edit posts and select “featured thumbnail” to display.
Please refer this site. https://montgomerykmc.org
I use up-to-date wordpress.Forum: Plugins
In reply to: bbpress wordpress pluginI am curious about www.remarpro.com forum. Is this site based on standalone bbpress?