Discussion on MyListing - Directory & Listing WordPress Theme

Discussion on MyListing - Directory & Listing WordPress Theme

Cart 21,525 sales
Well Documented

27collective supports this item

Supported

This author's response time can be up to 1 business day.

12814 comments found.

Hi, Good Morning ! Pre-Sale Question 1 : Is MyListing available in joomla or any other CMS, Actually my client don’t want in wordpress (Please share link(if you have)) 2 : Do you have flutter mobile application for this theme ?

Hi bought this and getting to grips with how it works, seems great so far, thanks for the great work. I am getting a ‘Warning: Undefined array key 0 in C:\Users\geode\Local Sites\3placementcom\app\public\wp-content\themes\my-listing\includes\src\explore.php on line 140’ error on the ‘explore’ page, on the left of the categories (ie left of the what are you looking for section) which comes from this line in explore.php $this->active_listing_type = $this->types0;.

Since installing the demo, i have changed the names and all details of all listing types (keeping only 3) rearranged links everywhere anb i am comparing to the demo but i cannot figure out why i am getting this error. It seems its trying to get the type of active listing but there is no active listing since i am coming to the explore page using a generic url (explore?type=jobs for example).

If better i can post to item support

Hi,

Open a ticket in our helpdesk and we’ll debug this: https://helpdesk.27collective.net/

pablof

pablof Purchased

Hi, here https://main.mylistingtheme.com/explore/?type=place&sort=latest on mobile the “Search as I move the map” option does not work. It’s fine on the desktop. Can you fix it?

Hi,

I tested this but didn’t notice any issues, share some more details

pablof

pablof Purchased

Take a look at this video: https://we.tl/t-EdYpCTe2R1

In the first part, I show that everything works on the desktop. I click “Search as I move the map,” move the map, and new results load, with a blue circle showing the search area.

In the second part, I switch to mobile emulation (but you can just change the window width), I do the same steps from the beginning, and after clicking “Search as I move the map” and moving the map, nothing happens. This is the bug.

In the third part, I show the same thing on the desktop but on a second demo, and here it works fine, just like in the first part.

In the fourth part, I show the second demo on mobile and here… it works, a blue circle showing the search area.

So in the first, main demo, there is a bug that takes away a fairly important feature.

I would be grateful if you could fix this.

Dogey

Dogey Purchased

Hello Theme Support.

how to add Whatsapp Call Button for listing page ?

thank you.

1, on mobile, when I click on product then comes this message (Great things are on the horizon) but I don’t have the same message on the desktop or laptop. Why is that?

2, when creating a post, under screen view there is no place to add custom field.

3, what kind of update should we be expecting because this theme was launched 8 years ago.

4, you can check cocos10.com to see for yourself regarding the product under for sale, I am just starting to work with the theme

Is it compatible with dokan?

Hi,

There isn’t any specific integration with Dokan, the plugin will work like with any other theme

Hey there, I liked your theme, I am willing to buy the same, can you please answer my below queries ?

PRE-SALE Question

1) Is it possible to export all the listing in CSV format along with photos ? 2) Can we add video from youtube for single listing ? 3) Enquiry form response is received by listed vendor email id? if yes, domain email or gmail id ? 4) Is the contact form customizable, can we add additional field ? 5) Like call now button, can we add whatsapp button? 6) Is it possible to instagram feed for each listed vendor ? 7) Click to save contact details, that will download vcf file, possible ? 8) Can we integrate shortcode or iframe ? 9) Upload PDF option for eg: to showcase company catalog 10) Can we create custom section for eg: payment? 11) Can we add auto slider images in banner ? 12) Is user email or mobile number verified with OTP ?

Hi,

1. Yes that’s possible using wp all export (free plugin), it works with all custom fields created by MyListing

2. Yes

3. Do you mean for the contact forms inside listings?

4. Yes you can, we use contact form 7 plugin for the contact form

5. Yes

