jbowerman
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Website Redirect] EditingThanks for your work on this … do foresee it being possible to add some code for me to edit in Cornerstone (X Theme) .. or should I find another way to go about this?
Thanks again!
Forum: Plugins
In reply to: [Simple Website Redirect] Editinghttps://www.tvcweb.org/x/#/content/4537 …. should be .com but takes me to .org and a WIX 404 error page 🙁
Thanks for the help!
~JB
Forum: Plugins
In reply to: [Simple Website Redirect] EditingThanks for the reply! I am using X Theme with a front end builder called Cornerstone. Long story short, we are only wanting to defer people to our old WIX site for a little bit while I finish up the new site and this was the easiest way to accomplish that … Maybe I need a different plug-in? Or maybe it can’t be done via a plug-in? Thanks!
Forum: Plugins
In reply to: [WP Video Lightbox] Not working in Chrome or Firefox on MacI received an email from the plug-in creator saying my href was wrong and to change it to exactly:
href="http://vimeo.com/77507218?width=640&height=420"I did that and it’s still not working in Chrome or Firefox?
Forum: Plugins
In reply to: [WP Video Lightbox] Not working in Chrome or Firefox on Mac<div class="ecfa"><a href="http://vimeo.com/77507218 width=640 height=420" rel="wp-video-lightbox" title="ECFA"><img src="/wp-content/uploads/2013/10/ECFA_Web.png" alt=""></a></div>Forum: Plugins
In reply to: [WP Video Lightbox] Not working in Chrome or Firefox on MacCode did not post correctly … it is shown below
Well the update to EM this morning did the trick … so, whether it was intentional or not, thanks Marcus!
~JB
hmmm … you are right!
I know that on our old site there may have been mods made as I was not the developer but when I started with the developer url I reset the plug in and have not made modes since but I am not sure if that would be a total fix? Maybe something carried over from our old/current events page here http://www.youthunlimited.org/serve/site-locations/
Thanks for the help. I will keep poking around to see if I can fix it.
~JB
Thanks for the quick response Marcus! … it must have something to do with using old events to test. I changed the scope to only future events and put in 3 future events and all pages load fine. Do you know why this might be? .. I guess it may not matter initially but we usually like to keep all events up even if some are done and others not so that it shows the scope of the whole year’s events. Thanks!
~JB
Forum: Fixing WordPress
In reply to: Older/Newer Posts Nav Not WorkingIf you scroll all the way down to the bottom here it shows the “Older Posts” link at the bottom left(ish). My index.php is as follows:
<?php get_header() ?>
<?php
$postnum = 1;
$showFirstAd = 1;
query_posts(‘cat=-1’);
?><?php while ( have_posts() ) : the_post() ?>
<div id=”post-<?php the_ID() ?>” class=”<?php typograph_post_class() ?>”>
<div class=”post-date”>
<span class=”post-month”><?php the_time(‘M’) ?></span>
<span class=”post-day”><?php the_time(‘d’) ?></span>
</div><div class=”cat-links”>
<?php printf(__(‘%s’), get_the_category_list(‘, ‘)) ?>
<?php edit_post_link(__(‘Edit’), “\t\t\t\t\t<span class=\”edit-link\”>”, “</span>\n\t\t\t\t\t<span class=\”meta-sep\”>|</span>\n”); ?></div>
<h2 class=”entry-title”>” title=”<?php printf(__(‘Permalink to %s’), wp_specialchars(get_the_title(), 1)) ?>” rel=”bookmark”><?php the_title() ?></h2>
<div class=”entry-content”>
<?php the_content(”.__(‘Get the whole story <span class=”meta-nav”>»</span>’).”); ?>
<?php wp_link_pages(‘before=<div class=”page-link”>’ .__(‘Pages:’) . ‘&after=</div>’) ?>
</div>
<div class=”cat-links”>
<?php the_tags(__(‘<span class=”tag-links”>Tags: ‘), “, “, “</span>\n\t\t\t\t\t”) ?>
</div></div><!– .post –>
<div class=”clear”></div>
<?php comments_template() ?>
<?php endwhile ?>
<div id=”nav-below” class=”navigation”>
<div class=”nav-previous”><?php next_posts_link(__(‘<span class=”meta-nav”>«</span> Older posts’)) ?></div>
<div class=”nav-next”><?php previous_posts_link(__(‘Newer posts <span class=”meta-nav”>»</span>’)) ?></div>
</div></div><!– #content –>
<?php get_sidebar() ?>
</div><!– #container –><?php get_footer() ?>
___________________________________________________________________my page.php is as follows:
<?php get_header() ?>
<div class=”singlepost”>
<?php the_post() ?>
<div id=”post-<?php the_ID(); ?>”><div class=”entry-content”>
<?php the_content() ?><?php wp_link_pages(“\t\t\t\t\t<div class=’page-link’>”.__(‘Pages: ‘), “</div>\n”, ‘number’); ?>
<?php edit_post_link(__(‘Edit’),'<span class=”edit-link”>’,'</span>’) ?>
</div>
</div>
</div><!– .post –><?php if ( get_post_custom_values(‘comments’) ) comments_template() // Add a key+value of “comments” to enable comments on this page ?>
</div><!– #content –>
<?php get_sidebar() ?>
</div><!– #container –><?php get_footer() ?>