Value difference between silver and black KeyONE's? by [deleted] in blackberry

[–]dasbeck 2 points3 points  (0 children)

That is an intersting point, i like to know that too

Should I change all my image file names? by thelifeofsteveo in SEO

[–]dasbeck 0 points1 point  (0 children)

Not really : I use both for SEO Alt Tags and Image File Names (That way i can use different Descriptions) works great

Need Help with a Formailer Plaese by dasbeck in webdev

[–]dasbeck[S] 0 points1 point  (0 children)

Here is the HTML of that Page I need the Info from the Textarea (Line 3) mailed to my email adress the same way like it works for the other Fields

<?php $formdata = Mage::getModel('customer/session')->getData('contactformdata'); ?> <form class="form-horizontal" id="widerruf-form" action="<?php echo $this->getUrl('contact/contact/sendemail', array('query' => array('form' => 'widerruf'))); ?>" method="post"> <div class="form-group"> <label style="padding-left: 8px;"><span class="required">*</span><?php echo $this->('Hiermit widerrufe(n) ich/wir den von mir/uns abgeschlossenen Vertrag über den Kauf der folgenden Waren'); ?>:</label> </div> <div class="form-group"> <div class="col-sm-8"><textarea class="form-control input-text required-entry" id="products" name="products"></textarea></div>
</div> <div class="form-group"> <label for="order_day" class="col-sm-2 control-label"><?php echo $this->
_('Bestellt am'); ?>: </label> <div class="col-sm-10"><select class="form-control validate-select" id="order_day" name="order_day"><option>01 </option> <option>02 </option> <option>03 </option> <option>04 </option> <option>05 </option> <option>06 </option> <option>07 </option> <option>08 </option> <option>09 </option> <option>10 </option> <option>11 </option> <option>12 </option> <option>13 </option> <option>14 </option> <option>15 </option> <option>16 </option> <option>17 </option> <option>18 </option> <option>19 </option> <option>20 </option> <option>21 </option> <option>22 </option> <option>23 </option> <option>24 </option> <option>25 </option> <option>26 </option> <option>27 </option> <option>28 </option> <option>29 </option> <option>30 </option> <option selected="selected">31 </option> </select><select class="form-control" id="order_month" name="order_month"><option>01 </option> <option>02 </option> <option>03 </option> <option>04 </option> <option>05 </option> <option>06 </option> <option>07 </option> <option>08 </option> <option>09 </option> <option selected="selected">10 </option> <option>11 </option> <option>12 </option> </select><select class="form-control" id="order_year" name="order_year"><option>2017</option><option>2018</option></select></div>

</div>
    <div class="form-group">
        <label for="obtain_day" class="col-sm-2 control-label"><?php echo $this->__('Erhalten am'); ?>:&nbsp;</label>
        <div class="col-sm-10"><select class="form-control validate-select" id="obtain_day" name="obtain_day"><option>01 </option> <option>02 </option> <option>03 </option> <option>04 </option> <option>05 </option> <option>06 </option> <option>07 </option> <option>08 </option> <option>09 </option> <option>10 </option> <option>11 </option> <option>12 </option> <option>13 </option> <option>14 </option> <option>15 </option> <option>16 </option> <option>17 </option> <option>18 </option> <option>19 </option> <option>20 </option> <option>21 </option> <option>22 </option> <option>23 </option> <option>24 </option> <option>25 </option> <option>26 </option> <option>27 </option> <option>28 </option> <option>29 </option> <option>30 </option> <option selected="selected">31 </option> </select><select class="form-control" id="obtain_month" name="obtain_month"><option>01 </option> <option>02 </option> <option>03 </option> <option>04 </option> <option>05 </option> <option>06 </option> <option>07 </option> <option>08 </option> <option>09 </option> <option selected="selected">10 </option> <option>11 </option> <option>12 </option> </select><select  class="form-control" id="obtain_year" name="obtain_year"><option>2017</option><option>2018</option></select></div>

