Show Posts


Topics - JHammond53

Pages: [1]
1
Customization help / Highlight current category in menu
« on: November 03, 2014, 10:11:47 AM »
I would like to hightlight the current category page that I am on instead of HOME always being highlighted. any suggestions?

2
Feedback on My Store / We are getting there, check us out!
« on: October 31, 2014, 03:05:06 PM »
Here is our site that I have been working on (on and off) for the past year. I would go months without touching it do to us being slammed with work (not a bad thing at all).

www.archmetalsfl.com

The site is almost done, just gotta add a few more things, and get pricing for products and we are off and running.


Our old site looked, well, old. www.architecturalmetalsinc.com

3
Support / FIXED - Weird Logout Problem
« on: October 20, 2014, 10:19:21 AM »
Ok, so I just realized that when I click the Logout button in the header it takes me to the account logout page. When I click continue it then takes me back to the home page but I am still logged in. I can keep clicking the Logout button and follow the same loop time after time after time.

If I click Log Off in the footer it takes me to the same account logout page, but when I click continue it takes me back to the home page and I am actually logged off this time. The same goes for the Log Off link on the Account page.

Any suggestions? I have reset all of the .tpl and .php files back to default yet still nothing.

4
Customization help / Hiding certain elements when not logged in
« on: October 16, 2014, 11:21:41 AM »
Ok, this may be quite complicated. If someone is not logged in, I would like to hide the entire top menu except for login. I would also like to hide the cart just below the top menu. One other thing is featured items.

If someone is then logged in, all of these would reappear.

I am not afraid of changing code as I have changed some already. Just can't find the right files/code to implement.

5
General Support / Sending mail to customers shows as Unknown Sender
« on: November 14, 2013, 03:35:54 PM »
I was testing out the Sales -> Mail portion of the site today and sent an email to my gmail account. The result showed an Unknown Sender. I sent the same email to my business email address and it showed everything up until the comma (the comma and everything after was gone).

I removed the comma from the store name and all is well now. I would like to have the comma, and may work tomorrow on code that will possibly allow the comma, but I wanted to check in to see if you guys had a fix for this first (or if its even possible).

Thanks,
James

6
When on a category page viewing all of the subcategories, the images do not line up with the titles below them. I am not sure if a fix has been posted yet so here is the fix that works for me.

You will need to modify the following file "public_html --> storefront --> view --> default_html5 --> template --> pages --> product --> category.tpl"

Lines 15-26 of the original category.tpl file should read as follows:

   <ul class="thumbnails row">
       <?php for ($i = 0; $i < sizeof($categories); $i++) { ?>
        <li class="span2">
          <a href="<?php echo $categories[ $i ][ 'href' ]; ?>">
             <?php echo $categories[ $i ][ 'thumb' ][ 'thumb_html' ]; ?>
          </a>
          <div class="span2">
          <a href="<?php echo $categories[ $i ][ 'href' ]; ?>"><?php echo $categories[ $i ][ 'name' ]; ?></a>
          </div>
       </li>
       <?php } ?>
   </ul>


Replace these lines with the following code:

   <ul class="thumbnails row">
       <?php for ($i = 0; $i < sizeof($categories); $i++) { ?>
        <li class="span2">
          <center><a href="<?php echo $categories[ $i ][ 'href' ]; ?>">
             <?php echo $categories[ $i ][ 'thumb' ][ 'thumb_html' ]; ?>
          </a></center>
          <center><div style="text-align:center;">
          <a href="<?php echo $categories[ $i ][ 'href' ]; ?>"><?php echo $categories[ $i ][ 'name' ]; ?></a>
          </div></center>
       </li>
       <?php } ?>
   </ul>


All changes have been marked with the color red if you want to just add the fix I used instead of replacing the entire code snippet.

7
Customization help / PHP Code inside CKEditor
« on: November 05, 2013, 10:25:47 AM »
I am trying to add php code inside of the description box of categories. Is there a way to allow PHP Code inside this CKEditor? I have attempted to add

config.protectedSource.push(/<\?[\s\S]*?\?>/g);

into the config.js file that is located in /public_html/admin/view/default/javascript/ckeditor

 Every time I try to use php code with <?php it is being changed to <!--?php or &lt;?php


8
Built-in Features / Fancybox?
« on: November 04, 2013, 09:11:12 AM »
I have noticed that Fancybox is being referenced in code quite a few times, but where is it being used? I would like to use fancybox in place of the thickbox if possible.

9
New Features Discussion / Product Name -> Short Description
« on: November 01, 2013, 03:21:51 PM »
On the backend product edit page, there should be a box for a short description under the product name. This short description would show under the product name on the front end of the website.

I am finding a need to enter a short description about the product (just a few words) and would like it seen when browsing products. This short description, in my instance, would be used to show certain options that could be added to that specific package (as of right now options would be unknown without viewing product itself). Without customers knowing about the options available they may move on past certain products they are actually looking for.

This could be a smaller font and/or not all caps.

Pages: [1]

Powered by SMFPacks Social Login Mod