iwan155
Forum Replies Created
-
Emptying the cache didn’t help. I do run some plugins, but switching them off is not an option… I tried a few but that didn’t help either.
OK, check!
I’m afraid that’s too technical for me…
I have the same problem on vascovandervalk.nl with Atahualpa-theme. How do I fix that?
No, all is ok as it was. Just no fancyboxes…
No, Tubepress is still off, and no changes apart from normal updates.
@cais: That the lightbox is not working anymore on the site.
And now it’s down again, possibly after some upgrades on other plugins?
You’re right, they both are. Thanks again for your help.
OK, turns out it’s the TubePress plugin. Which is a bummer since it works wel and is handy to put all yourubevideo’s on one page…
Thanks for your help, I guess the rest is out of your hands…
Strange is still in Firefox the photo’s open in a lightbox, but on a new paqge, so not a floating photo over the original page.
To be honest: I wouldn’t know… Probably you can tell?
<?php function bfa_footer_page_links($matches) { $page_id = $matches[1]; $page_data = get_page($page_id, ARRAY_A); $page_title = $page_data['post_title']; $page_url = get_permalink($page_id); return '<a href="' . $page_url . '">' . $page_title . '</a>'; } function bfa_footer() { global $bfa_ata, $post; $homeURL = get_home_url(); $footer_content = $bfa_ata['footer_style_content']; // page links if ( strpos($footer_content,'%page') !== FALSE ) { $footer_content = preg_replace_callback("|%page-(.*?)%|","bfa_footer_page_links",$footer_content); } // home link if ( strpos($footer_content,'%home%') !== FALSE ) { ob_start(); echo '<a href="' . $homeURL . '/">'; bloginfo('name'); echo '</a>'; $footer_home_link = ob_get_contents(); ob_end_clean(); $footer_content = str_replace("%home%", $footer_home_link, $footer_content); } // login/logout link if ( strpos($footer_content,'%loginout%') !== FALSE ) { ob_start(); wp_loginout(); $loginout_link = ob_get_contents(); ob_end_clean(); if ( $bfa_ata['nofollow'] == "Yes" ) { $loginout_link = str_replace(' href=', ' rel="nofollow" href=', $loginout_link); } $footer_content = str_replace("%loginout%", $loginout_link, $footer_content); } // register link if ( strpos($footer_content,'%register%') !== FALSE ) { ob_start(); wp_register(); $register_link = ob_get_contents(); ob_end_clean(); $register_link = str_replace( array(' <li>', '</li> '), '', $register_link); if ( $bfa_ata['nofollow'] == "Yes" ) { $register_link = str_replace(' href=', ' rel="nofollow" href=', $register_link); } $footer_content = str_replace("%register%", $register_link, $footer_content); } /* LEGACY up to Atahualpa 3.2 admin link and register link were two different tags, now they're combined into one tag %register% mimicking the wp_register() function */ if ( strpos($footer_content,'%admin%') !== FALSE ) { ob_start(); wp_register(); $admin_link = ob_get_contents(); ob_end_clean(); $admin_link = str_replace( array(' <li>', '</li> '), '', $admin_link); if ( $bfa_ata['nofollow'] == "Yes" ) { $admin_link = str_replace(' href=', ' rel="nofollow" href=', $admin_link); } $footer_content = str_replace("%admin%", $admin_link, $footer_content); } // RSS link if ( strpos($footer_content,'%rss%') !== FALSE ) { ob_start(); bloginfo('rss2_url'); $footer_rss2_url = ob_get_contents(); ob_end_clean(); $footer_content = str_replace("%rss%", $footer_rss2_url, $footer_content); } // Comments RSS link if ( strpos($footer_content,'%comments-rss%') !== FALSE ) { ob_start(); bloginfo('comments_rss2_url'); $footer_comments_rss2_url = ob_get_contents(); ob_end_clean(); $footer_content = str_replace("%comments-rss%", $footer_comments_rss2_url, $footer_content); } // Current Year $footer_content = str_replace("%current-year%", date('Y'), $footer_content); // Parse widget areas: $result = bfa_parse_widget_areas( bfa_footer_output($footer_content) ); return $result; } ?>
Forum: Plugins
In reply to: [DutchDate] Version 1.8 not workingDowngrading again to 1.6 fixed it.
Forum: Plugins
In reply to: [DutchDate] Version 1.8 not workingAfter updating to 3.6 everything worked ok, then installing 1.8 killed the site completely (500)
I started using the beta but nothing happened. Now I upgraded to WordPress 3.5.1 and it suddenly works again!
Forum: Themes and Templates
In reply to: [WP-Creativix] Upgrade to 2.5 messes up the siteAnd fixed it myself. Changed the permissions of the complete WP-Content folder to 755 and everything is up again!