6. We don’t have an option for this, you can try plugins that add this feature

7. It’s possible to do that, it requires a bit of coding but we can help you with that

8. Yes

9. Yes

10. Didn’t understand this one, share some more details

11. For listing page? Yes you can do that

12. No, we use woocommerce for registration so you can use plugins that add this verification that are compatible with woocommerce

I bought the theme, installed & tried few module, also I HAVE RAISE TICKET WITH FEW QUERIES, please check

it looks like email system does not work , when i want to forget a password says: E-mail Could not be sent

Hi,

Open a ticket in our helpdesk

Hello Would it be possible to share my listings via a link in an XML feed?

And Thank you for your reply 1 – I’d like to know at what level I’m placing this code 2 – I’d like to retrieve the last 700 “Listings” 3 – How do I add the pagination?

Try this to add pagination, remove the previous code Add this in child-theme > functions.php

add_action( 'init', function() {
    add_feed( 'listings_xml', 'my_listings_xml_feed' );

    // allow pretty pagination for your feed:
    add_rewrite_rule(
        '^feed/listings_xml/page/([0-9]+)/?$',
        'index.php?feed=listings_xml&paged=$matches[1]',
        'top'
    );
} );

function my_listings_xml_feed() {
    header( 'Content-Type: application/xml; charset=' . get_option( 'blog_charset' ) );

    $paged = get_query_var( 'paged' ) ? (int) get_query_var( 'paged' ) : 1;

    $args = [
        'post_type'      => 'job_listing',
        'post_status'    => 'publish',
        'posts_per_page' => 200,
        'paged'          => $paged,
    ];
    $q = new WP_Query( $args );

    echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?>';
    echo '<listings page="' . $paged . '" total_pages="' . $q->max_num_pages . '">';

    if ( $q->have_posts() ) {
        while ( $q->have_posts() ) {
            $q->the_post();
            echo '<listing>';
            echo   '<title>' . esc_xml( get_the_title() ) . '</title>';
            echo   '<link>'  . esc_url( get_permalink() ) . '</link>';
            // …other fields…
            echo '</listing>';
        }
        wp_reset_postdata();
    }

    echo '</listings>';
}

Now you can fetch using:

/feed/listings_xml/ (defaults to page 1)

/feed/listings_xml/?paged=2

This part controls number of listings per page ‘posts_per_page’ => 200,

Thank you for your reply The code works! Only “yoursite.com/?feed=listings_xml” this link works yoursite.com/feed/listings_xml/ and yoursite.com/feed/listings_xml/?paged=2 do not work

How can I access the other pages because with ‘yoursite.com/?feed=listings_xml’ I only have access to the 1st page?

Questions Before Purchasing:

1. SEO Compatibility: How does Google view this template in terms of SEO? I’ve noticed that plugins like GeoDirectory often create dynamic pages, which don’t perform as well in search results compared to static pages. Does this template generate SEO-friendly, indexable pages that Google can rank properly?

2. Monetization with Subscriptions: I want to build a lead magnet directory and offer monthly subscription plans where businesses can pay to have their profile/page listed in the directory. Is this type of setup supported with this template?

Does this work with wpdiscuz plugins

It would be useful for what I have in mind so will I be able use it or not I’m confused

Inside listings you won’t be able to use it without a bit of coding e.g. https://main.mylistingtheme.com/listing/the-ledbury/

You can use it for blog posts like this one: https://main.mylistingtheme.com/should-startups-care-about-profitability/

I wanted to use there voice commenting and reply feature along with there points feature how much would a modification like that cost

MMG-42

MMG-42 Purchased

1: I would like to know if you have an Auction option for different types of products. If not, is there a stable plugin that can be integrated into the MyListing Theme? 2: Does it have the option of 3 registrations/login: social networks – SMS confirmation – password. If not, is there a plugin that can be integrated? 3: Is it possible to have SMS notifications for users? Is a plugin necessary? Thank you for your attention.

Hi,

