You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I have my cart up and am beginning to populate it. My question is can I remove the hyperlinked category and sub category names from under their images? my images ARE their names.
wwwscrapsahoy.com
then go to SHOPPING
I read in an earlier post to go to site_store_small_display.pl to remove product numbers and figured this would be the same location to remove the text name links.
I tried by removing what I pasted below and of course it didnt work. Anyone have any suggestions?
<A HREF="$common_url&pg=store&sub_pg=main_cat&ref=$category_main_ref_no">$category_main_name</A>
AND I ALSO REMOVED:
<A HREF="$common_url&pg=store&sub_pg=sub_cat&ref=$category_sub_parent::$category_sub_ref_no">$category_sub_name</A>
Offline
Below is where I deleted from and it didnt work. This is the only place in the script that there is a link to text names.
#######################################################################
# Sub Site Store Small Display Cell #
#######################################################################
sub site_store_small_display_cell {
if ($display_type eq "category_main") {
print <<ENDOFTEXT;
<TD WIDTH="$cell_width" ALIGN="CENTER" VALIGN="TOP"><FONT FACE="$html_small_font_face" SIZE="$html_small_font_size" COLOR="$html_small_font_color">
<A HREF="$common_url&pg=store&sub_pg=main_cat&ref=$category_main_ref_no"><IMG SRC="$images_path/$product_small_image_name" WIDTH="$store_small_image_width" HEIGHT="$store_small_image_height" BORDER="0" ALT="$category_main_name"></A><BR>
<A HREF="$common_url&pg=store&sub_pg=main_cat&ref=$category_main_ref_no">$category_main_name</A>
</FONT></TD>
ENDOFTEXT
} elsif ($display_type eq "category_sub") {
print <<ENDOFTEXT;
<TD WIDTH="$cell_width" ALIGN="CENTER" VALIGN="TOP"><FONT FACE="$html_small_font_face" SIZE="$html_small_font_size" COLOR="$html_small_font_color">
<A HREF="$common_url&pg=store&sub_pg=sub_cat&ref=$category_sub_parent::$category_sub_ref_no"><IMG SRC="$images_path/$product_small_image_name" WIDTH="$store_small_image_width" HEIGHT="$store_small_image_height" BORDER="0" ALT="$category_sub_name"></A><BR>
<A HREF="$common_url&pg=store&sub_pg=sub_cat&ref=$category_sub_parent::$category_sub_ref_no">$category_sub_name</A>
</FONT></TD>
ENDOFTEXT
in additon to deleting the link tags do I need to remove anything else?
thanks for your help. I know you guys are working real hard on the new version. Can't wait
Offline
You'd be deleting:
<A HREF="$common_url&pg=store&sub_pg=main_cat&ref=$category_main_ref_no">$category_main_name</A>
and
<A HREF="$common_url&pg=store&sub_pg=sub_cat&ref=$category_sub_parent::$category_sub_ref_no">$category_sub_name</A>
That didn't work?!?
Offline
Nope. That's why I am so confused!
deleted both lines.
this is no emergency. I know there are MUCH bigger things goin on.
But thank you for confirming I am not loosing my mind
Offline
You're making the right edits. Check to be sure that you're not editing a backup file (did you even make a backup) and that your changes are actually being written back out to the server.
I'm assuming you're downloading the perl file, making the changes, then uploading it. You're doing it right, so the mechanics of how you're actually doing the edit must be wrong, somehow.
Offline
Wouldnt even know HOW to explain it, but I fixed it. Thanks so much for your help
Offline