LemonStand Forum: Beats - Viewing Profile - LemonStand Forum

Jump to content

User Rating: ***--

Reputation: 3 Neutral
Group:
Members
Active Posts:
202 (0.24 per day)
Most Active In:
Community Support (135 posts)
Joined:
18-January 11
Profile Views:
2,205
Last Active:
User is offline Jun 24 2012 07:49 PM
Currently:
Offline

My Information

Member Title:
LemonGroupy
Age:
Age Unknown
Birthday:
Birthday Unknown
Gender:
Not Telling Not Telling

Contact Information

E-mail:
Private

Posts I've Made

  1. In Topic: Load while scrolling down?

    14 June 2012 - 08:34 AM

    Thanks guys,

    Yea I did check this one out, but there was an error I faced using an iMac 27", if the browser is set to full screen there is no scroll bard avail.. therefore no infinite scrolling. Only if I made the browser size shorter, than a scrollbar would appear.

    The only thing that I can think of working is the first link you posted, with the demo here : http://www.infinite-...om/trigger.html

    However, it's not something automatic, as the user will have to click on the button: "more" at the bottom of the page.

    It's something I think would be really cool. Hopefully I will also be able to look into it more and would love to share it with you guys.
  2. In Topic: Load while scrolling down?

    14 June 2012 - 06:45 AM

    Hey!

    Thanks Andrew, yea I seen those links. Just curious if anyone using LS has done this before.

    Do you think this can be done with the products though? Since it automagically displays all products to the website from the backend coding.

    Thanks!
  3. In Topic: Field Order

    31 May 2012 - 01:09 PM

    Hello.

    There's no attachment.

    You would use to sort the order of the fields (the lower the number, the higher it is) :
    sortOrder(###)


    Now, if you want to have the field on the left, right, or full (takes up the entire width) of a field, you would use this:
    side('xxx')


    In your custom module, go to module folder -> classes -> select the module.php

    and here is an example code: Note this is for extend_product_form
    public function extend_product_form($product) 
    {
    			
    			$field = $product->find_form_field('name');
    			$field->side('full')->sortOrder(15);
    }


    Side is set to full to take up the entire width of the field
    sortOrder is set to 15 to be one of the first fields in the Product form.

    More references for the Db_FormFieldDefinition can be found here: Db_FormFieldDefinition
  4. In Topic: Display list of last 3 blog posts in a category

    30 May 2012 - 11:32 AM

    I am using this right now....

    The Blog Page using blog:category action
    <? 
    	$category = Blog_Category::create()->find_by_code('categoryapi'); 
    	$category ? $this->render_partial('blog:post_list', array( 
    		'category' => $category, 
    		'post_list' => $category->posts()
    	)) : null 
    ?>
    


    So I am able to show on the Blog Page each Category and a list of its Posts through API Coding.

    Would there be a way to automate this process of showing all categories and its posts instead of using APIs for each category?

    Thanks!
    Beats.
  5. In Topic: Display list of last 3 blog posts in a category

    30 May 2012 - 11:27 AM

    Edit: Should have clarified: I would just like to show all Post Title & Descriptions for each Blog Category on the Category List page

    Original Post deleted b/c of duplication

Friends

Comments

Beats has no profile comments yet. Why not say hello?