fishthefly
Forum Replies Created
-
Forum: Plugins
In reply to: eshop proceed to checkout link empty’s the shopping cart!Found the problem. For some reason, when I updated to the latest version of eshop a copy of checkout.php was copied to the root folder of my entire site, causing chaos. I simply made sure there was a copy of that file where it should be, and then I deleted the rogue copy. Not sure why this happened, I didn’t put it there!
@elfin – I appreciate your help and quick responses. This is a great plug-in.
Forum: Plugins
In reply to: eshop proceed to checkout link empty’s the shopping cart!Yes. The sessions are working perfectly.
Forum: Plugins
In reply to: eshop proceed to checkout link empty’s the shopping cart!Sorry. It is in a WordPress page (I just included the header and footer code in case anything there was causing a problem.) This is what is on the page:
<div class="cartwrapper" id="cartwrapper"> [eshop_show_checkout] </div>
Forum: Plugins
In reply to: eshop proceed to checkout link empty’s the shopping cart!Hmmm, aside from the header and footer code, Just a div. Here is the full code:
<?php list($page_name,) = explode('/', trim(array_shift(explode('?', $_SERVER['REQUEST_URI'])), '/')); $page_name = (!empty($page_name)?$page_name:'homepage'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <meta name="keywords" content="fly fishing,fly fishing gear,fly,fishing,gear,fly fishing equipment,Oil City fly shop,Franklin fly shop,Pennsylvania fly shop,fly rods,fly,rods,fly fishing Pennsylvania,fly fishing western Pennsylvania,fly fishing eastern Pennsylvania,Pennsylvania,Titusville,trout fishing,fly fishing for trout,salmon fishing,fly fishing for salmon,saltwater fly fishing,fly fishing for tarpon,fly fishing for bonefish,fly fishing for redfish,fly fishing for sea trout,Sage,Fishpond,Rio,Redington,Ross,Umpqua,Whiting,Chota,Frogs Fanny,Guideline,Cocoons,C&F,Oil Creek trout,fly fishing Oil Creek,Tionesta trout,fly fishing Tionesta Creek,Clarion River,fly fishing Clarion River,Delaware River trout,fly fishing Delaware River,fly fishing Poconos,fly fishing flies,Florida,streamflow,titusville weather"> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> <link rel="apple-touch-icon" href="<?php bloginfo('template_directory'); ?>/images/touchicon.png"/> <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.png" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php wp_head(); ?> </head> <body> <div id="container"> <div id="header"> <div id="headerimage"> <a href="https://www.oilcreekoutfitters.com" onfocus="if(this.blur)this.blur()"><img src="https://oilcreekoutfitters.com/wp-content/themes/oil/images/logo.jpg" /></a> </div> <div id="headernavigation"> <ul> <li><a href="https://www.oilcreekoutfitters.com/waders"onfocus="if(this.blur)this.blur()">waders</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/cast"onfocus="if(this.blur)this.blur()">rods & reels</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/lines"onfocus="if(this.blur)this.blur()">lines</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/vests"onfocus="if(this.blur)this.blur()">vests & packs</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/accessories"onfocus="if(this.blur)this.blur()">accessories</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/flies"onfocus="if(this.blur)this.blur()">flies</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/fly"onfocus="if(this.blur)this.blur()">fly tying</a>   </li> <li><a href="https://www.oilcreekoutfitters.com/clearance"onfocus="if(this.blur)this.blur()">clearance</a></li> </ul> </div> </div> <div class="cartwrapper" id="cartwrapper"> [eshop_show_checkout] </div> <div id="footer"> <p>copyright Oil Creek Outfitters, 2010</p> </div> <?php wp_footer(); ?> </body> </html>
Thank you very much for your help.
Forum: Plugins
In reply to: eshop proceed to checkout link empty’s the shopping cart!Thanks again for another suggestion as I am totally lost. I tried what you mentioned and it still does not work. Also, I have upgraded to the most recent version.
Any other suggestions? I really appreciate your help and I hope I can fix this soon.
Forum: Plugins
In reply to: eshop proceed to checkout link empty’s the shopping cart!@elfin (or anyone else)
Thank you for your quick response. I have just tried what you suggested with no luck. I have also contacted my hosting company about the php sessions. They have concluded that the php sessions are working properly and sent me the file generated when they browsed the site.
What else can I do? This is above my head and I did not have a problem until I upgraded and checked everything. Unfortunately, I do not have a backup of what existed before. Bad form on my part I suppose, but I need to figure this out.
Thank you for your help.
Forum: Fixing WordPress
In reply to: Force ssl/https for entire websiteI am still struggling with this issue and am curious to see if there are any additional suggestions out there. Any assistance would be greatly appreciated. Thank you!
Forum: Fixing WordPress
In reply to: Force ssl/https for entire websiteThank you for your quick response. No, I have not removed anything from the default .htaccess file. This is a complete copy of the code:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.mysite.com/$1 [R,L] </IfModule> # END WordPress
Thanks again.
Forum: Plugins
In reply to: Mailpress Bugshelil was right on. This solved my issues and MailPress works like a charm now. Thank you all for your response!
Forum: Plugins
In reply to: How can I show only the permalink and the image in eshop? (list_subpages)Thank you very much! This is a great plug in and I cannot wait to go live with it.
Forum: Plugins
In reply to: How do I test eshop?ParanoidSardine and all,
I definitely was having a problem with the email addresses. The testing process seems a bit nebulous at first, but I have finally worked through it thanks to the help from this post. Here is a walk-through of what worked for me, for those who may run in to the same problem. When you are ready to test a transaction:
1. Create an account with PayPal Sandbox here.
2. Once you are signed in to the sandbox, create a preconfigured seller account.
3. Once the seller account is created, click on “enter sandbox test site” and log in…again.
3. In your wp-admin, navigate to settings/eshop/merchant gateways, and scroll down to the paypal portion and enter the same email address used for the sandbox account.
3. At your website, work your way through a transaction. Be sure to remain signed in at sandbox during the entire transaction. Once completed, you should receive a confirmation for the test transaction.Thank you all for your help.
Forum: Plugins
In reply to: How do I test eshop?Yes. I created a seller email address and a buyer email address. I then entered the buyer address during the test checkout, and was simultaneously signed in to sandbox with the seller account.
I noticed that sandbox alters the email address that you create by cutting off part of the address and adding a series of numbers (i.e. bwo20jm@*****.com is changed to bwo20j_#######@*****.com). Sandbox only lets me sign in with the former. Which address should I enter during a test checkout?
Forum: Plugins
In reply to: How do I test eshop?Yes. I was also signed in to the sandbox account as well as wordpress. Thank you for your quick reply!
Forum: Themes and Templates
In reply to: What is causing my vertical page shift?drewactual,
I definitely realize that a shift can occur when a scrollbar appears. I believe that would cause a shift left or right though. The page shift that occurs on my site is vertical.
The easiest way to see it is when on the home page, click to the store page. As the store page is loading, watch the logo and you will see it shifts down. I have tested this in firefox, opera and safari as well as safari on the iphone. I’m not sure what browser you are using but the shift, though minimal, should be there.
Thanks for your help.