anspaujd
Forum Replies Created
-
Ok, I have done this but nothing is syncing to the calendar or from the calendar.
I have one staff member as it I am using the system as a room reservation tool and everything is synced and connected but nothing is showing on the Google Calendar? Any ideas?
You can see the reservation tool and Google Calendar at the links below:
https://hammerdev.oru.edu/reserve/
Calendar ID: [email protected] (I’ve made public currently so you should be able to see it)
Forum: Networking WordPress
In reply to: Cannot Access New Sub-SiteHow would I check this since i do not have direct access to apache on my servers?
Forum: Networking WordPress
In reply to: Cannot Access New Sub-SiteAlso, yes the .htaccess is located in /multisite/
Should it be located somewhere else?
Forum: Networking WordPress
In reply to: Cannot Access New Sub-SiteI had created a sub-directory such as “/kgeb/” and nothing happened. I just deleted both the sub-directory I previously created and the sub-site from the multisite install.
I just tried creating a new sub-site and I am still having the same issue. It seems that the multisite install is not creating or is not allowed to create the sub-directory site.
Thoughts?
Also, I am not seeing any new databases being created in phpmyadmin. Please advise?
Forum: Networking WordPress
In reply to: Cannot Access New Sub-SiteI am using sub-DIRECTORIES I am trying to set the site up for testing at wpdev.oru.edu/multisite
The main network site works but the subdirectory of wpdev.oru.edu/multisite/kgeb doesnt load anything and this is where the confusion starts.
My .htaccess is as follows:
RewriteEngine On RewriteBase /multisite/ RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]
and my wp-config file includes the following:
/* MULTISITE INFO */ /******************/ define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'wpdev.oru.edu'); define('PATH_CURRENT_SITE', '/multisite/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
I am not sure what is wrong with it as I folllowed the walk through prior to setting up the additional sub-site but it never created anything for the dashboard or admin functions.
Any ideas of where I went wrong?
Forum: Plugins
In reply to: [St Category Email Subscribe] Plugin Not WorkingI am getting the same error only mine says “6” in the top left corner of the site.
Any updates on how to fix this?
The site being used on is excellencedev.oru.edu
Please advise?
Forum: Fixing WordPress
In reply to: Hide based on dateHow and where would that if statement need to go? I am a newbie when it comes to php.
Here is the current code being used:
<div id="nav" class="clearfix"> <a id="region-slider-prev" class="region-slider-control"></a> <a id="region-slider-next" class="region-slider-control"></a> <div id="nav-slider" class="event-slider"> <?php $featuredEvents = tribe_get_events( array('eventDisplay'=>'upcoming', 'tax_query' => array(array('taxonomy'=> 'tribe_events_cat', 'field'=>'slug','terms'=>'featured-events')))); foreach($featuredEvents as $post) : setup_postdata($post); ?> <div class="wbSlide-region"> <a href="<?php the_permalink(); ?>"> <?php if (has_post_thumbnail()){ the_post_thumbnail('region-slider-size'); } ?></a> <div class="event-info"> <h3><?php the_title();?></h3> <div class="date"><?php echo get_post_meta($post->ID, 'event_dates', true);?></div> <?php the_excerpt();?> <a href="<?php the_permalink();?>">Learn More →</a> </div> </div> <?php endforeach;?> </div> <div id="upcoming-events-list"> <h3>Upcoming Events</h3> <?php echo em_events(); ?> </div> </div> <div id="content-bottom" class="clearfix events-main"> <h2>Featured Upcoming Events<a href="/eventscalendar">View Full Events Calendar →</a></h2> <div class="clearfix"></div> <div id="featured-events-wrap"> <?php foreach($featuredEvents as $post) : setup_postdata($post); ?> <a href="<?php the_permalink();?>"><article <?php post_class("floatleft archive") ?> id="post-<?php the_ID(); ?>"> <div class="archive-image-wrap"> <?php if (has_post_thumbnail()) { the_post_thumbnail('region-graphic-size'); } else { echo '<div class="archive-image-wrap-empty">There is no thumbnail available for this resource.</div>'; } ?> </div> <div class="entry-content"> <h3><?php the_title(); ?></h3> <div id="thecontent"> <?php the_excerpt(); ?> </div> </div> </article> </a> <?php endforeach; wp_reset_postdata(); ?>
I need to work out how to change the call functions to referencing the data in the Event Manager Plugin rather than the The_Event_Calendar plugin.