Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 2,034 total)
  • Author
    Posts
  • #26334
    Profile photo of Robin
    Robin
    Keymaster

    Hi Crystal,

    I see that the radio is active on your site but the choosing is not working. What version of WooCommerce are you running?

    #26298
    Profile photo of Robin
    Robin
    Keymaster

    Very cool stuff.

    FYI I haven’t been able to focus on marketing Symzio due to personal stuff as well as other work, but my enthusiasm and faith in it is always persistent. Don’t hesitate to keep marketing each other passively; it all builds up and helps.

    #26288
    Profile photo of Robin
    Robin
    Keymaster

    Hi Jean – that is legacy Symbiostock code. It is no longer supported and has been replaced by the new Symbiostock which operates on a completely different engine.

    #26261
    Profile photo of Robin
    Robin
    Keymaster

    Hi Mike

    In that case, please PM me your login info and I’ll take a look.

    #26256
    Profile photo of Robin
    Robin
    Keymaster

    This happens because full size images are not processed by PHP (which is more inefficient) so it uses a different download method. However, it is something we’re going to try to address in the next release as it should act as a download prompt for full size as well. Sometimes, however, this cannot be avoided.

    #26255
    Profile photo of Robin
    Robin
    Keymaster

    Hi Mike,

    Please check your email now, thanks.

    #26253
    Profile photo of Robin
    Robin
    Keymaster

    Hi Mike – looking into it.

    #26241
    Profile photo of Robin
    Robin
    Keymaster

    Looks like a fantastic theme – anything WooCommerce compatible will work beautifully with Symbiostock.

    Can’t access your site though – maybe DNS is switching over?

    #26238
    Profile photo of Robin
    Robin
    Keymaster

    The media size is saved when it is uploaded (width and height), however I believe it is mostly the ratio that is of relevance. So if you resize the originals and maintain aspect ratio that should be fine.

    It should not affect licenses at all as all final images are resized on the fly using the originals from ss_media.

    And yes, those are the original files you uploaded.

    All that being said, I would strongly suggest against what you are doing! Once you downsize them, that data is lost forever. File space is usually a non issue nowadays, and it is wiser to keep the full originals.

    #26230
    Profile photo of Robin
    Robin
    Keymaster

    Absolutely – we are totally fine with other developers creating themes or plugins to enhance Symbiostock (as long as it doesn’t confuse users as to the origin of the software).

    What sort of developer resources are we talking about? Code explanations or basic functionality descriptions?

    #26227
    Profile photo of Robin
    Robin
    Keymaster

    Go to tools-ftp and change the code to this:

    function ss_get_media_type($fileloc) {
    	$filetype = ss_get_mime_type($fileloc);
    
    	if ($filetype == 'image/svg+xml' || $filetype=='application/postscript' || $filetype=='application/eps' || $filetype=='application/x-eps'
    		 || $filetype=='image/x-eps' || $filetype=='image/eps' || $filetype=='application/octet-stream') $type = 'vector';
    	elseif ($GLOBALS['currSSV']->ss_v && (strpos($filetype,'video/') !== false)) $type = 'video';
    	else $type = 'raster';
    	if (isset($type)) return $type;
    	return false;
    }

    This will be implemented in the next release anyways. It basically defaults all media to a raster type if neither video or vector. This will allow you to upload any Imagick compatible media type.

    #26226
    Profile photo of Robin
    Robin
    Keymaster

    We can’t predict whether it will work or not – it may very well be just fine. But the supported version is 2.4.12.

    #26225
    Profile photo of Robin
    Robin
    Keymaster

    You can use Symbiostock without Imagick. That is not an issue.

    Generally, however, it requires much more memory without Imagick. I am guessing your processor is crashing randomly due to memory limits. Please use this guide and run your cron job to see if it displays errors:

    http://www.symbiostock.org/forums/topic/processor-not-processing-try-this/

    #26224
    Profile photo of Robin
    Robin
    Keymaster

    Try going to tools-ftp and edit the code to look like this:

    			if (!$keywords && isset($metadata->Subject)) $keywords = $metadata->Subject;
    			if (isset($metadata->SupplementalCategories)) {
    				if (!is_array($metadata->SupplementalCategories)) $category[] = $metadata->SupplementalCategory;
    				else $category = array_merge($metadata->SupplementalCategories,$category);
    			}
    			if (isset($metadata->SupplementalCategory)) {
    				if (!is_array($metadata->SupplementalCategory)) $category[] = $metadata->SupplementalCategory;
    				else $category = array_merge($metadata->SupplementalCategory,$category);
    			}
    		}

    #26223
    Profile photo of Robin
    Robin
    Keymaster

    Hi Ross,

    Thanks for all that thorough information. Let me look into it and test it.

Viewing 15 posts - 1,096 through 1,110 (of 2,034 total)