We’re currently experiencing a high volume of inquiries and our response time could be up to 2 days. We apologize for the delay, and thank you for your patience. Our available time: 2 AM - 1 PM (Monday - Friday) (UTC+0 Timezone).

Okay
  Public Ticket #2825047
how to edit the homepage andadd ite add ite
Closed

Comments

  •  1
    HasA2AA started the conversation

    Hello.

    How i can edit the 'Download Martfury App' on the home page?

    i want to add more 'product-categories' on my home page, how I do that?
    now computer and tech AND Consumer Electronic, are visible.

  •  1
    HasA2AA replied

    moreover, this directory: https://,,,com/simple-sliders/edit/1
    when i try to replace the picture it does not work.

  •  3,962
    Support replied

    Hi,

    For download apps section, you need to go Admin -> Pages and select page "Home".

    2318574974.png

    Then modify or delete shortcode [download-apps]

    3437590148.png

    User guide: https://www.evernote.com/l/AUeUlVmSTNxDeaEe0VjQbTwB7yVuokc5cOE

    To add more product categories on the homepage, you just need to check "Is featured?" in product category editing page.

    For simple slider issue, it's an issue with CSS, please extract the attachment and replace public/vendor/core/core/base/css/core.css  then it should be fixed.

    I will update it on Codecanyon in the next 2 hours.

  •  1
    HasA2AA replied

    Thanks for the info and help.
    I failed to find the attachment in your previous reply. could you reattach it please?

  •  3,962
    Support replied

    Ah, sorry. I forgot attach it.


  •  1
    HasA2AA replied

    Thank you for the quick update.
    I actually replaced the old file with new css file but the error is still visible.

  •  1
    HasA2AA replied

    Also when i am trying to save the updated text in .../pages/edit/1to edit the 'Download Martfury App' text, it does not save my new changes and keeps the previous text.

  •  3,962
    Support replied

    Hi,

    Try to replace all description= in the page content to subtitle=

    then try again. There is an issue with Mod Security if we put description= in the page content. I don't know why.

    1389270448.png


  •  1
    HasA2AA replied

    Charming!
    Solved issue with Download App case. Thanks.

    Any update regarding:
    I actually replaced the old file with the new CSS file but the error is still visible. I still ca not change sliders.

  •  3,962
    Support replied

    Hi,

    I think it's browser cache issue. 

    Try to clear your browser cache or test it in incognito mode.

  •  3,962
    Support replied

    Or you can add to .env file.

    ASSETS_ENABLE_VERSION=true
    ASSETS_VERSION=5.18.1

    It will clear your cache.


  •  1
    HasA2AA replied

    Worked. Highly Appreciating.

  •  1
    HasA2AA replied

    Sorry for bothering you again.
    I attempted to place two ads in the Product Slidebar section. but it does one add there. i want to have multiple ads there in a drop down style. not sure how to make it happen. thanks

  •  1
    HasA2AA replied

    I placed two product sidebar ads and put their order 8 and 9. the one with order 9 replaced the one with order 8. Only one of them gets displayed there.

  •  1
    HasA2AA replied

    Also, I would like to know how to add text or hyperlink beside: Track your order |  Currency in the header.
    Thanks

  •  3,962
    Support replied

    Hi,

    For ad, it's banner image ads so it just can be displayed 1 image in 1 ad placement.

    You can't add multiple images for 1 place. If you set > 1 ad for an ad place, it will just display the last one.

    There is no option to add text/link next to "Track your order", you have to modify it from the source code in 

    platform/themes/martfury/partials/header.blade.php

  •  1
    HasA2AA replied

    Thank you.

    I browsed platform/themes/martfury/partials/header.blade.php
    I noticed the code for that specific part which is:

    @if (is_plugin_active('ecommerce'))
                                <ul class="navigation__extra">
                                    <li><a href="{{ route('public.orders.tracking') }}">{{ __('Track your order') }}</a></li>
                                    @php $currencies = get_all_currencies(); @endphp
                                    @if (count($currencies) > 1)
                                        <li>
                                            <div class="ps-dropdown">
                                                <a href="{{ route('public.change-currency', get_application_currency()->title) }}"><span>{{ get_application_currency()->title }}</span></a>
                                                <ul class="ps-dropdown-menu">
                                                    @foreach ($currencies as $currency)
                                                        @if ($currency->id !== get_application_currency_id())
                                                            <li><a href="{{ route('public.change-currency', $currency->title) }}"><span>{{ $currency->title }}</span></a></li>



    - I actually don't want to modify the 'Track your order' but rather, i want to add the following text beside it same as it is in the demo of your site.
    i want to add: 'Sell on Teemcha'.

    Now could you please show me how i do or simply edit the above code including the 'Sell on Teemcha' in it?


  •  3,962
    Support replied

    Hi,

    Please extract the attachment and replace platform/themes/martfury/partials/header.blade.php

    Then you will have a link like this:

    7893958424.png

    Go to Admin -> Translations -> Theme translations to change "Sell On Martfury" to "Sell on Teemcha".

  •  1
    HasA2AA replied

    Thank you so much.