Forum Replies Created

Viewing 15 replies - 646 through 660 (of 935 total)
  • in reply to: Can\'t create a new campaign #1029

    Yes, just now I’ve created it by our given details called John Smith.

    Best regards

    in reply to: Can\'t create a new campaign #1026

    Hi

    I don’t know what’s going on, I can create campaign every first attempt, please see there I’ve created another campaign

    http://www.fundmetnt.com/dashboard/my_campaigns

    Let us know when you got the error?

    in reply to: Can\'t create a new campaign #1025

    Thank you for specific issue details, Please let me see.

    Best regards

    in reply to: Problem with language #1021

    It will confusion if you don’t know laravel. it’s just an example code, not real.

    Please wait until we solve this, we will notify you. but it will take some time.

    Best regards

    in reply to: Assist with monetary value conversion #1019

    You are most welcome

    in reply to: Problem with language #1018

    Hi

    It’s tough to get this translation, because of it’s comes from the database, however. We will try to add this.

    In the meantime, you can set a condition like

    if($condition == 'new'){
    //your portuguese word
    }

    Same for the state.

    Best regards

    in reply to: Can\'t create a new campaign #1017

    Hi

    Seems your website is running fine, http://www.fundmetnt.com/campaign/14/test-campaign-for-check

    I’ve just created a campaign, where is the issue? could you please let me know?

    Best regards

    in reply to: Can\'t create a new campaign #1016

    Hi

    Sorry for the delay, I’m here to help you.

    Please allow some time to check your site.

    Best regards

    in reply to: Assist with monetary value conversion #1009

    The Your website where hosted, the server information. If you feel insecure to provide this, that’s OK, i’m giving you the solution, hope you can do this.

    Open the helper file in a text editor /root/app/helpers.php

    Replace the below code block from line 267 to 284

    function themeqx_price($price = 0){
        return get_option('currency_sign').' '.$price;
    }
    
    /**
     * @param int $price
     * @param int $negotiable
     * @return string
     */
    
    function themeqx_price_ng($price = 0, $negotiable = 0){
        $ng = $negotiable ? ' ('.trans('app.negotiable').') ' : '';
        $show_price = '';
        if ($price > 0){
            $show_price = get_option('currency_sign').' '.$price;
        }
        return $show_price.$ng;
    }

    With below code block

    
    function themeqx_price($price = 0){
        if ($price > 0){
            $price = number_format($price, 2);
        }
        return get_option('currency_sign').' '.$price;
    }
    
    /**
     * @param int $price
     * @param int $negotiable
     * @return string
     */
    
    function themeqx_price_ng($price = 0, $negotiable = 0){
        $ng = $negotiable ? ' ('.trans('app.negotiable').') ' : '';
        $show_price = '';
        if ($price > 0){
            $price = number_format($price, 2);
            $show_price = get_option('currency_sign').' '.$price;
        }
        return $show_price.$ng;
    }

    It will solve your issue.

    Best regards

    in reply to: Assist with monetary value conversion #1007

    Dear @jaciel

    Sorry to see, you’ve placed a bad review on this product, we were in the weekend, and this time we are unable to give support.

    Please share your Website server info and we will do this to your server.

    Please review your rating and it will be very great if you place 5-stars. We are happy to help you.

    Best regards

    Hi

    Thank you for purchasing, You can make a payment gateway esasily by follow our existing PayMent method like PayPal or Stripe.

    Also, please read the doc to install properly https://www.themeqx.com/docs/getfund-a-professional-laravel-crowdfunding-platform/installation/

    Follow the video to install properly https://www.youtube.com/watch?v=wRB03HZ_7Qk

    Best regards

    in reply to: A button to approve campaign disappear #997

    Hi

    Didn’t saw any disappear approve button to your admin panel. Feel free you can check, it will be hide once you approve a campaign.

    Best regards

    in reply to: A button to approve campaign disappear #995

    Hi @Cyberinternet

    Yes, the second one related BUY Now is a mistake, we will fix this it by coming version.

    BTW: for the first one, Could you please send us a screenshot of disappearing approve button. So we can check it.

    Best regards

    in reply to: [GetFund] Remove Id from url? #994

    Hi @isabella

    If you want to like this, this will consume your huge memory, you’ve to search your campaign for the slug with every request.

    The current one is the effective method to get this. sometimes slug is not working with Unicode characters, so you need an ID to find the campaign.

    If you badly need this, then you need to get customized one.

    Best regards

    in reply to: Home page style broken #993

    Dear @Bashet

    Please check your root path, your asset link might not working or not accordingly set by directory.

    If your site is at the root, then avoid link asset from the public directory. For the more investigation, please place your URL here, we will ping you if we need the server information to fix this issue.

    Best regards

Viewing 15 replies - 646 through 660 (of 935 total)