Forum Replies Created
-
AuthorPosts
-
darkmatterMember
Thanks. Any luck with being able to apply more than 1 condition?
September 21, 2010 at 3:45 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18632darkmatterMemberYou wouldn’t find that in the CSS, sounds more like remnant code bits in one of your php files, check the NG Gallery template meticulously.
September 17, 2010 at 10:28 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18629darkmatterMemberok, it would seem like you are calling the store code twice in your NG Gallery template. The page looks like it’s working, but the Size/Frame/Input/quantity, etc. fields are repeated…
I’d check the template for errors.
Vince
September 17, 2010 at 7:41 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18627darkmatterMemberWhat’s line 90 of eStore_misc_functions.php?
Did you create a new NG Gallery view template first with the required code?
Vince
September 17, 2010 at 12:58 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18625darkmatterMemberCorrect. You’d have to go in the code and delete “Instructions:” like this:
to $var_output .= ‘<input type=”text” name=”custom_input” value=”‘.$ngg2Image->alttext.'” class=”eStore_text_input” />’;
September 17, 2010 at 12:39 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18623darkmatterMemberThanks for that correction!
September 16, 2010 at 11:13 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18620darkmatterMemberOK everyone, a small change to the code in eStore_button_display_helper.php file, be sure to set the default field label code as such:
to $var_output .= ‘Instructions: <input type=”text” name=”custom_input” value=”.$ngg2Image->alttext.” class=”eStore_text_input” />’;
If you don’t, your image name will not carry over without entering a field label for the customer input instructions for the product in question. The value=”” field must be filled with the .$ngg2Image->alttext. variable in both conditions.
Cheers!
September 16, 2010 at 9:34 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18618darkmatterMemberIf you want to give me access to your site I can poke around. Yahoo IM metal_dude_man
September 16, 2010 at 8:33 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18614darkmatterMember@ Parris
Re: item 2a, $ngg2Image=” gets added here:
function get_button_code_for_element($ret_product,$line_break=true,$ngg2Image=”)
and here
$var_output = get_variation_and_input_code($ret_product,$line_break,$ngg2Image);
$image also exists here:
function print_eStore_ngg_buy_now($image)
{
$output = “”;
$product_id = get_option(‘eStore_ngg_template_product_id’);
if(empty($product_id))
{
$output .= “You need to specify a product ID in the 3rd Party Settings of eStore”;
}
else
{
$output .= print_eStore_buy_now_button($product_id,”,$image);
}
return $output;
}
…but I can’t recall if that was already there in the original file, perhaps. either way it needs to be there.
Re: item 2b, your code is missing the “2” in “$ngg2Image” as such:
‘<input type=”text” name=”custom_input” value=”‘.$ngg2Image->alttext.'” class=”eStore_text_input” />’
Check, correct and test and let me know if that solved it.
Then, to hide the field, in teh eStore css file, I used:
.eStore_text_input {
font-size:1.3em;
height:0px;
width: 0px;
color:#444;
background:#eee;
border:0px solid #aaa;
border-right-color:#ddd;
border-bottom-color:#ddd;
margin:0px auto 0px
}
.eStore_text_input:focus {
height:0px;
background:#fff;
border-color:#777 #ccc #ccc #777;
margin:2px
}
Try that!
Vince aka Darkmatter
September 5, 2010 at 5:26 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18610darkmatterMemberNevermind, thought I could PM you here haha. Shoot me an email vince@utopiastudios.net with your MSN or Yahoo.
September 5, 2010 at 5:24 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18609darkmatterMemberI’d be happy to help, but this weekend’s a little hectic. I’ll PM you.
September 4, 2010 at 4:47 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18605darkmatterMemberCan you run down all the steps you’ve taken?
September 3, 2010 at 4:23 pm in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18603darkmatterMemberYes, that’s correct. Looks like I didn’t mention that mod although I didn’t remember it.
Now to try and get a thumbnail of the pic in the cart along with the name
Nice going!
September 2, 2010 at 1:33 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18599darkmatterMemberMaybe ask the author.
September 2, 2010 at 1:31 am in reply to: Why Configure Every Product Separately When Used with NextGen Gallery #18597darkmatterMemberThat could be an issue. I’m afraid to upgrade for that reason. The new variables could be interfering somehow. I’d try to install the earlier version with the mod to see if that works. If it still doesn’t then there’s something not configured properly. If it does work then the newer version(s) need more looking into as far as modding.
-
AuthorPosts