stinoga
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Minify URL rewriting is not working. If using apache,…Glad I could help Tony!
Forum: Plugins
In reply to: [W3 Total Cache] Minify URL rewriting is not working. If using apache,…Do you have access to your .htaccess file? Can you ssh/ftp in and edit it?
If so, you can bust cache with either URL rewriting or query strings. Here is some further info:
https://robandlauren.com/2013/04/11/busting-cache-in-wordpress/
Forum: Plugins
In reply to: [W3 Total Cache] Refresh query string for assetsOk, I’ve got a pretty decent solution for this. I’ve appended a version number to my CSS and JS based on the file modified times. This busts the cache after I deploy any changes to these files. I minify all my css and js into one file each, so I need one variable for each file, for example:
$cacheBusterCSS = filemtime( get_stylesheet_directory() . ‘/library/css/style.css’);
$cacheBusterJS = filemtime( get_stylesheet_directory() . ‘/library/js/scripts-ck.js’);wp_register_style( ‘bones-stylesheet’, get_stylesheet_directory_uri() . ‘/library/css/style.css’, array(), $cacheBusterCSS, ‘all’ );
wp_register_script( ‘bones-js’, get_stylesheet_directory_uri() . ‘/library/js/scripts-ck.js’, array( ‘jquery’ ), $cacheBusterJS, true );Forum: Plugins
In reply to: [W3 Total Cache] Refresh query string for assetsYou guys find an answer to this? I’m also interested…
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Venue address errorAwesome. I’ll look for it. Thanks Stephen!
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Venue address errorOdd. I have it added to the page list (fallback), but that doesn’t seem to be working, even though all of my other menu items are pages.
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Venue address errorThanks Stephen. Updating fixed the issue for me, but oddly enough, it dropped the shows link from my menu (I renamed it to shows in the admin panel). Any ideas on that?
Thanks again Stephen,
_RobForum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Getting an events event-categorySite should be live in a few days Stephen. The only other callout I have is that it would be nice if the event limit on the archive page didn’t reflect that of the blog. I had to set mine to 50 so everything would show, but this creates one hefty blog page.
Sorry to nitpick, just want to help. Thanks a ton for this awesome plugin!
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Getting an events event-categorySure! Both of those are cool with me Stephen. Anything I can do to help! The site should be live in a couple weeks, I can give you the link then.
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Getting an events event-categoryAwesome. Thanks for all the help on this Stephen! I’ll make sure to send you a link when this project is live! Here is the final result:
<article id="showList"> <?php //instantiate the first year variable, to be used later $firstYear = ""; ?> <?php while ( have_posts() ) : the_post(); ?> <?php //grab the year attached to each post $currentYear = eo_get_the_start("Y", $post->ID); //check if the current year is equal to the year from the previous event, //if it is, set the firstyear to currentyear, and echo the data as the data header if ($firstYear != $currentYear) { $firstYear = $currentYear; echo "<header class='entry-header'><h2 class='year-title'>" . $firstYear . "</header></h2>"; } ?> <div id="show-<?php the_ID(); ?>" class="show-content"> <div class="showLeft"> <!-- Output the date of the occurrence--> <?php echo eo_get_the_start('M jS'); ?> - <?php echo eo_get_the_end('M jS'); ?> </div> <div class="showRight"> <?php //build out the link tag if a link is added to the show $linkVar = get_post_meta($post->ID, 'Link', true); if ($linkVar){ echo '<a href="' . $linkVar . '">'; } ?> <?php the_title(); ?> <?php //build out the closer if a link is added to the show if ($linkVar){ echo '</a>'; } ?> </div> </div> <?php endwhile; ?><!----The Loop ends--> </article>
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Getting an events event-categoryThanks for the reply Stephen. That is actually what I’ve been doing, although that seems to bring back a full list of the custom taxonomies. I would like to just return the event-category that is selected.
In my example, I am trying to sort the returned events under year headers, like so:
2011:
eventa
eventb2012:
eventcSo when I write out the posts in the loop, i’d like to be able to show only posts using the event category of 2011, 2012, etc.
What do you think?
Thanks for the help!
_RobForum: Plugins
In reply to: [OpenID] [Plugin: OpenID] Developer documentation brokenAh, ok, that makes sense. Thanks a ton Will!
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Changing Events Link NameThanks a ton Stephen. I’ll make the update in the function for now, so I can get this project done. I’ll send you a link once the site is live, and definitely send a little donation your way!
Forum: Installing WordPress
In reply to: installing wordpress on bludomain errorI am having the same error. Did you ever get this resolved??