منتدى استراحات زايد

منتدى استراحات زايد (http://vb.ma7room.com/)
-   منتدى أخبار المواقع والمنتديات العربية والأجنبية (http://vb.ma7room.com/f183.html)
-   -   سؤال في القائمة المنسدلة لShopify في التعريب (http://vb.ma7room.com/t1580727.html)

محروم.كوم 09-06-2014 04:10 PM

سؤال في القائمة المنسدلة لShopify في التعريب
 
السلام عليكم ورحمة الله وبركاتة
عندي مشكلة وان شاء الله تخدموني فيها ويجزاكم عني الخير:tears::tears:
فتح موقع تجاري عن طريق Shopify ولما جيت اترجم الموقع للعربية واجهتني مشكلة في الربط عند انشاء قائمة منسدلة "drop-down" كما في الصورة :bigsmile:
http://www.traidnt.net/vb/images/img...014/09/597.jpg

القائمة بعد الترجمة تختفي حتى السهم ماعدا يظهر :crazy::crazy:

http://www.traidnt.net/vb/images/img...014/09/598.jpg

هذا كود الثيم الرئيسي:icon-mos:
رمز PHP:
<span style="color: #000000">doctype html>














{{
page_title }}{% if current_tags %} &ndash; tagged "{{ current_tags | join: ', ' }}"{% endif %}{% if current_page != 1 %} &ndash; Page {{ current_page }}{% endif %}{% unless page_title contains shop.name %} &ndash; {{ shop.name }}{% endunless %}


{% if
page_description %}

{% endif %}





{% include
'fb-open-graph-tags' %}
{% include
'twitter-cards' %}

{{
'styles.scss.css' | asset_url | stylesheet_tag }}
{{
'social/social-icons.css' | global_asset_url | stylesheet_tag }}
{{
'//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css' | stylesheet_tag }}
{% if
settings.google_header_font != "none" %}

{% endif %}
{% if
settings.google_nav_font != "none" %}

{% endif %}
{{
'html5shiv.js' | asset_url | script_tag }}

{{
content_for_header }}



{{ 'option_selection.js' | shopify_asset_url | script_tag }}
{{ 'api.jquery.js' | shopify_asset_url | script_tag }}

{% if template contains 'customers' %}
{{ 'shopify_common.js' | shopify_asset_url | script_tag }}
{{ 'customer_area.js' | shopify_asset_url | script_tag }}
{% endif %}














</i>







{% if cart.item_count != 0 %}
Checkout
{% endif %}
</i> Cart: {{ cart.item_count }}
{% include 'customer-links' %}
{% if settings.top_bar_linklist != blank %}
{% for link in linklists[settings.top_bar_linklist].links %}
{{ link.title }}
{% endfor %}
{% endif %}
</ul>
</i>Menu










{% include 'mobile-menu' %}

</div>






{% if settings.navigation_alignment == "right" %}




{% if settings.use_logo %}

{% if template == 'index' %}
{{ shop.name }}</h1>
{% endif %}
{% else %}
{{ shop.name }}


{% endif %}
</div>
</div>




{% include 'site-nav' %}

</div>

</div>
</div>
{% endif %}



{% if settings.navigation_alignment == "below" %}


{% if settings.use_logo %}

{% if template == 'index' %}
{{ shop.name }}</h1>
{% endif %}
{% else %}
{{ shop.name }}


{% endif %}
</div>
</div>




{% include 'site-nav' %}


{% include 'mobile-menu' %}

</div>

{% endif %}




{{ content_for_layout }}



</div>
</div>







</div>

{% assign blog_module_in_footer = false %}


{% unless settings.footer_blog_post == blank or blogs[settings.footer_blog_post].empty? or blogs[settings.footer_blog_post].articles.size == 0 %}
{% assign article = blogs[settings.footer_blog_post].articles.first %}
{% assign blog_module_in_footer = true %}


{{ settings.footer_blog_post_header }}


{{ article.title | link_to: article.url }}</p>
{{ article.content | strip_html | truncatewords: 30 }}


</div>
</div>
{% endunless %}




{{ settings.footer_linklist_title }}



{% for link in linklists[settings.footer_linklist].links %}
{{ link.title }}

{% endfor %}
</ul>
</div>





{% if settings.footer_display_newsletter %}

{{ settings.footer_newsletter_title }}





</div>
{% endif %}

{% if blog_module_in_footer %}

{% if settings.enable_social_links %}
{{ settings.footer_social_title }}


{% include 'social-links' %}
{% endif %}
</div>
{% endif %}

</div>


{% unless blog_module_in_footer %}


{% if settings.enable_social_links %}
{{ settings.footer_social_title }}


{% include 'social-links' %}
{% endif %}
</div>

</div>
{% endunless %}



Copyright &copy; {{ 'now' | date: "%Y" }} {{ shop.name }} | {{ powered_by_link }} {% if settings.designed_by %}{% endif %}


{% if shop.enabled_payment_types.size > 0 %}

{% for type in shop.enabled_payment_types %}


{% endfor %}
</ul>
{% endif %}
</div>


</div>

</div>


{% if settings.display_slideshow %}
{{ 'jquery.flexslider-min.js' | asset_url | script_tag }}
{% endif %}
{% if settings.enable_product_image_zoom %}
{{ 'jquery.zoom.js' | asset_url | script_tag }}
{% endif %}
{{ 'jquery.fancybox.js' | asset_url | script_tag }}
{{ 'scripts.js' | asset_url | script_tag }}

{% if template contains 'product' %}



{% endif %}



</div> </div></div>هذا كود القائمة المنسدلة:icon-mos:
رمز Code:
  • {% for link in linklists.main-menu.links %}
    {% assign has_sub_menu = false %}
    {% assign has_sub_categories = false %}
    {% assign parent_link_active = false %}
    {% assign child_list_handle = link.title | handle %}
    {% if linklists[child_list_handle] and linklists[child_list_handle].links.size > 0 %}
    {% assign has_sub_menu = true %}
    {% for l in linklists[child_list_handle].links %}
    {% if handle != blank and handle == l.object.handle %}
    {% assign parent_link_active = true %}
    {% elsif page_title == l.title %}
    {% assign parent_link_active = true %}
    {% endif %}
    {% endfor %}
    {% elsif settings.display_collection_dropdown and link.type == 'collection_link' and link.object.all_tags.size > 0 %}
    {% assign has_sub_categories = true %}
    {% endif %}


  • {{ link.title }}
    {% if has_sub_menu or has_sub_categories %}

    {% endif %}

    {% if has_sub_menu or has_sub_categories %}
    • {% if has_sub_menu %}
      {% for l in linklists[child_list_handle].links %}

    • {{ l.title }}
      {% endfor %}



      {% elsif has_sub_categories %}
      {% for tag in link.object.all_tags %}

    • {{ tag }}
      {% endfor %}
      {% endif %}



    {% endif %}
    {% endfor %}
هذي صورة اضافي وقت ما اسوي ربط ووين المشكلة
http://www.traidnt.net/vb/images/img...014/09/599.jpg

اتمنى منكم :icon30: الحل ومنى الدعاء :blushing::bigsmile:</div>


الساعة الآن 02:59 AM

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2 TranZ By Almuhajir


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227