Forum Activity for @soaringeagle

soaringeagle
@soaringeagle
04/14/15 12:07:24PM
3,304 posts

possible seemless order by created bug?


Using Jamroom

ah geez thst would explain it i just looked some ofthose were posted 5 years agoi lol
soaringeagle
@soaringeagle
04/14/15 11:18:38AM
3,304 posts

possible seemless order by created bug?


Using Jamroom

yup no effect

its not taking the _created_by order in seemless
soaringeagle
@soaringeagle
04/14/15 11:17:04AM
3,304 posts

possible seemless order by created bug?


Using Jamroom

like i said i did try and had no effect but ill do it again just to make s=ure i didnt forget tockear cache
soaringeagle
@soaringeagle
04/14/15 10:38:05AM
3,304 posts

possible seemless order by created bug?


Using Jamroom

itsa seemless list the template code is

<div class="item photosearch"><h3><a href="{$jamroom_url}/gallery">Uploaded Photos</a> <a href="{$jamroom_url}/flickr">Flickr Photos</a></h3></div>
{jrSeamless_list modules="jrFlickr,jrGallery" pagebreak="16" pager=true order_by="_created numerical_desc" template="newest_galleries.tpl" page=$_post.p}


and i tried just desc too but thats the point its not listing them by _created atall
soaringeagle
@soaringeagle
04/13/15 06:41:09PM
3,304 posts

possible seemless order by created bug?


Using Jamroom

https://www.dreadlockssite.com/gallery
that page is the gallery module page and shows order by created
https://www.dreadlockssite.com/newest-photos
shows them in no particular order at all that i can figure out
ive tried both using the construction jkit to build the seemles lost and using include tool include a template that has the seemless code neither way affects the order

i will verify that the images uploaded by tiny turtle in the 1st link were the most recent ones added
the images shown 1st in the newest photos list..ihave no idea when they were added

updated by @soaringeagle: 12/22/16 11:55:59AM
soaringeagle
@soaringeagle
04/13/15 12:36:35PM
3,304 posts

fix for my photo editor issue


Suggestions

that took months to get to the root of the issue
but finaly glad its working
soaringeagle
@soaringeagle
04/13/15 11:59:28AM
3,304 posts

fix for my photo editor issue


Suggestions

the 1sr 1 with cloudfront url i suppose but want to be sure
soaringeagle
@soaringeagle
04/13/15 11:55:51AM
3,304 posts

fix for my photo editor issue


Suggestions

isee about 6 js's heresthe defauld template code

<div id="gallery-save-image" class="success">
    {jrCore_lang module="jrGallery" id=50 default="Press &quot;Save Changes&quot; to save your image modifications"}
</div>

