Title: existonline's Replies | WordPress.org

---

# existonline

  [  ](https://wordpress.org/support/users/existonline/)

 *   [Profile](https://wordpress.org/support/users/existonline/)
 *   [Topics Started](https://wordpress.org/support/users/existonline/topics/)
 *   [Replies Created](https://wordpress.org/support/users/existonline/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/existonline/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/existonline/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/existonline/engagements/)
 *   [Favorites](https://wordpress.org/support/users/existonline/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Bootstrap Shortcode] 404 try to load script in back office](https://wordpress.org/support/topic/404-try-to-load-script-in-back-office/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/404-try-to-load-script-in-back-office/#post-6602389)
 * Hi osCitas Themes, I’m having the same issue as [@flashnet69](https://wordpress.org/support/users/flashnet69/)
   as well. Just wondering if you’ve found a solution to the issue yet and if you
   plan on releasing an update soon to fix this? Thanks!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Block Referer Spam] Intuitive & Just Works!](https://wordpress.org/support/topic/intuitive-just-works/)
 *  Thread Starter [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/intuitive-just-works/#post-7991153)
 * My pleasure Rob! Just giving kudos where it is due! And yes, I’ll let you know
   if I ever need a hand with anything where I think your skills would be helpful
   🙂
 * Thanks,
    Geoff
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/page/2/#post-3436330)
 * No worries widecast! It wasn’t just me though, Dave Navarro, Jr helped 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436319)
 * No worries jonahcoyote! I was just stoked to have figured that part out, but 
   it wasn’t all me – dnavarrojr was a big help also from the beginning of the topic
   🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436316)
 * All done! I’m pretty darn sure that I got it correct this time! Hopefully this
   helps other people out there with the same problem 🙂
 *     ```
       <li <?php echo $class ?>>
       	<div class="when">
       		<?php
       			$space = false;
       			$output = '';
             			$s_dt = tribe_get_start_date( $post->ID, false );
       			$s_dt_time = tribe_get_start_date( null, false, 'g:ia' );
             			$e_dt = tribe_get_end_date( $post->ID, false );
       			$e_dt_time = tribe_get_end_date( null, false, 'g:ia' );
   
             			echo tribe_get_start_date( $post->ID ); 
   
             			if( tribe_is_multiday( $post->ID ) || !$event->AllDay ) {
       				if( $s_dt != $e_dt ) {
       					echo ' – '. tribe_get_end_date($post->ID);
       				} else if( $s_dt_time == $e_dt_time ) {
       					echo '';
       				} else {
       					echo ' - '. str_replace( $e_dt . ' ', '', tribe_get_end_date( $post->ID));
       				}
       		 	}
             		?>
       	</div>
       	<div class="event">
       		<a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
       	</div>
       </li>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436315)
 * Actually… No, that didn’t work! Grrr! My bad! I’m gonna keep tinkering but I 
   think I still need help with this one please 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436314)
 * No need to stress dnavarrojr, I’ve figured it out myself mate! It was pretty 
   easy, once I actually looked at your code a bit further than the end of my nose!
   Haha! Here’s what I did:
 *     ```
       <li <?php echo $class ?>>
       	<div class="when">
       		<?php
       			$space = false;
       			$output = '';
             			$s_dt = tribe_get_start_date( $post->ID, false );
             			$e_dt = tribe_get_end_date( $post->ID, false );
   
             			echo tribe_get_start_date( $post->ID ); 
   
             			if( tribe_is_multiday( $post->ID ) || !$event->AllDay ) {
       				if( $s_dt != $e_dt ) {
       					echo ' – '. tribe_get_end_date($post->ID);
       				} else if( $s_dt == $e_dt ) {
       					echo '';
       				} else {
       					echo ' - '. str_replace( $e_dt . ' ', '', tribe_get_end_date( $post->ID));
       				}
       		 	}
             		?>
       	</div>
       	<div class="event">
       		<a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
       	</div>
       </li>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436313)
 * You sir, are a legend! Thanks so much for this code dnavarrojr! I’m sure many
   other people will appreciate you sharing this as well 🙂
 * Just another quick question (hopefully quick!)…
 * I know that within the plugin’s current capabilities in the WP admin area, it
   doesn’t allow you to NOT SET an end date/time. So you can set a start date/time,
   but basically you’re “forced” to set an end date/time – because in some instances
   you might just want to set a start date/time and NO end date/time.
 * Do you have any ideas on how one would get past this?
 * I had a thought – just for example – say you set the START date/time to “23 March
   2013 6:00pm”, then you set the SAME date/time for the END date/time – Do you 
   think you would be able to write code that checks against this and “just doesn’t
   apply an end date/time”?
 * I hope that made sense! Thanks in advance for your help if you’re able to help
   🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436311)
 * No worries, that would be great! Thanks so much 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_is_multiday returning true, falsly](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/tribe_is_multiday-returning-true-falsly/#post-3436309)
 * dnavarrojr – please post up your solution! I’m trying to achieve the same result
   as shadow772 as well. I have been scouring the net for hours searching for a 
   solution and have had no luck! 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom user picture to be choosen from list](https://wordpress.org/support/topic/custom-user-picture-to-be-choosen-from-list/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/custom-user-picture-to-be-choosen-from-list/#post-2189840)
 * Bump! I’m looking for a similar plugin too.
 * I’ve probably spent over a week in working hours researching and looking for 
   solutions, and all have not met my requirements!
 * The following plugins don’t cut it as far as I’m concerned for what I believe
   we’re looking for:
 * [http://wordpress.org/extend/plugins/user-photo/](http://wordpress.org/extend/plugins/user-photo/)
   
   [http://wordpress.org/extend/plugins/localised-comment-avatar/](http://wordpress.org/extend/plugins/localised-comment-avatar/)
   [http://wordpress.org/extend/plugins/add-local-avatar/](http://wordpress.org/extend/plugins/add-local-avatar/)
   [http://wordpress.org/extend/plugins/post-avatar/](http://wordpress.org/extend/plugins/post-avatar/)
 * I’m sure I’ve probably tried them all! So if someone could help Jamguy and I,
   that would be awesome thanks!
 * I’m just surprised that a plugin hasn’t been made for this already. And please
   don’t suggest Gravatar – everyone in forums just seems to say “use that”. It’s
   not always the way to go ya know 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: ProPlayer] fatal error](https://wordpress.org/support/topic/plugin-proplayer-fatal-error/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/plugin-proplayer-fatal-error/#post-1262968)
 * [@isa](https://wordpress.org/support/users/isa/).goksu – Thanks for looking into
   this for us.
 * Sorry, do you know where I can find my phpinfo() file?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: ProPlayer] fatal error](https://wordpress.org/support/topic/plugin-proplayer-fatal-error/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/plugin-proplayer-fatal-error/#post-1262957)
 * **Update:** I just upgraded to WP 2.8.6 and I’m STILL getting that same error!
 * I logged out and logged back in and tried again – same error!
 * Not having much luck with this… It’s a real shame… this ProPlayer plugin looks
   really powerful, but it doesn’t want to activate for starters!
 * Any help would be much appreciated.
 * Cheers,
    EO
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: ProPlayer] fatal error](https://wordpress.org/support/topic/plugin-proplayer-fatal-error/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/plugin-proplayer-fatal-error/#post-1262956)
 * Yeah, I’ve got WP 2.8.5 too and getting a very similar error!
    I’m trying to 
   activate version 4.7.6 of the ProPlayer plugin. Someone please help us 🙁
 * Plugin could not be activated because it triggered a fatal error.
 * Parse error: parse error, unexpected ‘]’, expecting ‘(‘ in /wp-content/plugins/
   proplayer/pro-player.php on line 65
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: WP e-Commerce] Variation Stock does not work](https://wordpress.org/support/topic/plugin-wp-e-commerce-variation-stock-does-not-work/)
 *  [existonline](https://wordpress.org/support/users/existonline/)
 * (@existonline)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-e-commerce-variation-stock-does-not-work/#post-1264869)
 * Yeah, I think I’m having a very similar issue! 🙁
 * I view a Product’s details; then look at the “Price and Stock Control” options;
   then click the tick box next to “I have a limited number of this item in stock
   etc”; then enter “5” items and click the “Update Product” button down the bottom
   of the page.
 * I went to the frontend of the website where the Product is in the Products Page.
   Then entered “5” into the “Quantity” field (assuming you have this option enabled
   in settings) and click the “Add to Cart” button.
 * Sure, fine, that seemed to work… now, I went to the Checkout and clicked the “
   Remove” button to REMOVE the 5 items from the shopping cart. All appears to be
   fine, right… I don’t think so!
 * I went back to the Product in the Products Page and tried to repeat the process
   above… Didn’t work for me! Even entering “1” in the Quantity field didn’t work!
   It appears I’m “out of stock” on that product now, even though when I go back
   into WordPress to see the product’s details – it still says there’s 5 items in
   stock!!
 * FYI, I’m using WP 2.8.5 and version 3.7.5 of the wp-e-commerce plugin. I hope
   someone can help us; much appreciated; thank you in advance.
 * [http://wordpress.org/extend/plugins/wp-e-commerce/](http://wordpress.org/extend/plugins/wp-e-commerce/ )

Viewing 15 replies - 1 through 15 (of 15 total)