Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Cannot add new topic to forum
Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 28, 2013 - 11:02 pm

you are looking in the wrong spot... in your wp theme...  so

wp-content/themes/original

past that, you have to look in the various files...  often its header.php or functions.php.. but could just about anywhere depending on how they structured the wp theme...

 

Avatar
Pat
Member
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 1:31 am

Hi I am wondering if you have managed to look at the original request. 

I have allowed guest access on the forum at http://www.mediades.co.uk/ bg. Can you advise why I can't add a new topic?

Thanks

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Apr 29, 2013 - 2:07 am

Apologies Pat. I think we both missed this after the other person started in on the thread.

OK - as with Steve I see nothing actually wrong so it just looks like the url rewrites are either not holding or have been lost. For starters - go to the forum admin > Integration > Page and Permalink and click on the Update Permalink about half way down the form.

If that doesn't resolve it then what other WP plugins are you using there?

andy-signature.png
YELLOW
SWORDFISH
Avatar
Scott Donihoo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 7:45 am

Mr Papa said
you are looking in the wrong spot... in your wp theme...  so

wp-content/themes/original

past that, you have to look in the various files...  often its header.php or functions.php.. but could just about anywhere depending on how they structured the wp theme...

 

First, I apologize to the thread starter for getting off of your original topic. I thought I had found somebody with the same issue that I had.  If I need to start another thread, I can.

Continuing with this issue, I found some jquery references in my header.php file that might be helpful.  I didn't want to paste the whole since a majority of it probably has nothing to do with my issue, so here are those references:

<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' |'; } ?> <?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/screen.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/print.css" type="text/css" media="print" />
<!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/ie.css" type="text/css" media="screen, projection"><![endif]-->
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/css/jquery.fancyMusicPlayer-white.css">
<script src="<?php bloginfo('template_url'); ?>/js/jquery.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery-ui.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.mousewheel.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.jscrollpane.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/soundmanager2-nodebug-jsmin.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.fancyMusicPlayer.min.js" type="text/javascript"></script>

<script type='text/javascript' src='http://www.faygoluvers.net/v5/wp-content/plugins/lightbox-plus/jquery.colorbox.1.3.32.js?ver=1.3.32'></script>
<link rel='stylesheet' id='lightboxStyle-css' href='http://www.faygoluvers.net/v5/wp-content/plugins/lightbox-plus/css/green/colorbox.css?ver=2.6' type='text/css' media='screen' />

<script type="text/javascript">
<!--
var $ah = jQuery.noConflict();

 

Thanks in advance!

Avatar
Pat
Member
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 12:51 pm

My issue is resolved now as I can post.

Can I ask one more thing how do add the Edit bar shown on this forum to mine?

Thanks for the support

Scott it's OK we all learn from the issues!

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 1:01 pm

Pat, what edit bar??? not sure what you are referring to...

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 1:05 pm

Scott, hard to see still but lets try this.... replace:

<script src="<?php bloginfo('template_url'); ?>/js/jquery.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery-ui.min.js" type="text/javascript"></script>

with

<?php if (!sp_is_forumpage()) { ?>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery-ui.min.js" type="text/javascript"></script>
<?php } else {
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui');
} ?>

obviously, I cannot test that...

might need to similarly protect the noconflict stuff at bottom, but not sure... and may not need the else part, but lets try this first...

Avatar
Scott Donihoo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 1:30 pm

Mr. Papa, I just sent you my full header.php in a PM.  Please let me know if you'd still like for me to try out this fix.

 

Thank you!

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 6:32 pm

yes, please give it a try...

Avatar
Scott Donihoo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 29, 2013 - 7:53 pm

Mr Papa said
yes, please give it a try...

Unfortunately, that didn't seem to work.  Do i need to restart apache or the server for this to take effect?  Here's what that section of code looks like now:

<!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/ie.css" type="text/css" media="screen, projection"><![endif]-->
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/css/jquery.fancyMusicPlayer-white.css">
<?php if (!sp_is_forumpage()) { ?>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery-ui.min.js" type="text/javascript"></script>
<?php } else {
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui');
} ?>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.mousewheel.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.jscrollpane.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/soundmanager2-nodebug-jsmin.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.fancyMusicPlayer.min.js" type="text/javascript"></script>

<script type='text/javascript' src='http://www.faygoluvers.net/v5/wp-content/plugins/lightbox-plus/jquery.colorbox.1.3.32.js?ver=1.3.32'></script>
<link rel='stylesheet' id='lightboxStyle-css' href='http://www.faygoluvers.net/v5/wp-content/plugins/lightbox-plus/css/green/colorbox.css?ver=2.6' type='text/css' media='screen' />

Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 619
Members: 17361
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10127
Posts: 79625