<table width="100%">
    <tr>

        <td style="width:10%">
            <a href="{$jamroom_url}/{$_post.module_url}/image/gallery_image/{$_item_id}/xxxlarge/v={$_updated}" data-lightbox="images">
                {jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$_item_id size="xlarge" alt=$gallery_image_name id="gallery-edit-image"}
            </a>
        </td>

        <td class="p20" style="width:90%;vertical-align:middle">

            {* only show this section if an aviary.com key has been entered for the site.*}
            {if isset($_conf['jrGallery_aviary_key'])  && strlen($_conf['jrGallery_aviary_key']) > 2}

                <input id="new_image" name="gallery_alt_img" type="hidden" value="">

                {if isset($_conf.jrGallery_aviary_key) && strlen($_conf.jrGallery_aviary_key) < 20}

                    {if jrCore_get_server_protocol() == 'https'}
                        <script type="text/javascript" src="https://dme0ih8comzn4.cloudfront.net/js/feather.js"></script>
                    {else}
                        <script type="text/javascript" src="http://feather.aviary.com/js/feather.js"></script>
                    {/if}

                    <script type="text/javascript">
                        var featherEditor = new Aviary.Feather({ apiKey: '{$_conf['jrGallery_aviary_key']}', apiVersion: 3, theme: '{$_conf.jrGallery_theme}', tools: 'all', appendTo: '',
                            onSave: function(imageID, newURL) {
                                $('#gallery-save-image').show();
                                var img = document.getElementById(imageID);
                                img.src = newURL;
                                $('#new_image').val(newURL);
                                featherEditor.close();
                            }
                        });
                        function launchEditor(id, src) {
                            featherEditor.launch({ image: id, url: src });
                            return false;
                        }
                    </script>

                {else}

                    {if jrCore_get_server_protocol() == 'https'}
                        <script type="text/javascript" src="https://feather.aviary.com/imaging/v1/editor.js"></script>
                    {else}
                        <script type="text/javascript" src="http://feather.aviary.com/imaging/v1/editor.js"></script>
                    {/if}

                    <script type="text/javascript">
                        {if $_conf.jrGallery_original == 'on'}
                            {jrGallery_get_image_edit_key assign="edit_key" item_id=$_item_id}
                            var featherEditor = new Aviary.Feather({
                                apiKey: '{$_conf['jrGallery_aviary_key']}',
                                timestamp: '{$timestamp}',
                                salt: '{$salt}',
                                encryptionMethod: 'sha1',
                                signature: '{$signature}',
                                hiresUrl: '{$jamroom_url}/{$_post.module_url}/original_image/{$_item_id}/edit_key={$edit_key}',
                                theme: '{$_conf.jrGallery_theme}',
                                tools: 'all',
                                appendTo: '',
                                onSaveButtonClicked: function() {
                                    editor.saveHiRes();
                                    return false;
                                },
                                onSaveHiRes: function(imageID, newURL) {
                                    $('#gallery-save-image').show();
                                    var img = document.getElementById(imageID);
                                    img.src = newURL;
                                    $('#new_image').val(newURL);
                                    featherEditor.close();
                                }
                            });
                        {else}
                            var featherEditor = new Aviary.Feather({ apiKey: '{$_conf['jrGallery_aviary_key']}', theme: '{$_conf.jrGallery_theme}', tools: 'all', appendTo: '',
                                onSave: function(imageID, newURL) {
                                    $('#gallery-save-image').show();
                                    var img = document.getElementById(imageID);
                                    img.src = newURL;
                                    $('#new_image').val(newURL);
                                    featherEditor.close();
                                }
                            });
                        {/if}
                        function launchEditor(id, src) {
                            featherEditor.launch({ image: id, url: src });
                            return false;
                        }
                    </script>

                {/if}

                {if $_conf.jrGallery_original == 'on'}

                    {jrCore_lang module="jrGallery" id=49 default="Edit Image" assign="edit_tag"}
                    <span class="sprite_icon p5" style="cursor:pointer" onclick="launchEditor('gallery-edit-image', '{$jamroom_url}/{$_post.module_url}/original_image/{$_item_id}/edit_key={$edit_key}');">
                        {jrCore_image module="jrGallery" image="editor.png" width=32 alt="{$edit_tag|jrCore_entity_string}"}&nbsp;{$edit_tag}&nbsp;
                    </span>

                {else}

                    {jrCore_lang module="jrGallery" id=49 default="Edit Image" assign="edit_tag"}
                    <span class="sprite_icon p5" style="cursor:pointer" onclick="launchEditor('gallery-edit-image', '{$jamroom_url}/{$_post.module_url}/image/gallery_image/{$_item_id}/1280');">
                        {jrCore_image module="jrGallery" image="editor.png" width=32 alt="{$edit_tag|jrCore_entity_string}"}&nbsp;{$edit_tag}&nbsp;
                    </span>

                {/if}

            {/if}
        </td>
    </tr>
</table>

wich of those do i change
soaringeagle
@soaringeagle
04/13/15 11:52:16AM
3,304 posts

fix for my photo editor issue


Suggestions

no i wasnt sure where to
  176