Ajime
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Add to cart button not workingHey,
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.
Forum: Plugins
In reply to: [More Types] More Types – 404 error messageOddly, 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).
Forum: Plugins
In reply to: [Plugin: Breadcrumb NavXT] working but not linkingHi 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.
Forum: Plugins
In reply to: [Plugin: Breadcrumb NavXT] working but not linkingI’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);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
Forum: Plugins
In reply to: [Plugin: Breadcrumb NavXT] working but not linkingHi Mtekk,
No, there’s no sign of any hyperlinking in the code.
<!-- Breadcrumb NavXT 3.7.0 --> Home <span class="normal"> > </span> Portfolio <span class="normal"> > </span> Designed by usThat’s all the output.
Thanks again for your help.