Forum Replies Created

Viewing 15 posts - 76 through 90 (of 245 total)
  • Author
    Posts
  • #9629
    Profile photo of jsfoto
    jsfoto
    Participant

    Activating the network says you want to be part of the network, not using your site as a stand alone shop. After you activated it you can choose ten sites you would like to network with directly … some think it’s better to have similar content, some decide to choose sites that offer something you don’t have in your own portfolio. You can add a site by downloading the symbiocard of the site you wish to network with directly and upload it to one of your ten network slots.
    Ajt will add you to symbiostock.info as soon as he gets aware of your site I guess, same with Steve who also provides a centralized search engine .

    #9610
    Profile photo of jsfoto
    jsfoto
    Participant

    Sounds great … could you just give a short description how you have set it up?

    #9572
    Profile photo of jsfoto
    jsfoto
    Participant

    Thanks for the update, Jo Ann.
    (Great to have you back in the moderation team, btw 🙂 )

    #9479
    Profile photo of jsfoto
    jsfoto
    Participant

    @marthamarks wrote:

    @chromaco wrote:

    Symbiostock should be the old couple. It breeds trust and it is honest and believable. People have bad days, good relationships forgive, forget and move on.

    Very well said, Chromaco.

    As one happily settled in and still in love, as half of an “old couple” (married 46 years now… to the very same guy), I hope to live long enough to see Symbiostock take on those same “settled in and still in love” characteristics.

    I agree, very well said!

    #9357
    Profile photo of jsfoto
    jsfoto
    Participant

    @Imago Borealis wrote:

    🙄 Can’t we get over this? Leo obviously had a very bad day and was more than edgy when he rolled out Symbiostock.com and reasonable debate started here. I hope he learns from that experience and I also hope everyone here can overcome hurt feelings. Now, let’s move on…

    +1

    When I joined Symbiostock last April the forum was a highly productive place and it was like that for many months. But in the last weeks when I open this forum and MSG having my first coffee in the morning I allways ask myself what might have happended over night.
    I really, really would like to get back to productiveness …

    #8378
    Profile photo of jsfoto
    jsfoto
    Participant

    Leo, if you are around: Could we have a place where you tell about particular changes in the most recent updates. I know you want to take a break from the forums, which I totally respect. But if we could have just short summaries of the changes you’ve made would be great 🙂

    #9382
    Profile photo of jsfoto
    jsfoto
    Participant

    Welcome to the Symbiostock Network … hope you enjoy 🙂

    #9408
    Profile photo of jsfoto
    jsfoto
    Participant

    Thanks a lot for your positive posts, Dennis, Jo Ann and Christine … what a relief after the last days … your words bring back my confidence in this great project !

    #9257
    Profile photo of jsfoto
    jsfoto
    Participant

    @leo wrote:

    @jsfoto wrote:

    I totally agree, Michele. It’s looking awesome and professional. Very good job again, Leo.
    And yes, I also check symbiostock.com all day, because I’m so curious 😀

    Thanks – btw I never thanked you for your kind words during that MSG storm!

    You’re very welcome … I’m glad to hear it helped a bit.

    #9258
    Profile photo of jsfoto
    jsfoto
    Participant

    I totally agree, Michele. It’s looking awesome and professional. Very good job again, Leo.
    And yes, I also check symbiostock.com all day, because I’m so curious 😀

    #9162
    Profile photo of jsfoto
    jsfoto
    Participant

    I did (already some hours ago) including theme toggling …

    #8150
    Profile photo of jsfoto
    jsfoto
    Participant

    I tried to get a kind of minimal design on my site, especially on my single image pages … so I decided to put the documentation of my code changes (some of them done with help of others like Jo-Ann and Martha) here. I hope there are some useful lines of code 😀

    Here is an example of an single image page:

    http://www.flashstockphoto.com/image/fashion-portrait-of-an-attractive-young-woman-with-closed-eyes-stock-photo/

    And this is the documentation of code changes:

    Flashstockphoto.com – documentation of changed code in Symbiostock, version 3

    1. Footer modified

    replace entire footer.php, via editor (under appearance) by:

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package symbiostock
    * @since symbiostock 1.0
    */
    ?>

    Copyright © 2013 flashstockphoto.com. All Rights Reserved. All photos are copyright protected.

    This site uses cookies. By continuing to browse the site, you are agreeing to our use of cookies.

    2. Modified Popular images and Featured images

    styles.css, add at the end:

    .DivImagesPopularText
    {
    position: relative;
    top: 45px;
    text-align: center;
    color: #A4A4A4;
    font-family: Arial;
    font-size:17pt;
    }
    .DivImagesPopularImages
    {
    position: relative;
    top: 20px;
    }
    .widget .search-result {
    float: left;
    height: 160px;
    margin-left: 13px;
    min-width: 160px;
    }

    3. Changing link color to red

    bootstrap.css

    line 327 :

    replace #428bca by #A4A4A4

    line 333 :

    replace #2a6496 by #FF0000

    4. Changing color of image number above product table from black to gray

    bootstrap.css, line 5386 and following lines, replace by:

    .panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #A4A4A4
    }

    5. Changig color of active size in product table from yellow to green

    styles.css, line 207

    #FFFF64

    replace by: #7ECF73

    6. Adding „Back to Top“ button on Single Image Pages

    content-image.php, line 14, add:

    content-image.php, line 221-223, add:

    BACK TO TOP</div


    7. Add Release information to single image page and change position and size of date

    content-image.php, line 48-95 replace by:

    <?php
    $symbiostock_post_meta = ‘ss_before_img_page_preview’;
    do_action( ‘ss_before_img_page_preview’, $symbiostock_post_meta );
    ?>

    <a id="stock-image-preview" title="” rel=”enclosure” type=”image/jpeg” href=””> <img itemprop="contentURL image" class="photo img-responsive" alt="” src=””/>

    <?php
    $symbiostock_post_meta = ‘ss_after_img_page_preview’;
    do_action( ‘ss_after_img_page_preview’, $symbiostock_post_meta );
    ?>

    <?php
    $symbiostock_post_meta = ‘ss_before_img_page_description’;
    do_action( ‘ss_before_img_page_description’, $symbiostock_post_meta );
    ?>

    <?php the_content( __( 'Continue reading ‘, ‘symbiostock’ ) ); ?>

    <?php
    $symbiostock_post_meta = ‘ss_after_img_page_description’;
    do_action( ‘ss_after_img_page_description’, $symbiostock_post_meta );
    ?>

    ‘ ) ); ?>



    <?php //code "borrowed" from symbiostock_marketer() in marketer_functions.php
    // model release
    $id = get_the_ID();
    $model_released = get_post_meta( $id, ‘symbiostock_model_released’, ‘N/A’ );
    if ( empty( $model_released ) || $model_released == false ) {
    $model_released[ 0 ] = ‘N/A’;
    } //empty( $model_released ) || $model_released == false

    //property release
    $property_released = get_post_meta( $id, ‘symbiostock_property_released’, ‘N/A’ );
    if ( empty( $property_released ) || $property_released == false ) {
    $property_released[ 0 ] = ‘N/A’;
    } //empty( $property_released ) || $property_released == false
    ?>

    Model Released:
    Property Released:


    Image updated—

    <?php
    $symbiostock_post_meta = ‘ss_before_img_page_author_box’;
    do_action( ‘ss_before_img_page_author_box’, $symbiostock_post_meta );
    ?>

    <?php
    $symbiostock_post_meta = ‘ss_after_img_page_author_box’;
    do_action( ‘ss_after_img_page_author_box’, $symbiostock_post_meta );
    ?>

    <?php
    $symbiostock_post_meta = ‘ss_bottom_img_page_preview_well’;
    do_action( ‘ss_bottom_img_page_preview_well’ );
    ?>

    8. Box „See inluded images“ centered

    collection-page.php

    line 117-119, replace by::

    ?>

    <?php


    9. Included image box, new color

    bootstrap-theme.css,line 212-220, replace by:

    .alert-info {
    background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
    background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #b9def0, 100%);
    background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
    background-image: linear-gradient(to bottom, #F1F1F1 0%, #C5C5C5 100%);
    background-repeat: repeat-x;
    border-color: #C5C5C5 ;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#ffd9edf7′, endColorstr=’#ffb9def0′, GradientType=0);
    }


    10. Changing text color of Exclusive Image Box to red

    bootstrap.css, line 5028

    #468847

    replace by: #FF0000

    11. Changing background color of Exclusive Image Box

    bootstrap-theme.css

    line 206

    (to bottom, #dff0d8 0%, #c8e5bc 100%)

    replace by:

    (to bottom, #EEEEEE 0%, #EEEEEE 100%)

    line 208

    #b2dba1

    replace by:

    #EEEEEE


    12. Changing Exclusive Image Text

    line 207 in cart.php (inc-classes-cart)


    Found only here on http://www.flashstockphoto.com

    13. Removing icons

    font-awesome.css

    Featured Images: line 398 icon-star-empty

    Keywords: line 506 icon-tags

    Latest Images: line 696 icon-eye-open

    Image Categories: line 1006 icon-sitemap

    Similar Images: line 1257 icon-bullseye

    add 1 (or anything als to the name of the icon


    14. Changing color of Description from black to gray

    bootstrap.css line 302-308, replace by:

    body {
    font-family: “Helvetica Neue”, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #999999;
    background-color: #ffffff;
    }

    15. Changing color of License Box from yellow to gray

    bootstrap.css, line1565-1574, replace by:

    background-color: #f9f9f9;
    border-color: #dddddd;
    }

    .table-hover > tbody > tr > td.warning:hover,
    .table-hover > tbody > tr > th.warning:hover,
    .table-hover > tbody > tr.warning:hover > td {
    background-color: #f5f5f5;
    border-color: #dddddd;
    }

    #8846
    Profile photo of jsfoto
    jsfoto
    Participant

    @lucato wrote:

    ^ I agree.

    As I’ve mentioned before, IMHO, the SYM.com main page should have stock agency look of the SYM network, big image slider, show feature images from network contributors (that can be also based in that suggestion of ad budget #4), have the free network image, video, illustration, whatever of the week to attract buyers, visitor and spread SYM.com, and for the wiki, want to be a contributor, and so on, just small links on the bottom. As pointing to the forum, download and so on. As THP said, the SYM.org should be for contributor segment.

    Well, just my opinion.

    I totally agree, that would be a reasonable way to use the .com and .org domains.
    And I like the idea of an image slider, featured images, etc on symbiostock.com .

    #8905
    Profile photo of jsfoto
    jsfoto
    Participant

    Thanks a lot for this detailed information, Dennis. This is very useful for the network, I think.

    #8914
    Profile photo of jsfoto
    jsfoto
    Participant

    Could you explain how exactly you get “green images” … I tried but I never managed to get them green, just yellow … perhaps you could make one step by step example. If I could manage to get them green by Yoast, I would like to do exactly what you do … 3-5 images a day, which will accumulate nicely over the year.
    Again: Thanks a lot for your positive thread!

Viewing 15 posts - 76 through 90 (of 245 total)