Mr. Bigsby
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: custom post types with categoriesThis is still not working, can anyone help me figure out what’s wrong?
Forum: Fixing WordPress
In reply to: custom post types with categoriesI want to be able to select a “category” for these custom post types — for scores for separate sports.
Forum: Fixing WordPress
In reply to: custom post types with categoriesForum: Fixing WordPress
In reply to: Excerpt "Read More" on all excerptsAnyone got any advice for this?
Forum: Fixing WordPress
In reply to: Excerpt "Read More" on all excerptsSo what I mean is some posts pull the post body and some are pull the excerpt. The ones that pull the excerpt do not show the “Read More” link on the category archive page but the other ones do — anyway I can make them both display it?!
Forum: Fixing WordPress
In reply to: Jquery tabs problemlink to site: a_mericanis_raelite.com no _’s.
taken from here: https://yensdesign.com/2008/12/create-a-smooth-tabbed-menu-in-jquery/
Forum: Fixing WordPress
In reply to: Jquery tabs problemno 404 errors.
Forum: Fixing WordPress
In reply to: Jquery tabs problemI tried adding both of those codes to the top of my code (tabs.js) above and neither seemed to help once I activated fancybox for wordpress.
jQuery(document).ready(function($) { // $() will work as an alias for jQuery() inside of this function });
(function($) { // $() will work as an alias for jQuery() inside of this function })(jQuery);
I’m new to all of this jquery stuff, but I appreciate your help.
I also tried deactivating “the plugin “use google code” but that did not help either.
here’s the only two js in the header with just the tabs loaded<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script> <script type="text/javascript" src="js/tabs.js"></script> </head>
There is some in the footer as well,but right now I’m not having a conflict as long as I don’t enable fancybox for wordpress (even if I select do not load jquery and load in noconflict it’s not working).
Forum: Fixing WordPress
In reply to: Recent posts linking to another site?Actually I spoke too soon, adding the lines to wp-config did not help me
define(‘WP_HOME’,’URL’);
define(‘WP_SITEURL’,’URL’);tried remaking the code, using the code from the codex — but nothing displays
?<div class="news-sidebar"> <h3 class="news-sidebarHeader1">News</h3> <ul class="news-sidebarNews"> <?php?get_posts(?category=4&numberposts=4&order=DESC?);??>? <li><span class="redbold"><?php the_date('M-j-Y'); ?></span><br /> <a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a></li> <?php endforeach; ?> </ul>
Forum: Fixing WordPress
In reply to: Recent posts linking to another site?https://codex.www.ads-software.com/Changing_The_Site_URL
for anyone with the same problem
Forum: Fixing WordPress
In reply to: Changing Permalink Structure not workingThanks so much! worked perfectly!
Forum: Fixing WordPress
In reply to: Changing Permalink Structure not working@claytonjames — How would I do that?
I know that AllowOverride is on and we rebooted the server after we switched it on…
but I’m not having any luck
Forum: Fixing WordPress
In reply to: Changing Permalink Structure not workingThat didn’t help. I also tried
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
both at 777
Forum: Fixing WordPress
In reply to: Changing Permalink Structure not workingit’s still not working. Is there anything else to try?
Forum: Fixing WordPress
In reply to: Changing Permalink Structure not workingit’s permission was set to 666, I tried to change permalink and still no luck. Any ideas? HTACCESS just say begin wordpress, end wordpress with #’s.