RE20
Forum Replies Created
-
Hey man, how did you fix this? Have a alot of sites that the popup just won’t appear and I can scroll on the page.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Pagination works very slowHow do turn on pagination?
Forum: Fixing WordPress
In reply to: if Shortcode is???NEVER MIND I GOT IT
<?php $field = do_shortcode('[yadayda]'); if($field !== 'A') { echo $field; } else { echo 'B'; } ?> </div>
Forum: Fixing WordPress
In reply to: if Shortcode is???Ok great thanks. now i need to figure out how to get if $field equals A show this else show b. Thoughts
Forum: Plugins
In reply to: [CoursePress Learning Management System] Radio Button ifsorry, that would have been a smart idea from the beginning. I’m using custompress from wpmu dev, and one of the custom fields I setup is a radio button. and here is the PHP shortcode they provide
<?php echo do_shortcode('[ct id="_ct_checkbox_578e5d6304573" property="title | description | value"]'); ?>
The value it will spit out will either be YouTube or Vimeo and I’m trying make the shortcode an IF state so IF value is youtube show this and IF value is vimeo show this.
Hope this helps. Thanks
Forum: Fixing WordPress
In reply to: if Shortcode is???sorry, that would have been a smart idea from the beginning. I’m using custompress from wpmu dev, and one of the custom fields I setup is a radio button. and here is the PHP shortcode they provide
<?php echo do_shortcode('[ct id="_ct_checkbox_578e5d6304573" property="title | description | value"]'); ?>
The value it will spit out will either be YouTube or Vimeo and I’m trying make the shortcode an IF state so IF value is youtube show this and IF value is vimeo show this.
Hope this helps. Thanks
Forum: Fixing WordPress
In reply to: Display Featured Images From Pages on One Main PageFOUND IT FOR ANYONE ELSE
<?php query_posts(array(‘child_of’ => 0, ‘post_type’ => ‘page’)); while (have_posts()) { the_post(); ?>
<div class=”blind-subpage”>
<?php if ( has_post_thumbnail() ) {?>
<?php the_post_thumbnail(); ?>
<?php the_title() ?><?php } else { ?>
<!– Else Don’t show anything –>
<?php } ?>
<!– closes blind-subpage –>
</div><?php } ?>
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] WordPress HTTPS StatusHey MAN,
I am using wp 3.1.3 with getshopped and trying to get ssl to work. i have WordPress HTTPS installed but still can’t figure it out.
here is a link. any thoughts would be great.
https://www.ocngolf.com/merchandise/ocn-gift-cardForum: Fixing WordPress
In reply to: Echo Posts for upcoming weekend (Friday, Saturday, Sunday))Thank. Greatly appreciated.
Forum: Fixing WordPress
In reply to: Echo Posts for upcoming weekend (Friday, Saturday, Sunday))Sure. Here is the code I am using for the weekely posts.
https://pastebin.com/Y5BfrcP5Forum: Fixing WordPress
In reply to: Echo Posts for upcoming weekend (Friday, Saturday, Sunday))No. Using a code I found just googleing and the forum.
Forum: Plugins
In reply to: [Plugin: PhotoSmash Galleries] Really nice plugin…hey bro, any chance I can remove the image titles from the gallery page?