tfc
Forum Replies Created
-
Forum: Plugins
In reply to: [Visual Form Builder] Integrate/workaround for paypal payments pro????Maybe can use the hidden fiends to spit this info out and edit the submit button via php… Just a thought… but how do I differentiate between different selected prices…
Forum: Plugins
In reply to: [Visual Form Builder] Integrate/workaround for paypal payments pro????Hi, Thanks for the reply!
I have the pro version with the payments add on. I absolutely LOVE IT!
I am trying to redirect to the paypal pro/payflow page, but the only way to get to that page is through this form which is on a button:
<form class=”middle” action=”https://payflowlink.paypal.com” method=”post”><input type=”hidden” name=”LOGIN” value=”xxxxxxxxx(paypal user)” />
<input type=”hidden” name=”PARTNER” value=”PayPal” /><input type=”hidden” name=”DESCRIPTION” value=”whatever you want the title to say” />
<input type=”hidden” name=”AMOUNT” value=”75″ />
<input type=”hidden” name=”TYPE” value=”S” />
<input type=”submit” name=”submit” value=”$75 Class” />
</form>Forum: Plugins
In reply to: [Plugin: Visual Form Builder] E-mails goes to users but not to meWhat file did you add this code to?
Forum: Fixing WordPress
In reply to: How to make Products to look like feature products with slidersNevermind! I just went to
http://wpflexishop.com/wpecommerce/flexishop/shortcodes/productsForum: Fixing WordPress
In reply to: How to make Products to look like feature products with slidersI’m using flexi shop
Here is the code I pasted as my short code on the homepage HTML box:
[prima_products title= image_width=”128″ image_height=”220″ number=”7″ slider=”yes”]also
[wpsc_products category_id=’21’ number=”7″ ]
but the only time I see the fade on roll over and the arrows is when I check “Show Featured Products on the theme settings.
or is there a way to display a specific category in this code? (All I ever get is most recently uploaded items)
[prima_products title= image_width=”128″ image_height=”220″ number=”7″ slider=”yes”]
Forum: Fixing WordPress
In reply to: How do I remove header menu from HOME page only?Hi, I’m trying to do the opposite thing. I want my nav menu only on the pages that have my “front page template” applied, but not on all the other pages. Here is what I have in my header.php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
<title><?php wp_title(); ?></title>
<?php wp_head(); ?>
</head>
<body id=”<?php prima_option(‘themelayout’) ?>” <?php body_class(); ?>>
<?php if(prima_get_option(‘usernav’)&&class_exists(‘WP_eCommerce’)) get_template_part( ‘flexi-usernav’ ); ?>
<div id=”flexi-wrapper”>What do I change to get it to only show my nav on the home page?
Thanks so much!