Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Ajime

    (@ajime)

    Hey,

    I tried it in 2012, and I also tried 2011 and 2013 … none of it worked. I disabled all of the plugins (that weren’t woocommerce) and the issue persists.

    Thread Starter Ajime

    (@ajime)

    Oddly, the issue has resolved itself. I’m no longer receiving 404 error messages. I’m wondering if there is a caching issue somewhere (I don’t have caching set on WP).

    Thread Starter Ajime

    (@ajime)

    Hi mtekk,

    Yes, that is a cut/paste of the code from the functions file. I’m still suspicious that there may be some server settings messing with some wordpress fundamentals, but the logs aren’t showing any errors, so I’m at a loss.

    Thread Starter Ajime

    (@ajime)

    I’m using a child theme, so I’m calling the breadcrumb and placing it in the layout via the functions page.

    //place breadcrumb navxt in layout
    function breadifier()
    {
    	global $post;
    	if ($post->post_name != 'home' && is_page())
    	{
    		echo '<div id="breadcrumbs">';
    		if(function_exists('bcn_display'))
    		{
    			bcn_display();
    		}
    		echo '</div>
    		<div id="socialbox">
    		<ul>
    		';
    		if(function_exists('fontResizer_place')) { fontResizer_place(); }
    		echo '
    		<li><a href="http://www.facebook.com/profile.php?id=1108874361" target="_blank" id="facebook" class="social"><span>facebook</span></a></li>
    		<li><a href="http://ca.linkedin.com/pub/tom-watson/13/2b1/aa1" target="_blank" id="linked" class="social"><span>linked-in</span></a></li>
    		</ul>
    		</div>';
    	}
    	#add social media and font size links
    
    }
    
    add_action('thematic_header','breadifier',10);

    The anchor is :

    As I mentioned before, this is working without any issue on a number of other servers including the server I developed it on. It doesn’t work on this server. The company just suffered a major security breech, which is why I immediately went to a server setting question. As indicated, whatever’s going on seems to have messed with the ancestor functionality. I hope I’m way off here and you’ve heard of some issue.

    Thanks again

    Thread Starter Ajime

    (@ajime)

    Hi Mtekk,

    No, there’s no sign of any hyperlinking in the code.

    <!-- Breadcrumb NavXT 3.7.0 -->
    Home <span class="normal">&nbsp;>&nbsp;</span> Portfolio <span class="normal">&nbsp;>&nbsp;</span> Designed by us

    That’s all the output.

    Thanks again for your help.

Viewing 5 replies - 1 through 5 (of 5 total)