Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-e commerce shopping cart issuesNot being hugely experienced with WP-eCommerce (I didn’t get on with it), I would contact support at GetShopped.org.
NB – If you want a better, more efficient eCommerce plugin which is lighter and doesn’t load all sorts of unneccessary scripts, look at Woocommerce. They also have an WP-eCommerce -> Woocommerce importer which you may find useful.
I’m loving Woocommerce at the moment, zero headaches.
Forum: Fixing WordPress
In reply to: Changing Home PageYou have major errors in the site. The scripts, meta etc which load in the head of the HTML document are in the content body of the site. It’s like someone has removed them from the <head> section and placed them in the <body>. Not good.
You cannot even run a HTML checker on there due to the errors.
Forum: Fixing WordPress
In reply to: wp-e commerce shopping cart issuesActually, what’s weird, is when you select an attribute (size needed for product etc) that’s when the login is prompted. Very strange.
Forum: Fixing WordPress
In reply to: wp-e commerce shopping cart issuesYeah, I see it. Try changing the setting for guests to ‘on’.
Forum: Fixing WordPress
In reply to: wp-e commerce shopping cart issuesHave you got a link to your site?
Forum: Fixing WordPress
In reply to: Login blockedWithout seeing functions.php file, it’s impossible to investigate for you. Try pasting the code in pastebin and drop a link to it here. There may be something simple like a missing ‘,’ if someone was editing it and deleted chunks of code they didn’t understand.
Forum: Fixing WordPress
In reply to: wp-e commerce shopping cart issuesWith ‘checkout as guest’ set to No, most shopping systems will force users to register an account before they can checkout. It’s personal preference, but if you want customers to freely purchase without registering, set to yes and test it in another browser to make sure it works how you want it.
Forum: Fixing WordPress
In reply to: wp-e commerce shopping cart issuesDo you have a setting which means users have to be registered to checkout? Like a ‘checkout as guest’ option?
Forum: Fixing WordPress
In reply to: search by categoryWhy not post your enquiry into the plugins support forum?
Forum: Fixing WordPress
In reply to: Menu fontUnless your theme has the option to do it, it will only be doable via CSS.
Forum: Fixing WordPress
In reply to: Redirect blog pageWhy don’t you rename the category from blog-3 to just blog? You can edit the slug (URL) too.
Forum: Fixing WordPress
In reply to: Editing H1 Tags on page to improve SEOIn most themes, H1 tags are the page titles, so you would need to edit the page templates to convert those into H2, allowing you to add your own H1 tags in the post/page content.
Forum: Fixing WordPress
In reply to: How to load 'admin-ajax.php' in frontendYou mean check if user is logged in via PHP?
<?php if (!is_user_logged_in() ) { // code in here } ?>The above checks if user is not logged in, if not, does whatever you place in the // code in here area.
More on this in the WP codex buddy.
Forum: Fixing WordPress
In reply to: Editing H1 Tags on page to improve SEOOr name your pages as the keyword they are targeting. They will become the H1 tags then… 😉
Forum: Fixing WordPress
In reply to: changing content border on pageTo add a border to the iframe, add this in the CSS file (style.css):
#boatlist iframe { border: 3px solid #000 }The order border (around the table) can be styled with this:
#boatlist table { background: #cc0000; }Best practice is to use classes and reference them in CSS (style.css) instead of inline.