Results 1 to 10 of 649

Hybrid View

  1. #1
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by FunkyPapa View Post
    Yes I did. I even tried changing it back to returns.css....and that didn't change anything. I use HTMLKit to edit with. I used the search feature too look for 'returns'...and manually changed each one, so I could make sure of what i was changing inside of the files. Right now it is back to what I had it originally....return_authorization.css

    Below is what the file contains:

    HTML Code:
    fieldset {  
    float: left;  
    clear: left;  
    width: 100%;  
    margin: 0 0 1.5em 0;  
    padding: 0;
    }
    fieldset #personal, fieldset #order, fieldset #write{
    	padding:0;
    	border:1px solid #000;
    	border-width: 1px 0 0;
    }
    fieldset ol {  
    padding: .5em .5em 0 .5em;  
    list-style: none;
    }
    fieldset li {  
    float: left;  
    clear: left;  
    width: 100%;  
    padding-bottom: 1em; 
    }
    legend {
    	padding: 0.3em;
    	font-size: 1.1em;
    	color: #000;
    	font-weight:bold;
    }
    select {
    	margin: 0.1em;
    }
    textarea {
    margin: auto;
    padding:0.5em;
    display: inline;
    width: 40%;
    border:1px solid #B6ABD5;
    overflow:auto;
    }
    /*label.inputLabel {
    	width: 11em;
    	float: left;
    	color: #000;
    	}*/
    label {  
    float: left;  
    width: 11.5em;  
    margin-right: 1em;  
    color: #000;
    font-weight: bold;
    }
    fieldset div {
    	text-align:left;
    }
    and it is in includes/templates/funky/css
    As I said, I don't see any reference to return_authorization.css
    when checking your site.

  2. #2

    Default Re: Return Authorization Module (RMA)

    Well, I took out what I had put in, easy since there are no overwrites....and I uploaded it as original to read all 'returns' instead of what I changed it too.

    The box looks odd now, as it only takes up 1/2 of the screen, and now the boxes around all the areas are off

    The only changes I did in this upload was to change YOUR_TEMPLATE to funky and let her rip. This time if I use Firefox's web developer..I can see the returns.css....but don't know what to change in there for the borders and to make the box wider. I apologize, I'm still trying to wrap my head around a good portion of the coding concept....Also..the Send button still looks like it's in the wrong place on this screen.

    Again, you can see it here.

    Would my problem have been missing a 'returns' somewhere in my last pass through the files when I changed all occurances to 'return_authorization'?

    The reason I did that change was, I'd like our returns policy to be on the 'returns' page....and the actual form to be on the 'return_authorization' page. Please let me know if that is not the correct way to accomplish what I'm after.
    Last edited by FunkyPapa; 24 Jun 2010 at 12:00 AM. Reason: adding info

  3. #3
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by FunkyPapa View Post
    Well, I took out what I had put in, easy since there are no overwrites....and I uploaded it as original to read all 'returns' instead of what I changed it too.

    The box looks odd now, as it only takes up 1/2 of the screen, and now the boxes around all the areas are off

    The only changes I did in this upload was to change YOUR_TEMPLATE to funky and let her rip. This time if I use Firefox's web developer..I can see the returns.css....but don't know what to change in there for the borders and to make the box wider. I apologize, I'm still trying to wrap my head around a good portion of the coding concept....Also..the Send button still looks like it's in the wrong place on this screen.

    Again, you can see it here.

    Would my problem have been missing a 'returns' somewhere in my last pass through the files when I changed all occurances to 'return_authorization'?

    The reason I did that change was, I'd like our returns policy to be on the 'returns' page....and the actual form to be on the 'return_authorization' page. Please let me know if that is not the correct way to accomplish what I'm after.
    To make the text box wider:

    open returns.css find the following declaration and change the highlighted portion as indicated:

    textarea {
    margin: auto;
    padding:0.5em;
    display: inline;
    width: 90%;
    border:1px solid #B6ABD5;
    overflow:auto;
    }

    for the borders, find the following declaration and make what changes you need.

    fieldset #personal, fieldset #order, fieldset #write{
    padding:0;
    border:1px solid #000;
    border-width: 1px 0 0;

    }

    You may also want to edit the fieldset declaration in stylesheet.css

  4. #4

    Default Re: Return Authorization Module (RMA)

    Awesome, showing me just what part to play with...

    I changed

    HTML Code:
    fieldset {  
    float: left;  
    clear: left;  
    width: 100%;  
    margin: 0 0 1.5em 0;  
    padding: 0;
    }
    to

    HTML Code:
    fieldset {  
    float: left;  
    clear: left;  
    width: 97%;  
    margin: 0 0 1.5em 0;  
    padding: .5em;
    }

    That fixed the line issue.


    Did I do something wrong for trying to put in the page to be http:// funkymunkys.ca/index.php?main_page=return_authorization instead of it being http://funkymunkys.ca/index.php?main_page=returns...as in should I do something other than change each folder (I think there was one) from returns to return_authorization.....then go through each file name doing the same and finally go through each file with an editor to change all the 'returns' and the 'RETURNS'?
    Last edited by FunkyPapa; 24 Jun 2010 at 12:54 AM. Reason: spelling

  5. #5
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by FunkyPapa View Post
    Awesome, showing me just what part to play with...

    I changed

    HTML Code:
    fieldset {  
    float: left;  
    clear: left;  
    width: 100%;  
    margin: 0 0 1.5em 0;  
    padding: 0;
    }
    to

    HTML Code:
    fieldset {  
    float: left;  
    clear: left;  
    width: 97%;  
    margin: 0 0 1.5em 0;  
    padding: .5em;
    }

    That fixed the line issue.


    Did I do something wrong for trying to put in the page to be http:// funkymunkys.ca/index.php?main_page=return_authorization instead of it being http://funkymunkys.ca/index.php?main_page=returns...as in should I do something other than change each folder (I think there was one) from returns to return_authorization.....then go through each file name doing the same and finally go through each file with an editor to change all the 'returns' and the 'RETURNS'?
    You will have to go through each and every file and and folder change everything to return_authorization

    You will need to change includes/modules/pages/returns to return_authorization

    You will need to change includes/extra_datafiles/returns_filenames.php to return_authorization_filenames.php
    and then change the define statements.

    You will need to change includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php to tpl_return_authorization_default.php

    -----------------
    includes/extra_datafiles/returns_filenames.php
    includes/languages/english/extra_definitions/YOUR_TEMPLATE/returns_defines.php
    includes/languages/english/YOUR_TEMPLATE/returns.php
    includes/languages/english/html_includes/define_returns.php
    includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns.php
    includes/modules/pages/returns
    includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php
    includes/templates/YOUR_TEMPLATE/css/returns.css

  6. #6

    Default Re: Return Authorization Module (RMA)

    Thank you so much for your very quick responses

  7. #7

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    You will have to go through each and every file and and folder change everything to return_authorization

    You will need to change includes/modules/pages/returns to return_authorization

    You will need to change includes/extra_datafiles/returns_filenames.php to return_authorization_filenames.php
    and then change the define statements.

    You will need to change includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php to tpl_return_authorization_default.php

    -----------------
    includes/extra_datafiles/returns_filenames.php
    includes/languages/english/extra_definitions/YOUR_TEMPLATE/returns_defines.php
    includes/languages/english/YOUR_TEMPLATE/returns.php
    includes/languages/english/html_includes/define_returns.php
    includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns.php
    includes/modules/pages/returns
    includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php
    includes/templates/YOUR_TEMPLATE/css/returns.css
    This morning (on a good night's sleep and a cup of coffee) I sit down and redo what you mentioned here just to make sure I didn't miss anything yesterday. I'm still getting the same issue of the text box being way off to the right. Everything installs fine, however, I can not get the return_authorization.css to show when trying to look at it in Web Developer using Firefox. Would you have any idea, why the css for the page doesn't come up. It worked fine the way it was written originally.

    I'm including a zip of the changes I've made. I don't know if you would (or would even have time) to glance at it. I can't see that I've missed any returns or RETURNS anywhere, I just have no idea why the stylesheet wouldn't be loading

    Return Authorization.zip

    Here it is working as original (returns)

    Here's how it is as returns_authorization

  8. #8
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by FunkyPapa View Post
    This morning (on a good night's sleep and a cup of coffee) I sit down and redo what you mentioned here just to make sure I didn't miss anything yesterday. I'm still getting the same issue of the text box being way off to the right. Everything installs fine, however, I can not get the return_authorization.css to show when trying to look at it in Web Developer using Firefox. Would you have any idea, why the css for the page doesn't come up. It worked fine the way it was written originally.

    I'm including a zip of the changes I've made. I don't know if you would (or would even have time) to glance at it. I can't see that I've missed any returns or RETURNS anywhere, I just have no idea why the stylesheet wouldn't be loading

    Return Authorization.zip

    Here it is working as original (returns)

    Here's how it is as returns_authorization
    remove the extra underscore in return__authorization.css

 

 

Similar Threads

  1. v151 Flexible Return Authorization (RMA) for ZC v1.5.x [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 167
    Last Post: 11 Apr 2021, 08:56 PM
  2. Return Authorization Module
    By itspec in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 10 Feb 2009, 11:29 PM
  3. Return Merchandise Authorization (RMA) Module Follow-up
    By killertofu in forum Managing Customers and Orders
    Replies: 1
    Last Post: 11 Aug 2008, 11:13 PM
  4. Return Authorization Module (RMA)
    By dscott1966 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Nov 2006, 08:04 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg