Hi I'm planning to make my website as purely directory for public looking charity home/orphanage. So i plan to remove payment module to let owner of orphanage home can put their home in my web list without need to pay any package business-alike. In other word, they can skip payment module. Once they put all their info as required (step one), they proceed with final step (term and condition applied and submit button) Thanks
I am also interested in this model for a similar type project and interested how to make this doable. Thanks!
I believe then you will want to only use the free capability, and turn off both the paid and re-occurring packages. Also in which if you do not want to publish everything you can set it so that the users posts go directly to publishing. If you need some assistance on how to set this up, just ask and I will be glad to help. If I am not understanding fully what is being requested, please correct me :s All the best, -Kent
Sure iqbali, no problem. Below you will see a image of the section of the admin dashboard that you want to be in. So under the Geocraft Settings > Theme Options > Listing Settings You will see that there is a 'Free Listing' and a 'Premium Listing' If you want it so that the posts go directly to publishing, change the first two drop downs to be 'Publish' instead of 'Pending' Hope that works for you! -Kent
Thanks for that Kent. I would like to know if i can remove line as above. its in submit-listings page. Not sure which file it is.
To remove the price functionality you will need to open a code editor. Open these files: library/front_end/listing_submit_form.php Go-to line 543 Add a class to the div that also has the class form_row. This edit would look like this in the end if you use the class 'my_hidden_class' Code: <!--Start Row--> <div class="form_row my_hidden_class"> After this we need to style the class so it gets hidden. Open up your custom stylesheet and add this to it: Code: .my_hidden_class { display:none; } After that, upload and see what happens. Any questions, feel free to ask.
it didn't work. i'm already done 1st step (hidden_class). Maybe i put 2nd step at wrong place? not sure the exact location for 2nd step.
ok.i'm already done with 2nd step. The option->styling option->custom css. but still nothing happen. something goes wrong with 1st step?
Sorry I was away for a bit. Perhaps I explained that a bit wierd. If you can upload your files, I will try to edit them myself as it shouldnt take too long. All the best, -Kent
Hey again, So here is the listing_submit_form.php I have added the class hiddenClass to two places. One to hide the title, and one to hide the price, but to leave the button to proceed to the preview page. Now you have to add some CSS styling to your stylesheet. Open your stylesheet and add this: .hiddenClass { display:none !important; } Hope that helps man, Tested and works.
thanks man!. but "select package" line still there. if u kindly to show me how to remove "select package" line. which file need to edit?
Please provide a link, and I will tell you where to add the hiddenClass to hide the div you are trying to remove.