• Toll-free  888-665-8637
  • International  +1 717-220-0012
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Taylor
#1 Posted : Wednesday, May 2, 2007 10:35:50 AM(UTC)
Taylor

Rank: Member

Joined: 7/15/2004(UTC)
Posts: 368

Hey Cliff! How about Header Searchin for BVC5? I couldn't figure out how to add it into the header, so I cheated and positioned the search that I set in the left column to show up in the header. All is well until I get to the pages without the left navigation. So, back to square 1.

How can I add the search to the header?
Omer
#2 Posted : Wednesday, May 2, 2007 2:22:08 PM(UTC)
Omer

Rank: Member

Joined: 2/3/2007(UTC)
Posts: 100

I ha the same problem before. I spent some time to find out myself how that was possible. First I customized the Search/View.ascx under ContentBlock. Then I called it from Header with <%register...>. It is working properly.
SP2 now has a 'search.ascx' Control under 'Conrol' file separate form the one in ContentBlock. I think you can just customize it and call it from Header.
Cliff
#3 Posted : Wednesday, May 2, 2007 2:31:59 PM(UTC)
Cliff

Rank: Member

Joined: 5/24/2004(UTC)
Posts: 4,147

Just do the following in your theme's Header.ascx up top:
Code:
<%@ Register Src="~/BVModules/Controls/Search.ascx" TagName="HeaderSearch" TagPrefix="uc1" %>

Then place this one where you'd like it to go in Header.ascx:
Code:
<uc1:HeaderSearch ID="MiniSearch1" runat="server" />


What I would do is copy the search control, modify it, and place it in the controls folder of your theme and reference it there, so your theme is more portable with search intact.
Taylor
#4 Posted : Wednesday, May 2, 2007 3:14:20 PM(UTC)
Taylor

Rank: Member

Joined: 7/15/2004(UTC)
Posts: 368

Perfect as usual! Thanks Cliff!
memikhail
#5 Posted : Monday, May 7, 2007 11:21:39 PM(UTC)
memikhail

Rank: Member

Joined: 2/18/2006(UTC)
Posts: 172

How to move <SPAN id=ctl00_MainContentHolder_ContentColumnControl3_ctl00_lblTitle>Mailing List to the footer in BVC5? It was easy to move SEARCH to the header...
Cliff
#6 Posted : Tuesday, May 8, 2007 2:04:59 AM(UTC)
Cliff

Rank: Member

Joined: 5/24/2004(UTC)
Posts: 4,147

That search control mentioned above, and the search module you see in the admin/columns are two different things.

To add BV Modules, like the mailing list, to the footer, I'd suggest adding a content column to your theme's footer control so you can administer it from the admin.
memikhail
#7 Posted : Tuesday, May 8, 2007 8:54:24 AM(UTC)
memikhail

Rank: Member

Joined: 2/18/2006(UTC)
Posts: 172

How do I add content column to my theme footer control?
Nick Alberti
#8 Posted : Tuesday, May 8, 2007 9:25:24 AM(UTC)
Nick Alberti

Rank: Member

Joined: 9/27/2004(UTC)
Posts: 1,099

Hello Michael.

It would be very similar to this:

http://forums.bvcommerce...lt.aspx?f=79&m=42686

If you need additional help, just let us know.
memikhail
#9 Posted : Tuesday, May 8, 2007 8:54:10 PM(UTC)
memikhail

Rank: Member

Joined: 2/18/2006(UTC)
Posts: 172

Hi Nick,

Sorry, but I think I need more details on how to do it...


Thank you!
Cliff
#10 Posted : Tuesday, May 8, 2007 10:14:45 PM(UTC)
Cliff

Rank: Member

Joined: 5/24/2004(UTC)
Posts: 4,147

Michael, you'd do the same thing as on http://forums.bvcommerce.com/de...lt.aspx?f=79&m=42686, but you'd do this in your theme's footer.ascx control.

Add this with the rest of the registers up top:
Code:
<%@ Register Src="~/BVModules/Controls/ContentColumnControl.ascx" TagName="ContentColumnControl" TagPrefix="uc3" %>

This is basically what you would put where you'd like your custom content to show up:
Code:
<uc3:ContentColumnControl ID="ContentColumnControl1" runat="server" ColumnName="Footer Content" />

Note the ColumnName="Footer Content". When you create your content column in the admin, Footer Content is the name you would give it. As long as those match up, and you can style your content, you're all set.
memikhail
#11 Posted : Tuesday, May 8, 2007 10:30:10 PM(UTC)
memikhail

Rank: Member

Joined: 2/18/2006(UTC)
Posts: 172

Hey Cliff, thank you so much. You are the men!

P.S. When I try to add email to the Mailing List I can't find that email address in my admin... People--&gt;Filter-&gt; and still nothing...
Cliff
#12 Posted : Tuesday, May 8, 2007 10:40:11 PM(UTC)
Cliff

Rank: Member

Joined: 5/24/2004(UTC)
Posts: 4,147

No problem.

I don't believe BVC5 allows you to view mailing list sign-ups.
memikhail
#13 Posted : Tuesday, May 8, 2007 10:45:41 PM(UTC)
memikhail

Rank: Member

Joined: 2/18/2006(UTC)
Posts: 172

what do you mean? we don't see the people email addresses? do we know the number of people who signed up?
Cliff
#14 Posted : Tuesday, May 8, 2007 11:57:18 PM(UTC)
Cliff

Rank: Member

Joined: 5/24/2004(UTC)
Posts: 4,147

As far as I can tell. You can see the number of people who have signed up for a list when you go to 'Send Email' under Admin > People > Mailing Lists.

I personally wouldn't consider using the built-in mailing list stuff at all. It's risky to do email campaigns from the server your store is running on (blacklisting, performance, etc.) and I don't even see an unsubscribe feature, which is a violation of the CAN-SPAM Act. Just don't use it.

I use Campaign Monitor, and would highly recommend a dedicated service like that instead. There are several out there, so it's just a matter of figuring out how to capture those email addresses (we need plugins, developers).
Matt@9BallDesign
#15 Posted : Wednesday, May 16, 2007 5:40:44 PM(UTC)
Matt@9BallDesign

Rank: Member

Joined: 12/23/2003(UTC)
Posts: 909

does hitting enter activate the search in Internet Explorer?
Matt Martell


http://www.9balldesign.com - Web, Print, Graphic


http://www.martellhardware.com/ - Decorative &amp; Builder's Hardware

------------------------------------------------
Taylor
#16 Posted : Thursday, May 17, 2007 2:33:05 PM(UTC)
Taylor

Rank: Member

Joined: 7/15/2004(UTC)
Posts: 368

It actually does! IE 7 and below :)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

©2024 Develisys. All rights reserved.
  • Toll-free  888-665-8637
  • International  +1 717-220-0012