72.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

08-22-2017, 03:04 AM
Post: #1
[REQ] Theme/Plugin/System/Script for showing and creating Classified Ads
Hello guys,

I can't find any WordPress theme/plugin or any system/script for creating and showing classified ads.

I want to build web site like these sites:

Code:
1. https://www.gumtree.com/
2. http://adsglobe.com/
3. https://www.buysaleandtrade.com/

Please help! :)

Thanks
08-22-2017, 03:46 AM
Post: #2
RE: [REQ] Theme/Plugin/System/Script for showing and creating Classified Ads
Me too building classified ads site right now. I found this nice theme on net and nulled it by myself

AdForest - Classified Ads WordPress Theme
https://themeforest.net/item/adforest-cl...e/19481695

but version I found is old 2.5.0. Latest version is 2.5.4. If someone could post latest version it will be great.

AdForest 2.5.0 download
http://www58.zippyshare.com/v/KM4CgpSJ/file.html
AdForest null instruction

FILE
wp-content\themes\adforest\tgm\tgm-init.php

THIS
function sb_themes_register_required_plugins() {
// check if purchase code is there
if( get_option( '_sb_purchase_code' ) == "" )
{
return;
}

REPLACE WITH THIS
function sb_themes_register_required_plugins() {
// check if purchase code is there
if( get_option( '_sb_purchase_code' ) == "verified" )
{
return;
}
-----------------------------------
FILE
wp-content\themes\adforest\inc\utilities.php

THIS
if ( ! function_exists( 'adforest_sample_admin_notice_activate' ) ) {
function adforest_sample_admin_notice_activate() {
if( get_option( '_sb_purchase_code' ) != "" )
{
return;
}

REPLACE WITH THIS
if ( ! function_exists( 'adforest_sample_admin_notice_activate' ) ) {
function adforest_sample_admin_notice_activate() {
if( get_option( '_sb_purchase_code' ) != "verified" )
{
return;
}
-----------------
08-22-2017, 04:12 AM
Post: #3
RE: [REQ] Theme/Plugin/System/Script for showing and creating Classified Ads
(08-22-2017 03:46 AM)astra Wrote:  Me too building classified ads site right now. I found this nice theme on net and nulled it by myself

AdForest - Classified Ads WordPress Theme
https://themeforest.net/item/adforest-cl...e/19481695

but version I found is old 2.5.0. Latest version is 2.5.4. If someone could post latest version it will be great.

AdForest 2.5.0 download
http://www58.zippyshare.com/v/KM4CgpSJ/file.html
AdForest null instruction

FILE
wp-content\themes\adforest\tgm\tgm-init.php

THIS
function sb_themes_register_required_plugins() {
// check if purchase code is there
if( get_option( '_sb_purchase_code' ) == "" )
{
return;
}

REPLACE WITH THIS
function sb_themes_register_required_plugins() {
// check if purchase code is there
if( get_option( '_sb_purchase_code' ) == "verified" )
{
return;
}
-----------------------------------
FILE
wp-content\themes\adforest\inc\utilities.php

THIS
if ( ! function_exists( 'adforest_sample_admin_notice_activate' ) ) {
function adforest_sample_admin_notice_activate() {
if( get_option( '_sb_purchase_code' ) != "" )
{
return;
}

REPLACE WITH THIS
if ( ! function_exists( 'adforest_sample_admin_notice_activate' ) ) {
function adforest_sample_admin_notice_activate() {
if( get_option( '_sb_purchase_code' ) != "verified" )
{
return;
}
-----------------

Thanks

I will take this option, but I'll wait if someone post something else..

Happydance
08-22-2017, 08:16 AM
Post: #4
RE: [REQ] Theme/Plugin/System/Script for showing and creating Classified Ads
(08-22-2017 04:12 AM)extranoski Wrote:  Thanks

I will take this option, but I'll wait if someone post something else..

Happydance

Trust me if you are doing something serious use open source project like osclass.
:)
08-22-2017, 09:13 AM
Post: #5
RE: [REQ] Theme/Plugin/System/Script for showing and creating Classified Ads
(08-22-2017 08:16 AM)sup3rman Wrote:  
(08-22-2017 04:12 AM)extranoski Wrote:  Thanks

I will take this option, but I'll wait if someone post something else..

Happydance

Trust me if you are doing something serious use open source project like osclass.


Looks very interesting... Thanks
52.gif




60.gif