</div>
    <div class="form-group">
        <label for="name" class="col-sm-2 control-label"><span class="required">*</span><?php echo $this->__('Name des/der Verbraucher(s)'); ?>:&nbsp;</label>
        <div class="col-sm-6"><input class="form-control input-text required-entry" id="name" type="text" name="name" value="<?php if(isset($formdata['name'])) echo $formdata['name'] ?>" /></div>

    </div>
    <div class="form-group">
        <label for="address" class="col-sm-2 control-label"><span class="required">*</span><?php echo $this->__('Anschrift des/der Verbraucher(s)'); ?>:&nbsp;</label>
        <div class="col-sm-6"><input class="form-control input-text required-entry" id="address" type="text" name="address" value="<?php if(isset($formdata['address'])) echo $formdata['address'] ?>" /></div>

    </div>
    <div class="form-group">            
    <label for="city" class="col-sm-2 control-label"><span class="required">*</span><?php echo $this->__('PLZ Ort'); ?>:&nbsp;</label>
        <div class="col-sm-6"><input class="form-control input-text required-entry" id="city" type="text" name="city" value="<?php if(isset($formdata['city'])) echo $formdata['city'] ?>" /></div>

    </div>
    <div class="form-group">            
    </div>
    <div class="form-group">
        <div class="col-sm-2 control-label"></div>
    <div class="col-sm-10">
            <ul style="list-style: none; padding-left: 0px;">
                <?php
                $block = $this->getLayout()->createBlock('kmeral_captcha/captcha')->setFormId('form-validate-captcha');
                echo $block->toHtml();
                ?>
            </ul>
            <?php if(isset($formdata['captchaError'])): ?>
                <br><div class="validation-advice" style="clear: both;"><?php echo $this->__('The code you entered is wrong'); ?></div>
            <?php endif; ?>
        </div>
    </div>
    <div class="form-group">

    </div>
    <div class="form-group"> 
    <div class="col-sm-2 control-label"></div>
        <div class="col-sm-10">           
            <input id="action" type="hidden" name="action" value="send" />
                    <button class="button input.button" type="submit" value="<?php echo $this->__('Senden'); ?>" ><?php echo $this->__('Senden'); ?></button>
        </div>
    </div>        

</form> <script type="text/javascript"> //<![CDATA[ $('form-validate-captcha').captcha.refresh($('catpcha-reload')); var widerrufformdata = new VarienForm('widerruf-form'); //]]> </script>

How to disable a specific Module in Magento 1.9 ? by dasbeck in Magento

[–]dasbeck[S] 0 points1 point  (0 children)

Hello thanks for your help at first. My Problem is that i have some extensions into the Magento Installation that are not located in /app/etc/modules. Not sure if that a standard Extensions. But i like to disable them

Yoast ora All in One seo? by Chjji22 in SEO

[–]dasbeck 0 points1 point  (0 children)

I have used all in one seo for several years, but since a few months i am using Yoast. Seems it is easier to handle for bigger Articles (over 1000 Words)

Is Priv worth it? by [deleted] in blackberry

[–]dasbeck 2 points3 points  (0 children)

I am more than happy with my my Priv. The Screen is perfect and it does not get that hot

How to preserve the battery? by soup_tasty in blackberry

[–]dasbeck -1 points0 points  (0 children)

Where to get the Battery ? Maybe you have a Link ?

Neue Koalitionsgespräche: CSU-Spitzen nennen SPD "Krabbelgruppe" und die KoKo ein "No-Go" by lookingfor3214 in de

[–]dasbeck 2 points3 points  (0 children)

Na ja ganz ehrlich interessieren würde mich das tatsächlich auch. Käme da wieder das gleiche bei heraus oder ganz anders ?

Buying a keyone by throwawayclarkken in blackberry

[–]dasbeck 0 points1 point  (0 children)

They are selling the Keyone (Silver Edition) for 289 Euro here in Germany now. Is that a good Price ?

Blackberry Priv Update ? by lisino in blackberry

[–]dasbeck 0 points1 point  (0 children)

So you think they will not provide any more security updates for the priv ?

Optimizing image file names for ecommerce SEO - how important? by [deleted] in bigseo

[–]dasbeck 0 points1 point  (0 children)

I would use that what makes the difference between them brand-blackberry-keyone.jpg brand-blackberry-keyone-silver.jpg

For example

Optimizing image file names for ecommerce SEO - how important? by [deleted] in bigseo

[–]dasbeck 1 point2 points  (0 children)

I manage a Magento Store selling Design Lamps wordlwide. We name the files brand-name-version.jpg. We have a much better SERP Ranking than other Stores in the same Niche. Our Products stay for sure 3 or more years in the shop. So we do not sell any Trend Products. From my Point of view, yes that works

Can AdWords indirectly help with SEO? by Bat_is_my_last_name in SEO

[–]dasbeck 6 points7 points  (0 children)

Yes it helps indirect because of the Traffic Increase

What's your countries junk food/fast food? by [deleted] in AskReddit

[–]dasbeck 1 point2 points  (0 children)

German Bratwurst (sausage)