raddy59
Forum Replies Created
-
I am using Cart66Lite (for evaluation). Do I have to upgrade to use Paypal Express?
I entered the return page:
https://sparkleweaver.co.uk/?page_id=514/But using the sandbox, I a returned to the sites main page with all thye “paypal confimed” details appended.
Any ideas?
Mic
Another thing I don’t know if you have had this, but my Continue Shopping URL seems to have been corrupted. You don’t happen to know anything about this problem, or where the URLS are stored
As for Paypal – have emailed them today to see if they have any instructions on how to get a trader/business account linked to my personal.
On the debug options you can set up a Paypal sandbox, if you have registered as business, to check the transaction process.
I’ll keep you posted
CheersPaul
Mic
I am having similar issues.Using the ordinary paypal gateway do you still receive purchaser details back into your site or do you need to set up a form to gather this data?
Forum: Fixing WordPress
In reply to: Iage URL problemsalchymyth
thanks – I’ll try that.
Where do you advisewould I put images – and mind how you answer that one:)
Forum: Fixing WordPress
In reply to: tag errorthanks alchymth
No difference I’m afraid, but many thanks for your help
P
PS
I have the same q on BFA, still waitingForum: Fixing WordPress
In reply to: tag errorIn fact I stay on the home page – which is good – just got the tag displaying
grrrr!Forum: Fixing WordPress
In reply to: tag errorStill get the <older entries> tag
<?php # error_reporting(-1);
list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata[‘h_blogtitle’], $bfa_ata[‘h_posttitle’]) = bfa_get_options();
get_header();
extract($bfa_ata);?>
<?php
get_header();
$paged = (get_query_var(‘page’)) ? get_query_var(‘page’) : 1;
query_posts(‘category_name=editors-choice&posts_per_page=1&paged=’ . $paged);
?><?php /* If there are any posts: */
if (have_posts()) : $bfa_ata[‘postcount’] = 0; /* Postcount needed for option “XX first posts full posts, rest excerpts” */ ?><?php include ‘bfa://content_above_loop’; ?>
<?php while (have_posts()) : the_post(); $bfa_ata[‘postcount’]++; ?>
<?php include ‘bfa://content_inside_loop’; ?>
<?php endwhile; ?>
<?php include ‘bfa://content_below_loop’; ?>
<?php /* END of: If there are any posts */
else : /* If there are no posts: */ ?><?php include ‘bfa://content_not_found’; ?>
<?php endif; /* END of: If there are no posts */ ?>
<?php # center_content_bottom does not exist
# if ( $bfa_ata[‘center_content_bottom’] != ” ) include ‘bfa://center_content_bottom’; ?><?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Make the home page display posts for 1 category onlyCopy index.php and all it home.php
Add the following code before this line:
<?php /* If there are any posts: */<?php
get_header();
query_posts(‘category_name=category slug name’);
?>Forum: Fixing WordPress
In reply to: query post command queryStet that – it did work. I have another related problem posted later
Forum: Fixing WordPress
In reply to: query post command queryalchymath
Tried that – didn’t workForum: Fixing WordPress
In reply to: Make the home page display posts for 1 category onlySo would I use conditional tags ion my home page?
Can anyone point me to an example of only selesting a single category?