Forum Replies Created

Viewing 15 replies - 601 through 615 (of 935 total)
  • in reply to: hide "my campaign" on administrato section #1180

    Dear @mr999

    To hide My Campaigns menu at admin login, you’ve to set a condition, please follow the instruction.

    Go to /root/resources/views/admin/menu.blade.php open it with a code editor, find the below code block

    <li>
                    <a href="#"><i class="fa fa-bullhorn"></i> @lang('app.my_campaigns')<span class="fa arrow"></span></a>
                    <ul class="nav nav-second-level">
                        <li>  <a href="{{route('my_campaigns')}}">@lang('app.my_campaigns')</a> </li>
                        <li>  <a href="{{route('start_campaign')}}">@lang('app.start_a_campaign')</a> </li>
                        <li>  <a href="{{route('my_pending_campaigns')}}">@lang('app.pending_campaigns')</a> </li>
                    </ul>
                </li>

    Replace this with below code block

                @if(!$auth_user->is_admin())
                    <li>
                        <a href="#"><i class="fa fa-bullhorn"></i> @lang('app.my_campaigns')<span class="fa arrow"></span></a>
                        <ul class="nav nav-second-level">
                            <li>  <a href="{{route('my_campaigns')}}">@lang('app.my_campaigns')</a> </li>
                            <li>  <a href="{{route('start_campaign')}}">@lang('app.start_a_campaign')</a> </li>
                            <li>  <a href="{{route('my_pending_campaigns')}}">@lang('app.pending_campaigns')</a> </li>
                        </ul>
                    </li>
                @endif

    Then it will be removed from the admin dashboard

    Best regards

    in reply to: ico icon #1176

    Hi

    currently there is no meta tags. If you need it, you can hire a laravel developer who can easily customize this for you.

    Best regards

    in reply to: Database Problem May be , Not showing mail at front page #1174

    Please provide your URL, so we can check

    Best regards

    in reply to: pics not viewing #1173

    Please provide your website URL

    so we can check.

    Best regards

    in reply to: Image Upload Not Working #1172

    Please check, your website is should now work with image upload

    Best regards

    in reply to: ico icon #1171

    For add favicon to your website, please follow below instructions

    place the favicon file called favicon.ico in the root directory

    Add the following code below the <head> HTML tag.

    <link rel=”shortcut icon” href=”http://yourwebsiteurl.com/favicon.ico&#8221; />

    Best regards

    in reply to: Image Upload Not Working #1163

    Hi

    Please provide us your cPanel URL and credential, we will check the issue and resolve as soon as possible.

    Best Regards

    in reply to: instalation problem #1158

    You are most welcome

    in reply to: Email Verification System #1157

    I’m sorry, it’s goes to resolve accidentally, please open another question

    Best regards

    in reply to: file paths #1155

    Please check your code, it should be like this <img src="https://www.plzfundus.com/icon/images/lock.png" width="32" height="32" />

    in reply to: file paths #1150

    Please don’t take otherwise, we are going to a vacation, so our all of buyers may not get support during this time.

    Vacation will be until 5th February, and we will get back to 6th February.

    It’s just for your Attention.

    Best Regards

    in reply to: file paths #1148

    Hi

    You have not described, just copied and pasted that question, so it’s really tough to get what you want.

    If you want to change the icon with image, place image there in the lock icon and removed the lock icon.

    Such as replace this line <i class="fa fa-lock"></i> with the line <img src="your-image-url" />

    BTW: please see the right sidebar notice and our office will be close soon. We will come back at 6th fabruary

    Best regards

    in reply to: file paths #1145

    Could you please elaborately describe your last reply?

    I didn’t understood

    in reply to: Email Verification System #1143

    Please provide your URL, so we can check it

    Best regads

    in reply to: file paths #1137

    Hi

    Sorry, didn’t understood the question what you want to do in the banner.

    If you wish to change this banner. Please change the image from directory, located at https://domain.com/assets/images/main-banner.jpg

    If you wish to change the banner background color, you have to change the gradient color located below, Hope you are familiar with CSS

    located at http://domain.com/assets/css/style.css

    Line number 72

    .main-banner::before {
        content: "";
        background: rgba(0, 0, 0, 0) radial-gradient(at center bottom , #0096d6 12%, #00328f) repeat scroll 0 0;
        height: 100%;
        left: 0;
        opacity: 0.7;
        position: absolute;
        top: 0;
        width: 100%;
    }

    Change only background value in line background: rgba(0, 0, 0, 0) radial-gradient(at center bottom , #0096d6 12%, #00328f) repeat scroll 0 0;

    Best regards

Viewing 15 replies - 601 through 615 (of 935 total)