FinAndBub
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Widget area stealing content of area below itI’ve seen this behavior before when using child themes, which makes be think it’s more related to how WP works and not the theme, but I could be wrong. I’ve now manually moved the settings ‘up a level’ and all is OK. Thank you for your replies.
Forum: Fixing WordPress
In reply to: Widget area stealing content of area below itYes it’s unique. It’s referenced in the child theme’s home page as:
<?php if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar('Homepage - 300x600') ); ?>
The child theme is based on a theme called Editor by AWESEMForum: Fixing WordPress
In reply to: Widget area stealing content of area below itChild Theme of Editor.
register_sidebar(array( 'name' => 'Homepage - 300x600', 'before_widget' => '<div id="%1$s" class=" widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ));Forum: Fixing WordPress
In reply to: Virus – injected text below body tagThank’s for the links, I’ll pass them on to my client.
Forum: Everything else WordPress
In reply to: Filling a page with information from databaseCould you get away with creating 32 pages, just containing an iframe reference to the asp pages or event populate the iframe reference dynamically with just one template?
Alternatively, to make management of the database and code easier, merge your databases, then you can then probably create just one template page and call each product dynamically.
Or my next thought is it possible for you to use an ajax call to the asp pages, or at least amended asp pages, that then displays their content within the template.
Without seeing the code etc. it’s hard to come up with a definitive solution, but I hope these give you some thoughts on how you could proceed.