Forum Replies Created
-
Katherine J. BatesKeymasterYes, just now I’ve created it by our given details called John Smith.
Best regards
Katherine J. BatesKeymasterHi
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?
Katherine J. BatesKeymasterThank you for specific issue details, Please let me see.
Best regards
Katherine J. BatesKeymasterIt 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
Katherine J. BatesKeymasterYou are most welcome
Katherine J. BatesKeymasterHi
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
Katherine J. BatesKeymasterHi
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
Katherine J. BatesKeymasterHi
Sorry for the delay, I’m here to help you.
Please allow some time to check your site.
Best regards
Katherine J. BatesKeymasterThe 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
Katherine J. BatesKeymasterDear @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
January 5, 2018 at 5:38 pm in reply to: Re: Payment Gateway for Indian User – PayUMoney or InstaMojo #1005
Katherine J. BatesKeymasterHi
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
Katherine J. BatesKeymasterHi
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
Katherine J. BatesKeymasterYes, 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
Katherine J. BatesKeymasterHi @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
Katherine J. BatesKeymasterDear @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