-
-
-
WP Import
I am building a voucher site for a client and came across an issue, trying to import merchants. I have an RSS feed and an XML file for each letter of the alphabet of merchants, how do I go about importing these into WP to create a page for each merchant. There is 4200 merchants so not viable to do it manually. I have a plugin to import RSS feeds into posts (for the vouchers) but can't find one to do pages. any help is appreciated.
-
styling a tr a:hover
tr:hover { background:#000; } Will only work on recent browsers (not IE) or you can use jQuery like this
-
Wordpress links
It's either hard coded into the template, gathered from the Blogroll or they are being grabbed from another page If you can set up a new admin account, and pm me the login details & url, I will take a look for you.
-
-
-
Two WP Questions?
To add a new functions.php file, create a new files user-functions.php, upload to your theme folder and in your functions.php file add this to the top of the file (after the <? php ) include('user-functions.php'); To change a user's level (responsibility) use the add_role function, which will create a new custom user role so you can still use the default WP roles. Each User Level is defined here
-
IE css issues
shameless bump, anyone able to help with this, I bloody hate IE GRRRRRRRR
-
Choosing StyleSheet
You need to be using a scripting language such as PHP or a cms to do that sort of thing.
-
IE css issues
My Firefox HTML checker didn't see that :| Fixed now though
-
-
IE css issues
Fixed with one issue left, it's still displaying behind the content and pushed the content up. I have added a top margin but still not working, any ideas?
-
-
IE css issues
Added your code back in Pedro but had to change it slightly cos it messed up the styling for Firefox etc,
-
IE css issues
Nah didn't work, the menu is displaying awfully and the client wants this fixed.... I have added a screenshot to show what I mean, the menu us supposed to be above that content. Any help is appreciated.
-
IE css issues
Bump, if anyone can help with this, I will buy them a 2 month gold membership for here
-
IE css issues
Hey guys! Got a new website for a client but in IE9 it's displaying awfully. The site is http://www.wmimmigration.com, in FF, Chrome etc it's fine, but IE9 it's a pig. Anyone help me out of this deep hole? Cheers
-
Easing Slider Plugin
use the following: <?php if ( is_home() || is_front_page() ) { ?> <script type="text/javascript" src"<?php bloginfo('template_directory'); ?>/js/easing.js"></script> <?php } ?>
-
Can I use the <?php get_header(); ?> in normall HTML
You can't use it outside of WordPress without recreating the function but you can use a simpler version with php files. Lets say you have the following files: index.php header.php footer.php You would create index.php as the following: <?php include('header.php'); ?> <!-- index code --> <?php include('footer.php'); ?> Your pages need to be in .php format, they don't have to have php coding though.
-
how is this website built?
It looks like a custom site but it could be replicated in almost any cms tbh