1. We don’t have an option for this unfortunately

2. It has social login with Facebook and Google, it doesn’t have sms confirmation but that can be added with additional plugins

3. We don’t have sms notifications and haven’t tested any plugin that works for this

Hello, I’d like to create a business and service directory for vacation rental owners and hosts. Would this be possible with MyListing? Would it be easy to translate the site into Spanish? Thank you for your attention.

Hi,

Yes that can be done, however we don’t have any booking functionality built in so you would need a plugin for that

Yes you can translate it easy using plugins like Loco translate

Hello, Please answer me:

1) The listing packages can be payed with woocommerce and we see them as orders? We want to integrate other plugins with woocommerce and listing orders /listing buyers.

2) Are there somehow featured listings that is going always on top of the search? if we make two listing packages for buy, and the second is premium, maybe we have to suggest these listings more than the others?

3) Are there recurring payments available?

4) is there a search based on geolocation?

5) Can we add custom fields information on the listings?

Hi,

1. Yes listing packages are woocommerce products and they’ll show under order. Any plugin compatible with woocommerce will also work with MyLisitng

2. Yes, there are 3 tiers of listings you can have: 1. regular listings with priority 0. 2. features listings with priority 1 that will show above regular listings, you can enable this in one of the listing packages and all listings added with that will have priority 1. And 3. promoted listings with priority 2, users will be able to promoted listings for a short period of time during which those listings will show at the top of results

3. You would need wc subscriptions for this

4. Yes, you can test in explore page using the location filter

5. You can create additional custom fields and display them on listing page

Hello again.

i need to ask before buying, is there a way i could have 3 subscriptions. 1. simple (only on search results listing, so you CANT click for more info and go to the sub page) 2. listing with more info and sub page 3. promoted listing above the others.

Also, is there a way that the user cant upload their info? after the purchase we will contact them and we are going to upload their listing after we approve.

Thanks in advance.

Hi, is the theme compatible with the latest wordpress version?

Hi,

Yes it is

Question before purchase: Will you release an update with a dark mode switcher in the future? This is the only thing that stops me from buying this theme.

Hi,

That’s not planned currently unfortunately.

PLEASE URGENT HELP!!! After turning on Breadcrumbs all design by elementor crashed. I switched on in Mylisting theme options Breadcrumbs display and after it all the design crashed – everything created by elementor – header, popups, css settings – all crashed. The website header is displayed in super big sizes and all is crashed. HOW CAN I RESCUE the site?

Hi,

We have replied in your ticket

hello, i loved this theme and going to buy it but have some questions please: 1. cam i just do listing my self only and not to allow visitors to list ? 2. can i customize the Tags in company page or hide them ? 3. does each company in the directory has own image at the company profile page ? 4. if i use Arabic Wordpress can i have it as RTL and have all fields and text in Arabic ? 5. is it done by elementor or which ?

Thanks much

Hi,

1. Yes you can do that

2. What type of customizations do you mean? Yes you can remove them

3. Share some more details about this

4. Yes

5. Yes Elementor

Hello thanks much , I mean is it possible that each company I may add to the directory can have own image header at the top of the company profile page ?

Yes that’s possible

I’ve created a Free package that allows 1 listing. However, when someone purchases this package, they’re able to create a listing — and then create another one using the same package, even though the limit is set to 1 listing.

If I disable repeat purchases, users can’t create a new listing at all if they delete their existing one.

Ideally, the behavior should be: users can have a maximum of 1 active listing at a time. If they delete their current listing, they should be able to create a new one, but never have more than 1 active listing at once.

How can I get functionality? Free user can create 1 listing. If they delete existing one then they can create another.

Hi,

Open a ticket in helpdesk

Is it possible to configure listing searches by area or region, and not just by geolocation?

Hi,

The only alternative would be to use the region taxonomy. You need to add all the regions you want to use as terms of region taxonomy. Then you can display it as a search field using the dropdown filter

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey